如何在打开我的应用程序时显示用户的当前位置

时间:2017-02-13 06:42:25

标签: android geolocation latitude-longitude currentlocation

我想创建一个应用,当用户打开我的应用时,用户会在我的应用中获取他们当前的位置,当用户更改他们的位置时,它也会在一段特定时间后更新。 我获得了更改位置的解决方案,同时用户更改了他们的位置,但我需要在用户打开我的应用时显示用户的当前位置

1 个答案:

答案 0 :(得分:4)

googleMap.setMyLocationEnabled(true);
Location myLocation = googleMap.getMyLocation();

这些是获取当前位置的关键行。

有关详细信息,请参阅以下教程: android show current location on map using google maps api

how to get current location in google map android