Skip to content
Snippets Groups Projects
Commit 34a1e87c authored by esikkala's avatar esikkala
Browse files

GeoJSON styles as functions

parent 340bf502
No related branches found
No related tags found
No related merge requests found
...@@ -478,14 +478,14 @@ class LeafletMap extends React.Component { ...@@ -478,14 +478,14 @@ class LeafletMap extends React.Component {
leafletGeoJSONBufferLayer.addTo(leafletOverlay).addTo(this.leafletMap) leafletGeoJSONBufferLayer.addTo(leafletOverlay).addTo(this.leafletMap)
} }
const { geojsonMarkerOptions, geojsonPolygonOptions, createPopup } = leafletOverlay.options const { createGeoJSONPointStyle, createGeoJSONPolygonStyle, createPopup } = leafletOverlay.options
const leafletGeoJSONLayer = L.geoJSON(layerObj.geoJSON, { const leafletGeoJSONLayer = L.geoJSON(layerObj.geoJSON, {
// style for GeoJSON Points // style for GeoJSON Points
pointToLayer: (feature, latlng) => { pointToLayer: (feature, latlng) => {
return L.circleMarker(latlng, geojsonMarkerOptions) return L.circleMarker(latlng, createGeoJSONPointStyle(feature))
}, },
// style for GeoJSON Polygons // style for GeoJSON Polygons
style: geojsonPolygonOptions, style: createGeoJSONPolygonStyle,
// add popups // add popups
onEachFeature: (feature, layer) => { onEachFeature: (feature, layer) => {
layer.bindPopup(createPopup(feature.properties)) layer.bindPopup(createPopup(feature.properties))
......
...@@ -81,15 +81,27 @@ const Perspective1 = props => { ...@@ -81,15 +81,27 @@ const Perspective1 = props => {
// buffer: { // buffer: {
// distance: 200, // distance: 200,
// units: 'metres', // units: 'metres',
// style: { // style: feature => {
// color: '#6E6E6E', // if (feature.properties.laji.includes('poistettu kiinteä muinaisjäännös')) {
// dashArray: '3, 5' // return {
// fillOpacity: 0,
// weight: 0
// }
// } else {
// return {
// color: '#6E6E6E',
// dashArray: '3, 5'
// }
// }
// } // }
// }, // },
// // this layer includes only GeoJSON Polygons, define style for them // createGeoJSONPointStyle: feature => null, // this layer includes only GeoJSON Polygons
// geojsonPolygonOptions: { // createGeoJSONPolygonStyle: feature => {
// color: '#dd2c00', // // console.log(feature)
// cursor: 'pointer' // return {
// color: '#dd2c00',
// cursor: 'pointer'
// }
// }, // },
// createPopup: data => { // createPopup: data => {
// let html = '' // let html = ''
...@@ -117,20 +129,31 @@ const Perspective1 = props => { ...@@ -117,20 +129,31 @@ const Perspective1 = props => {
// buffer: { // buffer: {
// distance: 200, // distance: 200,
// units: 'metres', // units: 'metres',
// style: { // style: feature => {
// color: '#6E6E6E', // if (feature.properties.laji.includes('poistettu kiinteä muinaisjäännös')) {
// dashArray: '3, 5' // return {
// fillOpacity: 0,
// weight: 0
// }
// } else {
// return {
// color: '#6E6E6E',
// dashArray: '3, 5'
// }
// }
// } // }
// }, // },
// // this layer includes only GeoJSON points, define style for them // createGeoJSONPointStyle: feature => {
// geojsonMarkerOptions: { // return {
// radius: 8, // radius: 8,
// fillColor: '#dd2c00', // fillColor: '#dd2c00',
// color: '#000', // color: '#000',
// weight: 1, // weight: 1,
// opacity: 1, // opacity: 1,
// fillOpacity: 0.8 // fillOpacity: 0.8
// }
// }, // },
// createGeoJSONPolygonStyle: feature => null, // this layer includes only GeoJSON points
// createPopup: data => { // createPopup: data => {
// let html = '' // let html = ''
// const name = data.kohdenimi // const name = data.kohdenimi
...@@ -175,10 +198,10 @@ const Perspective1 = props => { ...@@ -175,10 +198,10 @@ const Perspective1 = props => {
attribution: 'Semantic Computing Research Group' attribution: 'Semantic Computing Research Group'
} }
]} ]}
activeLayers={[ // activeLayers={[
// 'arkeologiset_kohteet_alue' // 'arkeologiset_kohteet_alue',
// 'arkeologiset_kohteet_piste' // 'arkeologiset_kohteet_piste'
]} // ]}
layerControlExpanded layerControlExpanded
showError={props.showError} showError={props.showError}
/>} />}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment