Commit f7f60467 authored by Tania Gómez's avatar Tania Gómez

change _feature to feature on escuelas & supermercados layers

parent 319b9476
...@@ -214,7 +214,7 @@ let layer_pistasaereas = new L.geoJson(null, { ...@@ -214,7 +214,7 @@ let layer_pistasaereas = new L.geoJson(null, {
borderWidth: 0, borderWidth: 0,
borderColor: "transparent", borderColor: "transparent",
backgroundColor: "transparent" //, backgroundColor: "transparent" //,
// textColor: "#C0C0C0" // textColor: "#C0C0C0"
}); });
return new L.Marker(latlng, { return new L.Marker(latlng, {
icon: avionMarker icon: avionMarker
...@@ -247,7 +247,7 @@ let layer_autobuses = new L.geoJson(null, { ...@@ -247,7 +247,7 @@ let layer_autobuses = new L.geoJson(null, {
borderWidth: 0, borderWidth: 0,
borderColor: "transparent", borderColor: "transparent",
backgroundColor: "transparent" //, backgroundColor: "transparent" //,
// textColor: "#C0C0C0" // textColor: "#C0C0C0"
}); });
return new L.Marker(latlng, { return new L.Marker(latlng, {
icon: busMarker icon: busMarker
...@@ -259,7 +259,7 @@ let layer_supermercados = new L.geoJson(null, { ...@@ -259,7 +259,7 @@ let layer_supermercados = new L.geoJson(null, {
attribution: "", attribution: "",
pane: "pane_supermercados", pane: "pane_supermercados",
//onEachFeature: pop_escuelas, //onEachFeature: pop_escuelas,
pointToLayer: (_feature, latlng) => { pointToLayer: (feature, latlng) => {
// let context = { // let context = {
// feature: feature, // feature: feature,
// variables: {} // variables: {}
...@@ -315,7 +315,7 @@ let layer_escuelas = new L.geoJson(null, { ...@@ -315,7 +315,7 @@ let layer_escuelas = new L.geoJson(null, {
attribution: "", attribution: "",
pane: "pane_escuelas", pane: "pane_escuelas",
//onEachFeature: pop_escuelas, //onEachFeature: pop_escuelas,
pointToLayer: (_feature, latlng) => { pointToLayer: (feature, latlng) => {
// let context = { // let context = {
// feature: feature, // feature: feature,
// variables: {} // variables: {}
...@@ -436,34 +436,34 @@ let layer_limZMs = new L.geoJson(null, { ...@@ -436,34 +436,34 @@ let layer_limZMs = new L.geoJson(null, {
const style_ZMs = feature => { const style_ZMs = feature => {
switch (String(feature.properties["ZM_NOMBRE"])) { switch (String(feature.properties["ZM_NOMBRE"])) {
case "Tuxtla Gutiérrez": case "Tuxtla Gutiérrez":
return { return {
pane: "pane_ZMs", pane: "pane_ZMs",
opacity: 1, opacity: 1,
color: "rgba(139,47,0,0.6)", color: "rgba(139,47,0,0.6)",
dashArray: "", dashArray: "",
lineCap: "butt", lineCap: "butt",
lineJoin: "miter", lineJoin: "miter",
weight: 1.0, weight: 1.0,
fill: true, fill: true,
fillOpacity: 1, fillOpacity: 1,
fillColor: "rgba(139,60,0,0.6)" fillColor: "rgba(139,60,0,0.6)"
} }
//break; //break;
case "Villahermosa": case "Villahermosa":
return { return {
pane: "pane_ZMs", pane: "pane_ZMs",
opacity: 1, opacity: 1,
color: "rgba(139,47,0,0.6)", color: "rgba(139,47,0,0.6)",
dashArray: "", dashArray: "",
lineCap: "butt", lineCap: "butt",
lineJoin: "miter", lineJoin: "miter",
weight: 1.0, weight: 1.0,
fill: true, fill: true,
fillOpacity: 1, fillOpacity: 1,
fillColor: "rgba(207,152,62,0.6)" fillColor: "rgba(207,152,62,0.6)"
} }
//break; //break;
} }
} }
...@@ -535,15 +535,13 @@ let layer_agricolapv = { ...@@ -535,15 +535,13 @@ let layer_agricolapv = {
paint: { paint: {
"fill-opacity": 0, "fill-opacity": 0,
"fill-color": [ "fill-color": [
"match", "match", ["get", "cultivo"],
["get", "cultivo"],
"Sorgo grano", "#ff5500", "Sorgo grano", "#ff5500",
"Frijol", "#8e1973", "Frijol", "#8e1973",
"#d1ff73" "#d1ff73"
], ],
"fill-outline-color": [ "fill-outline-color": [
"match", "match", ["get", "cultivo"],
["get", "cultivo"],
"Sorgo grano", "#e60000", "Sorgo grano", "#e60000",
"Frijol", "#a80084", "Frijol", "#a80084",
"#aaff00" "#aaff00"
...@@ -564,15 +562,13 @@ let layer_agricolaoi = { ...@@ -564,15 +562,13 @@ let layer_agricolaoi = {
paint: { paint: {
"fill-opacity": 0, "fill-opacity": 0,
"fill-color": [ "fill-color": [
"match", "match", ["get", "cultivo"],
["get", "cultivo"],
"Sorgo grano", "#ff5500", "Sorgo grano", "#ff5500",
"Frijol", "#8e1973", "Frijol", "#8e1973",
"#d1ff73" "#d1ff73"
], ],
"fill-outline-color": [ "fill-outline-color": [
"match", "match", ["get", "cultivo"],
["get", "cultivo"],
"Sorgo grano", "#e60000", "Sorgo grano", "#e60000",
"Frijol", "#a80084", "Frijol", "#a80084",
"#aaff00" "#aaff00"
...@@ -700,113 +696,113 @@ const makeBaseMap = () => { ...@@ -700,113 +696,113 @@ const makeBaseMap = () => {
// Localize Leaflet.Draw texts // Localize Leaflet.Draw texts
L.drawLocal = { L.drawLocal = {
draw: { draw: {
toolbar: { toolbar: {
actions: { actions: {
title: "Cancelar dibujo", title: "Cancelar dibujo",
text: "Cancelar" text: "Cancelar"
},
finish: {
title: "Terminar dibujo",
text: "Terminar"
},
undo: {
title: "Eliminar último punto dibujado",
text: "Eliminar último punto"
},
buttons: {
polyline: "Dibujar una polilínea",
polygon: "Dibujar un polígono",
rectangle: "Dibujar un rectángulo",
circle: "Dibujar un círculo",
marker: "Dibujar un marcador",
circlemarker: "Dibujar un marcador circular"
}
},
handlers: {
circle: {
tooltip: {
start: "Haz click y arrastra para dibujar un círculo"
}, },
radius: "Radio" finish: {
}, title: "Terminar dibujo",
circlemarker: { text: "Terminar"
tooltip: { },
start: "Haz click en el mapa para ubicar el marcador circular" undo: {
} title: "Eliminar último punto dibujado",
}, text: "Eliminar último punto"
marker: { },
tooltip: { buttons: {
start: "Haz click en el mapa para ubicar el marcador" polyline: "Dibujar una polilínea",
} polygon: "Dibujar un polígono",
}, rectangle: "Dibujar un rectángulo",
polygon: { circle: "Dibujar un círculo",
error: "<strong>Error:</strong>", marker: "Dibujar un marcador",
tooltip: { circlemarker: "Dibujar un marcador circular"
start: "Haz click para empezar a dibujar la figura",
cont: "Haz click para continuar dibujando la figura",
end: "Haz click en el primer punto para cerrar la figura"
}
},
polyline: {
error: "<strong>Error:</strong> las líneas no deben cruzarse",
tooltip: {
start: "Haz click para empezar a dibujar la línea",
cont: "Haz click para continuar dibujando la línea",
end: "Haz click en el último punto para terminar la línea"
}
},
rectangle: {
tooltip: {
start: "Haz click y arrastra para dibujar un rectángulo"
} }
}, },
simpleshape: { handlers: {
tooltip: { circle: {
end: "Suelta el ratón para terminar de dibujar" tooltip: {
} start: "Haz click y arrastra para dibujar un círculo"
} },
} radius: "Radio"
},
edit: {
toolbar: {
actions: {
save: {
title: "Guardar los cambios",
text: "Guardar"
}, },
cancel: { circlemarker: {
title: "Cancelar la edición, descarta todos los cambios", tooltip: {
text: "Cancelar" start: "Haz click en el mapa para ubicar el marcador circular"
}
},
marker: {
tooltip: {
start: "Haz click en el mapa para ubicar el marcador"
}
},
polygon: {
error: "<strong>Error:</strong>",
tooltip: {
start: "Haz click para empezar a dibujar la figura",
cont: "Haz click para continuar dibujando la figura",
end: "Haz click en el primer punto para cerrar la figura"
}
},
polyline: {
error: "<strong>Error:</strong> las líneas no deben cruzarse",
tooltip: {
start: "Haz click para empezar a dibujar la línea",
cont: "Haz click para continuar dibujando la línea",
end: "Haz click en el último punto para terminar la línea"
}
}, },
clearAll: { rectangle: {
title: "Limpiar todas las capas", tooltip: {
text: "Limpiar todo" start: "Haz click y arrastra para dibujar un rectángulo"
}
},
simpleshape: {
tooltip: {
end: "Suelta el ratón para terminar de dibujar"
}
} }
},
buttons: {
edit: "Editar capas",
editDisabled: "No hay capas que editar",
remove: "Eliminar capas",
removeDisabled: "No hay capas que eliminar"
} }
}, },
handlers: { edit: {
edit: { toolbar: {
tooltip: { actions: {
text: "Arrastra el marcador para editar la figura", save: {
subtext: "Haz click en cancelar para deshacer los cambios" title: "Guardar los cambios",
text: "Guardar"
},
cancel: {
title: "Cancelar la edición, descarta todos los cambios",
text: "Cancelar"
},
clearAll: {
title: "Limpiar todas las capas",
text: "Limpiar todo"
}
},
buttons: {
edit: "Editar capas",
editDisabled: "No hay capas que editar",
remove: "Eliminar capas",
removeDisabled: "No hay capas que eliminar"
} }
}, },
remove: { handlers: {
tooltip: { edit: {
text: "Haz click en una figura para eliminarla" tooltip: {
text: "Arrastra el marcador para editar la figura",
subtext: "Haz click en cancelar para deshacer los cambios"
}
},
remove: {
tooltip: {
text: "Haz click en una figura para eliminarla"
}
} }
} }
} }
} }
} // leaflet draw control
// leaflet draw control
drawnItems = L.featureGroup().addTo(map); drawnItems = L.featureGroup().addTo(map);
let drawControl = new L.Control.Draw({ let drawControl = new L.Control.Draw({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment