如何在 Android MapView 中禁用捏合功能
如何禁用 Android MapView 中的捏合或多点触控功能?
How can you disable pinch or multitouch functionality in an Android MapView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
禁用所有手势:
仅禁用缩放
Disable all Gestures:
Disable just Zoom
我花了一点时间,但我有一个解决方案。我所做的是,如果超过一根手指触摸屏幕,则停止事件传播。
It took me a little time but I have a solution for this. What I did is stop the event propagation if more than one finger is touching the screen.
这里有一个欺骗缩放的小技巧:P(设置缩放级别并设置与 maxZoom 相同的级别
//其他选项根据您的要求
Here is a little trick to fool pinch zoom :P (set a Zoom level and set the same level as maxZoom
//Other options are as per your requirements