我想在地图上显示用户的当前位置, 但直到现在还没有成功,任何人都可以帮我这么做吗?
答案 0 :(得分:3)
使用MyLocationsOverlay
。以下是它的一个使用示例:http://blogs.itemis.de/frey/2009/04/04/location-based-services-on-android-part-1/
答案 1 :(得分:0)
通过使用以下代码,我获得了纬度和放大器当前位置的经度,并传递此纬度和值的值。经度来图。然后它显示当前位置。
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
location=new Location(LocationManager.GPS_PROVIDER);
double lat=location.getLatitude();
double lng=location.getLongitude();
}
感谢您的帮助。