C
C#9mo ago
nicktheone

❔ Representing a custom map using GeoJSON data instead of a map of the globe. Is it possible?

I was wondering if it were possible to create a custom map not of the Earth and use GeoJSON to create data on it. In other words I need the same features of a typical vectorial map with data on it made with GeoJSON but of a custom reference map.
3 Replies
Angius
Angius9mo ago
GeoJSON describes points, areas, etc. on a globe, sure, but it doesn't enforce that it has to be Earth You could have
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
},
"properties": {
"name": "Barad Dur"
}
}
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [125.6, 10.1]
},
"properties": {
"name": "Barad Dur"
}
}
no problem Ultimately, it's just a data format
Mayor McCheese
Mayor McCheese9mo ago
Barad-dûr
Accord
Accord9mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.
Want results from more Discord servers?
Add your server
More Posts