如何在传单中添加室内映射的路径



我正在使用传单进行室内测绘。我有室内平面图,我把它缝在传单地图上。

如何为室内地图添加路径以进行导航?

您应该能够使用 Leaflet 的折线类在地图上绘制路径。 下面是文档中的示例:

// 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());

相关内容

  • 没有找到相关文章

最新更新