前端之家收集整理的这篇文章主要介绍了
更新android中的地图标记,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用Google Maps
Android API v2,我可以通过从hashMap
获取Marker然后
调用以下
内容来更新我的
标记位置:
Marker marker = hashMap.get(someId);
marker.setTitle("Title");
marker.setSnippet("Snippet");
marker.setPosition(new LatLng(newLatitude,newLongitude));
但是,如果在调用此标记时选择了标记,则只有在单击标记并重新选择标记后,标题和摘要才会更新.反正有没有告诉地图刷新标记气泡中的数据?
调用hideInfoWindow()后立即
调用showInfoWindow(),如下所示:
marker.hideInfoWindow();
marker.showInfoWindow();
原文链接:https://www.f2er.com/android/315891.html