mapbox-maps-flutter
mapbox-maps-flutter copied to clipboard
mapboxMap.style.localizeLabels not working
I am trying to change the language of the Mapbox Standard Style Map. But mapboxMap.style.localizeLabels("de", null) has no effect. Also every other country code does not work. I am using the latest version of the plugin 1.0.0 and the latest flutter release.
@kamami It could be that this method doesn't work for basemap styles, I think it should still work for older styles, e.g. light, dark etc.
Ok, are there any plans to implement this in basemap styles?
Hi, could you try with
MapboxMapsOptions.setLanguage("de");
before creating MapWidget?