用户在地图上的当前位置在android中

时间:2011-03-07 12:46:04

标签: android

我想在地图上显示用户的当前位置, 但直到现在还没有成功,任何人都可以帮我这么做吗?

2 个答案:

答案 0 :(得分:3)

答案 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();
    }

感谢您的帮助。