Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Nos Hs2023
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Språksamlingane
stadnamn
Nos Hs2023
Commits
34a1e87c
Commit
34a1e87c
authored
3 years ago
by
esikkala
Browse files
Options
Downloads
Patches
Plain Diff
GeoJSON styles as functions
parent
340bf502
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/client/components/facet_results/LeafletMap.js
+3
-3
3 additions, 3 deletions
src/client/components/facet_results/LeafletMap.js
src/client/components/perspectives/sampo/Perspective1.js
+45
-22
45 additions, 22 deletions
src/client/components/perspectives/sampo/Perspective1.js
with
48 additions
and
25 deletions
src/client/components/facet_results/LeafletMap.js
+
3
−
3
View file @
34a1e87c
...
@@ -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
))
...
...
This diff is collapsed.
Click to expand it.
src/client/components/perspectives/sampo/Perspective1.js
+
45
−
22
View file @
34a1e87c
...
@@ -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
}
/>
}
/>
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment