Last active
November 24, 2025 13:58
-
-
Save salgo60/174bc3ecbb3f8b5f611bceb44cd5cde5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "FeatureCollection", | |
| "features": [ | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "order": 1, | |
| "name": "Nyam Nyam Healthy Food", | |
| "type": "matställe" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [17.632, 59.445] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "order": 2, | |
| "name": "Hundrastgård Helenelund", | |
| "type": "hundrastgård" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [17.936, 59.442] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "order": 3, | |
| "name": "Edsbergs Hundrastgård", | |
| "type": "hundrastgård" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [17.851, 59.406] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "order": 4, | |
| "name": "Hundrastgård Lomvägen", | |
| "type": "hundrastgård" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [17.9257, 59.4432] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "order": 5, | |
| "name": "Hundrastgård Tureberg (Bagarbyvägen)", | |
| "type": "hundrastgård" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [17.931, 59.416] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "order": 6, | |
| "name": "Hundrastgård Rotebrovägen", | |
| "type": "hundrastgård" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [17.884, 59.483] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "order": 7, | |
| "name": "Sushi Yama – Sollentuna", | |
| "type": "matställe" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [17.932, 59.442] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "name": "Föreslagen rutt", | |
| "type": "rutt", | |
| "order": "1-7" | |
| }, | |
| "geometry": { | |
| "type": "LineString", | |
| "coordinates": [ | |
| [17.632, 59.445], | |
| [17.936, 59.442], | |
| [17.851, 59.406], | |
| [17.9257, 59.4432], | |
| [17.931, 59.416], | |
| [17.884, 59.483], | |
| [17.932, 59.442] | |
| ] | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment