var map = new AMap.Map('mapContainer', {
    resizeEnable: true,
    zoom:11, 
})
 
function event(){  //事件函数
        ...
}
 
function clickOn(){ //绑定地图点击事件
        map.on('click', event)
}
    
function clickOff(){ //解绑地图点击事件
        map.off('click', event)

  

相关文章:

  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-26
  • 2021-05-25
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-04-22
  • 2022-12-23
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案