Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的项目上的传单地图。我的标记设置为使用 lat 和 lng 的中心地图。现在我想要,每当用户拖动或移动地图时,标记应该位于中心(固定)并且可以获得纬度和经度标记。
如果您向我们展示一些代码会更好,但我认为您应该有类似的东西来使标记捕捉到地图的中心:
let marker = L.marker(myMap.getCenter(), { icon: hyperMarker }).addTo(myMap)
move现在,您可以使用此方法使标记在事件发生时捕捉到地图的中心:
move
myMap.on('move', (event) => { marker.setLatLng(myMap.getCenter()) this.markerLatLang = marker.getLatLng() })