SoulLyoko / vue-tianditu

天地图vue组件库
MIT License
88 stars 23 forks source link

可以对覆盖物进行点击吗 #43

Closed qwerlh closed 2 years ago

qwerlh commented 2 years ago

如题

SoulLyoko commented 2 years ago

可以的,每个覆盖物都会有click事件

...
<tdt-marker @click="markerClick"/>
...

...
function markerClick(e){
  console.log(e)
}
...