获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我也遇到这样的问题,在h5和app端就失效了,在小程序上确实 可以禁用
map组件在安卓机上,手指触碰滑动地图部分,页面不能上下滑动,但是IOS可以。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>
07-11