我正在制作一个vue项目,我想在我的组件中使用传单。我看到地图显示但是当我尝试添加标记时遇到错误。我得到了
未捕获的TypeError:无法读取未定义的属性'lat'
和
TypeError:无法读取未定义
的属性'latlng'
我认为这是因为我没有正确设置地图边界?
<template>
<div id="app" class="container">
<div class="row">
<div class="col-md-9">
<div id="map" @click="onClick" class="map" style="height: 781px;">
</div>
</div>
<div class="col-md-3">
<!-- The layer checkboxes go here -->
</div>
</div>
<router-view/>
</div>
</template>
<script>
export default {
name: "App",
data() {
return {
map: null,
marker: null,
mapSW: [0, 4096],
mapNE: [4096, 0]
},
mounted() {
this.initMap();
this.onClick();
},
methods: {
initMap() {
this.map = L.map("map").setView([0, 0], 1);
this.tileLayer = L.tileLayer("/static/map/{z}/{x}/{y}.png", {
maxZoom: 4,
minZoom: 3,
continuousWorld: false,
noWrap: true,
crs: L.CRS.Simple
});
this.tileLayer.addTo(this.map);
// this.map.unproject(this.mapSW, this.map.getMaxZoom());
// this.map.unproject(this.mapNW, this.map.getMaxZoom());
this.map.setMaxBounds(
L.LatLngBounds(L.latLng(this.mapSW), L.latLng(this.mapNW))
);
},
onClick(e) {
this.marker = L.marker(e.latlng, {
draggable: true
}).addTo(this.map);
}
}
};
</script>
答案 0 :(得分:3)
您的onClick
侦听器会在您的DOM地图容器的Vue @click="onClick"
属性上调用。因此,它会收到plain "click"
event,但没有添加传单的latlng
属性。
由于您想要在地图上执行某些操作而不是直接在其容器上执行某些操作,因此您可能需要收听Leaflet的地图"click"
事件。在这种情况下,您只需将听众附加到:
this.map.on('click', onClick, this);
(您通常可以在初始化地图后附加它)
请注意,通过使用Leaflet的on
的第3个参数,它将极大地帮助您绑定this
上下文,否则您的侦听器中的this
将引用除了您的Vue组件实例(请参阅Leaflet- marker click event works fine but methods of the class are undefined in the callback function)