Forum Discussion
wcarter
2 years agoAdvocate II
Azure Maps Reference Layer - Point Name / Label?
I have a GeoJSON file with points and each point has a name property, however the name is not showing on the map. How can I get the name to show when loading the reference layer? Or, how can I load a...
wcarter
2 years agoAdvocate II
Thank you for the reply, I'm using the Azure map visual in Power BI. The Category is a set of addresses, I do not want to display the text of those however, only the Name properties of the points.
Here is a sanitized sample of my GeoJSON data:
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
100,
20
]
},
"properties": {
"color": "red",
"name": "Name",
"marker-size": "medium"
}
}
]
}
danton
1 year agoRegular Visitor
Did you find a solution?