-
-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: add contributors map json file #896
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
What do you think if we use Geojson format instead of regular json? The benefit is GitHub natively supports geojson file. Example taken from your data {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"firstName": "Yun",
"favoriteCrag": "8fe4fa78-fda9-5742-b807-00b2c31d7bcd"
},
"geometry": {
"type": "Point",
"coordinates": [
0.905152180850496,
41.26613040056221
]
},
"id": 0
}
]
} {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"firstName": "Yun",
"favoriteCrag": "8fe4fa78-fda9-5742-b807-00b2c31d7bcd"
},
"geometry": {
"type": "Point",
"coordinates": [
0.905152180850496,
41.26613040056221
]
},
"id": 0
}
]
}
|
That's nice. How should we handle the |
Can you also mention the order of coordinates is [longitude, latitude]? |
Will do! |
Issue #893
Is
/assets
a good place for this file?For the map UI, I assume we want to put it in
/about
page, what do you think? @vnugent