Pass dashArray property to leaflet (#74)
This commit is contained in:
parent
923e8592aa
commit
4448a82330
@ -931,6 +931,7 @@ function setMarker(data) {
|
||||
opt.fillOpacity = data.fillOpacity || 0.2;
|
||||
opt.clickable = (data.hasOwnProperty("clickable")) ? data.clickable : false;
|
||||
opt.fill = (data.hasOwnProperty("fill")) ? data.fill : true;
|
||||
if (data.hasOwnProperty("dashArray")) opt.dashArray = data.dashArray;
|
||||
|
||||
// Replace building
|
||||
if (data.hasOwnProperty("building")) {
|
||||
|
Loading…
Reference in New Issue
Block a user