减小 Leaflet 多边形的边框宽度

Reducing border width of Leaflet polygon

向 Leaflet 地图添加多边形时,边框很宽(下图中的深蓝色)。对于广阔区域的地图,这通常会掩盖下方地图的更精细细节。

是否可以减小边框的宽度,同时保留多边形的其他默认样式?

目前我正在使用

从 GeoJSON 创建多边形
var boundary = { "type": "Feature", "geometry": {"type":"Polygon","coordinates":[....]}};
var poly = L.geoJson(boundary);
map.addLayer(poly);

我正在使用 Leaflet 0.7.3(最新的稳定版本)。我会对更改所有传单地图实例的样式的解决方案感兴趣,以及为特定地图更改样式的方法。

read the Leaflet documentation, which specifies a weight option for paths, which you can specify as an option to L.geoJson.

var poly = L.geoJson(boundary, { weight: 1 });