Android - Google 地图 V2 - 移除地面叠加层
Android - Google maps V2 - Removing a groundoverlay
我的应用程序使用 google 地图 v2,我在我的地图上添加了一个地面叠加层。有谁知道我怎样才能删除这个叠加层?
谢谢
.remove() 似乎不可用
有 remove() 方法:
https://developers.google.com/android/reference/com/google/android/gms/maps/model/GroundOverlay.html#remove()
您只需要在创建时保留对地面叠加层的引用即可:
GroundOverlay groundOverlay = map.addGroundOverlay(new GroundOverlayOptions()
.image(image)
.positionFromBounds(bounds)
.transparency(0.5));
然后删除:
groundOverlay.remove();
我的应用程序使用 google 地图 v2,我在我的地图上添加了一个地面叠加层。有谁知道我怎样才能删除这个叠加层?
谢谢
.remove() 似乎不可用
有 remove() 方法: https://developers.google.com/android/reference/com/google/android/gms/maps/model/GroundOverlay.html#remove()
您只需要在创建时保留对地面叠加层的引用即可:
GroundOverlay groundOverlay = map.addGroundOverlay(new GroundOverlayOptions()
.image(image)
.positionFromBounds(bounds)
.transparency(0.5));
然后删除:
groundOverlay.remove();