How to use multiple properties in Popup #153
Unanswered
creinemann
asked this question in
Q&A
Replies: 1 comment
-
Look up 'table-view' on the main README.md |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to display all of the properties in this geojson file.
{ "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -88.800377,43.00694 ] }, "properties": { "Station_name":"USRadioguy", "Satellites_received":"GOES 16,17, Himawari8", "Province_State":"Wisconsin", "Country":"USA", "URL":"https://Usradioguy.com" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [ -80.1918,25.7617 ] }, "properties": { "Station_name":"Teds", "Satellites_received":"NOAA", "Province_State":"Florida", "Country":"USA", "URL":"" } },
Using this shortcode
[leaflet-map doubleClickZoom=true scrollwheel=true] [leaflet-geojson src="https://usradioguy.com/map/ground.json" popup_property="Station_name"]
I have tried adding
popup_property="Station_name; Satellites_received; Province_State; Country; URL"
like this to no avail, how could I show all the properties and a link with the URL?Beta Was this translation helpful? Give feedback.
All reactions