map组件在安卓机上,手指触碰滑动地图部分,页面不能上下滑动,但是IOS可以。
发布于 5 年前 作者 xiulancai 13258 次浏览 来自 问答

https://developers.weixin.qq.com/miniprogram/dev/component/map.html

设置了 enable-scroll=false 禁用拖动也是不行。

代码如下:

<map class="map" bindmarkertap="openLocation" bindcallouttap="openLocation" bindtap="openLocation" markers="{{calloutMarkers}}" latitude="{{calloutMarkers[0].latitude}}" longitude="{{calloutMarkers[0].longitude}}" scale="14.9" enable-zoom="{{false}}" enable-scroll="{{false}}"></map>

回到顶部