我正在使用传单进行室内测绘。我有室内平面图,我把它缝在传单地图上。
如何将路径添加到室内地图以进行导航?
您应该能够使用 Leaflet 的 Polyline 类在地图上绘制路径。这是文档中的一个示例:
// create a red polyline from an array of LatLng points
var latlngs = [
[45.51, -122.68],
[37.77, -122.43],
[34.04, -118.2]
];
var polyline = L.polyline(latlngs, {color: 'red'}).addTo(map);
// zoom the map to the polyline
map.fitBounds(polyline.getBounds());