我正在从 Android googlemapv1
转移到v2
. 我发现要显示我自己的图标我必须使用GroundOverlay
(在v1
我使用过Overlay
)还有其他好的解决方案吗?
- 我可以
GroundOverlay
在收到位置更新时更新位置吗?(移动对象)谷歌说“地面覆盖是固定在地图上的图像” 即使我添加
GroundOverlay
,我也没有在我的地图中看到它。它只是位于非洲。没有图标。当我添加时Marker
,我可以看到。但不是GroundOverlay
。BitmapDescriptor image = BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_BLUE); LatLngBounds bounds = new LatLngBounds (new LatLng(00.00, 00.00), new LatLng(00.00, 00.00)); // get a bounds GroundOverlayOptions goo = new GroundOverlayOptions(); goo.image(image); goo.positionFromBounds(bounds); goo.transparency(0); goo.visible(true); // Adds a ground overlay with 50% transparency. GroundOverlay groundOverlay = googleMap.addGroundOverlay(goo);
我在 2 天内有一个演示,我真的希望它能够工作。请帮忙。