JSFiddle - React, Tailwind, and code Playground
by Lena R
JavaScript
var freeBus = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
//[49.542194, 25.574064],
//[49.541851, 25.579744]
[25.574064, 49.542194],
[25.579744, 49.541851]
]
},
"properties": {
"popupContent": "This is a free bus line that will take you across downtown.",
"underConstruction": false
},
"id": 1
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[49.541851, 25.579744],
[49.542194, 25.574064]
]
},
"properties": {
"popupContent": "This is a free bus line that will take you across downtown.",
"underConstruction": true
},
"id": 2
},
{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [
[49.542194, 25.574064],
[49.545048, 25.581608]
]
},
"properties": {
"popupContent": "This is a free bus line that will take you across downtown.",
"underConstruction": false
},
"id": 3
}
]
};