How do I add a label text in geoJSON so it shows up on the marker (point) on Google Maps?
I have been trying this, but the label or title are not showing up.
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [7.090301513671875,44.66743203082226]
},
"properties": {
"label": "W",
"title": "World Wide Web"
}]
}
I am generating the point json, and each marker would have a different marker. Also I may need to style it individually.
Any thought, suggestions? Thank you.