标记当前位置android谷歌地图?

时间:2016-09-25 05:52:27

标签: android android-maps-v2 android-maps android-maps-utils

我如何使用波纹管标记制作我的地图?

我不需要使用mMap.setMyLocationEnabled(true);。我只需要这个图标。

enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个:

GoogleMapOptions options = new GoogleMapOptions();
options.mapType(GoogleMap.MAP_TYPE_SATELLITE)
    .compassEnabled(true)
    .rotateGesturesEnabled(false)
    .tiltGesturesEnabled(false);

有关详细信息,请查看此链接。

this page 要么 https://developers.google.com/android/reference/com/google/android/gms/maps/UiSettings

我使用此链接和良好的工作:

https://developers.google.com/maps/documentation/android-api/controls