伙计们,我是使用openstreetmaps的新手。我用自定义图标在上面放置了一些标记,嵌入了弹出窗口等。现在,我真的需要知道如何在 Openstreet 地图上移动标记。我正在使用 Leaflet API 实现它。letlet 官方网站的文档中没有关于标记动画黑白两点的内容。请在这里帮助我,因为我一无所知。给我一些链接或博客或一些关于它的帮助材料。
谢谢。
伙计们,我是使用openstreetmaps的新手。我用自定义图标在上面放置了一些标记,嵌入了弹出窗口等。现在,我真的需要知道如何在 Openstreet 地图上移动标记。我正在使用 Leaflet API 实现它。letlet 官方网站的文档中没有关于标记动画黑白两点的内容。请在这里帮助我,因为我一无所知。给我一些链接或博客或一些关于它的帮助材料。
谢谢。
使用 Leaflet.MovingMarker:
//MovingMarker Options
var animationMarker = L.Marker.movingMarker(
[[48.8567, 2.3508],[50.45, 30.523333]],
20000, {autostart: true});
// Custom Icon Object
var greenIcon = L.icon({
iconUrl: 'icon.png',
});
// Set icon to movingMarker
animationMarker.options.icon = greenIcon;
// Add marker to Map
map.addLayer(animationMarker );
https://github.com/ewoken/Leaflet.MovingMarker
添加脚本然后使用:
var myMovingMarker = L.Marker.movingMarker([[48.8567, 2.3508],[50.45, 30.523333]], [20000]).addTo(map);
myMovingMarker.start();
你有这个插件传单,当你有新的位置,而不是做一个 .setlatlng() 并且标记跳到那个位置,你做一个 .slideTo() 并且标记会平滑地滑动到那个新位置,你不需要作为 Leaflet.MovingMarker 的一组位置,您只需 git 新的位置,它会为您完成所有工作,例如:
<!DOCTYPE html>
<html>
<head>
<style>
#map {
height: 500px;
width: 80%;
}
</style>
<script><!-- will be fixed on next release -->
<!-- Include this script if exports does not exists on window or -->
<!-- the following error "ReferenceError: exports is not defined" -->
<!-- before the cdn import -->
var exports = {};
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.5.1/leaflet.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.5.1/leaflet.css">
<script src="https://unpkg.com/leaflet-drift-marker@1.0.3/lib/DriftMarker/Drift_Marker.js"></script>
</head>
<body>
<div id="map"></div>
</body>
<script>
// We’ll add a tile layer to add to our map, in this case it’s a OSM tile layer.
// Creating a tile layer usually involves setting the URL template for the tile images
var osmUrl = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png',
osmAttrib = '© <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
osm = L.tileLayer(osmUrl, {
maxZoom: 18,
attribution: osmAttrib
});
// initialize the map on the "map" div with a given center and zoom
var map = L.map('map').setView([19.04469, 72.9258], 1).addLayer(osm);
var marker = new Drift_Marker([19.04469, 72.9258], {
draggable: true,
title: "Resource location",
alt: "Resource Location",
riseOnHover: true
}).addTo(map)
.bindPopup("test").openPopup();
// Script for adding marker on map click
function onMapClick(e) {
marker.slideTo( e.latlng, {
duration: 2000
});
}
map.on('click', onMapClick);
marker.slideTo( [20, 20], {
duration: 2000
});
</script>
</html>