使用Vue2Leaflet时如何处理点击?

时间:2018-12-26 10:29:22

标签: vuejs2 leaflet

我正在将Vue2Leaflet(https://github.com/KoRiGaN/Vue2Leaflet)与vuejs2一起使用,我已经渲染了地图,并且我想添加一个函数来单击地图,因为我阅读了文档https://korigan.github.io/Vue2Leaflet/#/但仍然不知道怎么办。

任何建议将不胜感激。

1 个答案:

答案 0 :(得分:1)

以下示例演示了如何处理Vue2Leaflet中的地图单击事件:

<l-map :zoom="zoom" :center="center" @click="handleMapClick">
   <l-tile-layer :url="url" :attribution="attribution"></l-tile-layer>
</l-map>



export default {
  name: "LeafletMap",
  components: {
    "l-map": LMap,
    "l-tile-layer": LTileLayer,
    "l-marker": LMarker
  },
  data() {
    return {
      zoom: 13,
      center: L.latLng(47.41322, -1.219482),
      url: "http://{s}.tile.osm.org/{z}/{x}/{y}.png",
      attribution:
        '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors',
    };
  },

  methods: {
    handleMapClick(event) {
       //...
    }
  }
};

这里是a demo