看这个:
MyLocationOverlay myLocationOverlay = new MyLocationOverlay(this, mapView);
myLocationOverlay.enableMyLocation();
myLocationOverlay.enableCompass();
GeoPoint myGeoPoint = myLocationOverlay.getMyLocation();
这很好用。但我需要将坐标保存在变量中。所以我尝试了这个:
myLocationLon = (double) myGeoPoint.getLongitudeE6();
当我运行应用程序时,最后一行使它崩溃。你能告诉我为什么这不起作用吗?谢谢