Geojson
- Geojson (supported by Leaflet) format can store map data and features.
- 👉 Paste the below into the geojson.io editor to visualize and add data.
{
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"properties": {
"info": "be here now 🤩"
},
"geometry": {
"coordinates": [-80.84841429929385, 35.50168511342781],
"type": "Point"
}
}]
}