アンドロイドで現在の正確な位置座標を取得したいと考えています。私はモバイルがWifiのインターネット接続に接続されている場合、私は場所を取得することができますが、他の場合、どこに行くと、現在の位置座標を与えていないそれ以外のインターネット接続が利用できません。代わりに最後の位置座標を与える。例えばどのようにインターネット接続なしでアンドロイドの現在の正確な位置を取得するには?
:
は現在、私は街で午前とWiFi接続上で現在の座標を取得し、私は現在の座標を取得することはできませんよ市Bに移動します。これの代わりに、最後の位置座標を与える。
誰でも私にどのようにインターネット接続なしで現在の場所を取得できますか?
public Location getLocation() {
try {
locationManager = (LocationManager) context.getSystemService(LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
} else {
this.canGetLocation = true;
// First get location from Network Provider
if (isNetworkEnabled) {
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, MIN_TIME_BW_UPDATES, MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
if (locationManager != null) {
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, MIN_TIME_BW_UPDATES, MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
if (locationManager != null) {
location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return location;
}
/**
* Stop using GPS listener
* Calling this function will stop using GPS in your app
* */
public void stopUsingGPS(){
if(locationManager != null){
locationManager.removeUpdates(GetLocations.this);
}
}
/**
* Function to get latitude
* */
public double getLatitude(){
if(location != null){
latitude = location.getLatitude();
}
return latitude;
}
/**
* Function to get longitude
* */
public double getLongitude(){
if(location != null){
longitude = location.getLongitude();
}
return longitude;
}
アンドロイドとして見ているのはAGPSを使用しているためです。 –
@Raghav Sood私の問題を解決する方法はありませんか? –
AGPSはAssisted GPSの略です。この場合、GPSモジュールはインターネットから取られたデータによって支援される。 No internet =いいえAGPS –