紧急:iphone6s上点击地图Marker没响应bindmarkertap事件
发布于 6 年前 作者 lixiulan 14434 次浏览 来自 问答

使用6s运行小程序官网自带的地图程序,点击Marker时不响应事件,求解决。

版本信息如下图:

代码如下:

<map id="map" longitude="113.324520" latitude="23.099994" scale="14" controls="{{controls}}" bindcontroltap="controltap" markers="{{markers}}" bindmarkertap="markertap" polyline="{{polyline}}" bindregionchange="regionchange" show-location style="width: 100%; height: 300px;">map>
// map.jsPage({
  data: {
    markers: [{
      iconPath: "/resources/others.png",
      id: 0,
      latitude: 23.099994,
      longitude: 113.324520,
      width: 50,
      height: 50
    }],
    polyline: [{
      points: [{
        longitude: 113.3245211,
        latitude: 23.10229
      }, {
        longitude: 113.324520,
        latitude: 23.21229
      }],
      color:"#FF0000DD",
      width: 2,
      dottedLine: true
    }],
    controls: [{
      id: 1,
      iconPath: '/resources/location.png',
      position: {
        left: 0,
        top: 300 - 50,
        width: 50,
        height: 50
      },
      clickable: true
    }]
  },
  regionchange(e) {    console.log(e.type)
  },
  markertap(e) {    console.log(e.markerId)
  },
  controltap(e) {    console.log(e.controlId)
  }
})
回到顶部