android– 标记位置更改的事件

android– 标记位置更改的事件,第1张

概述我正在使用新版GoogleMapsforAndroidv2.有没有办法为标记位置变化设置监听器?例如,当用户拖动标记时.解决方法:引用thedocumentation:YoucanuseanOnMarkerDragListenertolistenfordrageventsonamarker.Tosetthislisteneronthemap,callGoogleMap.setOnM

我正在使用新版Google Maps for Android v2.
有没有办法为标记位置变化设置监听器?例如,当用户拖动标记时.

解决方法:

引用the documentation:

You can use an OnMarkerDragListener to Listen for drag events on a marker. To set this Listener on the map, call GoogleMap.setonMarkerDragListener. To drag a marker, a user must long press on the marker. When the user takes their finger off the screen, the marker will stay in that position. When a marker is dragged, onMarkerDragStart(Marker) is called initially. While the marker is being dragged, onMarkerDrag(Marker) is called constantly. At the end of the drag onMarkerDragEnd(Marker) is called. You can get the position of the marker at any time by calling Marker.getposition().

Here is a sample project演示了OnMarkerDragListener的使用.

总结

以上是内存溢出为你收集整理的android – 标记位置更改的事件全部内容,希望文章能够帮你解决android – 标记位置更改的事件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1116015.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存