0
votes

I have developed map using mapbox SDK for Android opensource. I have a geoJson file with properties and lat and lang using this i have created the map. the problem i am facing is.

How to show properties on the map. e.g: ('P11/03') can any body suggest me on this. thanks in advanced

sample GeoJson

"features": [ { "type": "Feature", "properties": { "GIS_LINK": "NHC_P11/03", "IND_EST": "NHC_P11", "BLOCK": "P11/03", "FIELD": "P11" } }]

enter image description here

1

1 Answers

0
votes

You can use Mapbox Studio to upload your own data and create custom basemaps. You can read more about uploading data to Mapbox Studio here.

Alternatively, you can use the upcoming Runtime Style API if you want to handle this client side. You have a full working example in the GeojsonLayerInStackActivity of the Mapbox demo app.