我在这里和leaflet.js都很新,它看起来很棒。我想用它来实现。
1)显示位置并绘制标记。 2)当用户移动时移动标记。 3)使用新坐标更新数据库。
我现在正在使用它,因此它添加了一个新标记,但是旧标记仍然存在,我似乎无法解决需要添加的内容以添加代码来更新数据库,现在我很乐意收到一条警告,说用户已移动,标记也已相应移动。谢谢您的帮助或朝正确方向的推动
到目前为止,我的代码是
function onLocationFound(e) {
L.marker(e.latlng).addTo(map)
.bindPopup("You are here").openPopup();
}
function onLocationError(e) {
alert(e.message);
}
map.on('locationfound', onLocationFound);
map.on('locationerror', onLocationError);
map.locate({setView: true,
maxZoom: 16,
watch:true,
timeout: 60000
});