|
|
|
@ -21,11 +21,6 @@ var drawControl = new L.Control.Draw({
|
|
|
|
|
circle:false, |
|
|
|
|
polyline: false |
|
|
|
|
}, |
|
|
|
|
edit:{ |
|
|
|
|
featureGroup:drawnItems, |
|
|
|
|
edit:false, |
|
|
|
|
delete:false |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
var drawnControlEdit = new L.Control.Draw({ |
|
|
|
@ -72,8 +67,11 @@ function openActivityMap(id)
|
|
|
|
|
// console.log("cek data geojson", datageojson);
|
|
|
|
|
if (datageojson.type === 'FeatureCollection') { |
|
|
|
|
datageojson.features.forEach(feature => { |
|
|
|
|
let layer = L.geoJSON(feature); |
|
|
|
|
addDrawnLayer(layer) |
|
|
|
|
let lGeoJson = L.geoJSON(feature); |
|
|
|
|
let layers = lGeoJson.getLayers(); |
|
|
|
|
layers.forEach(layer => { |
|
|
|
|
addDrawnLayer(layer) |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
if(datageojson.properties.radius){ |
|
|
|
@ -91,7 +89,6 @@ function openActivityMap(id)
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
actionLocationAc = "edit"; |
|
|
|
|
drawControl.remove(); |
|
|
|
|
map.addControl(drawnControlEdit); |
|
|
|
|
}else{ |
|
|
|
|
currentGeoJson = ""; |
|
|
|
|