Created
April 25, 2025 13:23
-
-
Save gingerandtresgattosre/6c42590f8c1a4e63d11c12133903c618 to your computer and use it in GitHub Desktop.
Shared Map Data via My App
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", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
27.8416642, | |
-26.7739266 | |
] | |
}, | |
"properties": { | |
"name": "Home & Toy", | |
"role": "Shop", | |
"address": "President Swart Rd, Roodia, Sasolburg, 1911, South Africa" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "LineString", | |
"coordinates": [ | |
[ | |
27.8416642, | |
-26.7739266 | |
] | |
] | |
}, | |
"properties": { | |
"color": "#F3C300", | |
"stroke": "#F3C300", | |
"stroke-width": 3, | |
"stroke-opacity": 1 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment