ios - 如何禁用谷歌地图双击缩放?
<p><p>如何在 iOS SDK 中禁用 Google Maps SDK 双击缩放(但不是捏缩放)?</p>
<p>谢谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><blockquote>
<p>For Swift 2.1</p>
</blockquote>
<p>您可以在 <code>GMSMapView</code> 对象上执行此操作,</p>
<pre><code>mapView.settings.zoomGestures = false
</code></pre>
<p>禁用倾斜手势、旋转手势、滚动手势也是如此,</p>
<pre><code>mapView.settings.tiltGestures = false
mapView.settings.rotateGestures = false
mapView.settings.scrollGestures = false
</code></pre>
<p>在此处阅读更多信息:<a href="https://developers.google.com/maps/documentation/ios-sdk/controls#map_gestures" rel="noreferrer noopener nofollow">https://developers.google.com/maps/documentation/ios-sdk/controls#map_gestures</a> </p>
<p>不幸的是,无法在保持捏缩放手势的同时禁用双击缩放。 (我可能是错的,但我浏览了他们的文档并没有找到这样做的方法)</p></p>
<p style="font-size: 20px;">关于ios - 如何禁用谷歌地图双击缩放?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/18241990/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/18241990/
</a>
</p>
页:
[1]