Leaflet geoJson图层在道路名称下绘制

时间:2018-03-29 06:21:53

标签: javascript leaflet

我使用L.geoJSON(feature).addTo(mymap);添加道路线

但是geoJson线将绘制地图的道路名称,

我想在地图的道路名称下绘制geoJson线条,

怎么做?

enter image description here

1 个答案:

答案 0 :(得分:0)

我设置样式不透明度来解决问题。

var h = L.geoJSON(feature).addTo(mymap);
h.setStyle({weight:14,opacity:0.2});

enter image description here