ある種の奇妙な変数設定の問題が発生しているようです。適切に更新され、現在の場所を正しく設定する LocationListener があります。現在の緯度/経度を含むグローバル変数を設定しようとしましたが、失敗しました(コードを投稿した後で詳しく説明します)。
私は断片を持っています
public class MyMap extends MapFragment {
private LocationManager mLocManager;
private LocationListener myLocationListener;
protected volatile double lat;//Place to hold variable
protected volatile double lon;//Place to hold variable
public void onActivityCreated(Bundled savedInstanceState) {
super.onActivityCreated(savedInstanceState);
int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this.getActivity().getApplicationContext());
if (resultCode == ConnectionResult.SUCCESS){
if(gmap == null){
gmap = this.getMap();
if(gmap != null){
gmap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
gmap.setOnMarkerDragListener(this);
gmap.setMyLocationEnabled(true);
gmap.setOnMapLongClickListener(this);
}else{
return;
}
}
}else{
GooglePlayServicesUtil.getErrorDialog(resultCode, this.getActivity(), RQS_GooglePlayServices);
}
distance = 100;
myLocationListener = new MyLocationListener();
mLocManager = (LocationManager) this.getActivity().getSystemService(Context.LOCATION_SERVICE);
}
@Override
public void onResume() {
super.onResume();
mLocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 500,10, myLocationListener);
mLocManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 500, 10, myLocationListener);
mLocManager.getLastKnownLocation(Context.LOCATION_SERVICE);
}
@Override
public void onPause() {
super.onPause();
mLocManager.removeUpdates(myLocationListener);
}
//Listen for location changes and update the map with that information
private class MyLocationListener implements LocationListener {
@Override
public void onLocationChanged(Location location) {
if (Math.abs(location.getLatitude()) > 0.0 && Math.abs(location.getLongitude()) > 0.0) {
lat = location.getLatitude();
lon = location.getLongitude();
}
//This reports correctly
Log.v("Magic", "LOCATION CHANGED!" + "\nLat: " + Double.toString(lat) + "\nLon: " + Double.toString(lon));
if (!currentLocationSet) {
gmap.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(lat, lon), 15));
currentLocationSet = true;
}
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}
}
public void newPlace(final UpdatePlacesCallBack upc, Place p) {
//This gives me 0.0 for both variables.
Log.v("Magic", "Name: " + p.getName() + "\nLat: " + Double.toString(lat) + "\nLon:" + Double.toString(lon));
}
}
そのため、LocationListener 内からログを参照すると正しい場所が記録されますが、緯度と経度が 2 倍の値を取得しようとすると、両方の変数で 0.0 が返されます。