标记当前位置 android google 地图?

Marker current location android google map?

我如何在我的地图中使用波纹管标记?

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

试试这个:

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

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

https://developers.google.com/android/reference/com/google/android/gms/maps/UiSettings 要么 https://developers.google.com/maps/documentation/android-api/controls

我使用了这个 link 并且做得很好 :

alazsbalazs