【发布时间】:2020-10-02 14:38:25
【问题描述】:
在我的应用程序中,我必须在位置显示有关标记的信息。 这是我的工作代码。
mPerth = mMap.addMarker(new MarkerOptions()
.position(PERTH)
.title("Perth")
.snippet("Population: Perth")
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_ORANGE)));
mPerth.showInfoWindow();
【问题讨论】:
-
我想将 infoWindow 移动到标记的右侧。我还没有找到那个解决方案。
标签: java android google-maps google-maps-markers google-maps-android-api-2