fromUri

Will loads a new map style asynchronous from the specified URI.

uri can take the following forms:
  • http://... or https://...: loads the style over the Internet from any web server.
  • asset://...: loads the style from the APK assets/ directory. This is used to load a style bundled with your app.
  • file://...: loads the style from a file path. This is used to load a style from disk.

This method is asynchronous and will return before the style finishes loading. If you wish to wait for the map to finish loading, listen to the MapView.OnDidFinishLoadingStyleListener callback or use setStyle instead.

If the style fails to load or an invalid style URI is set, the map view will become blank. An error message will be logged in the Android logcat and MapView.OnDidFailLoadingMapListener callback will be triggered.

Return

this

Parameters

uri

The URI of the map style

See also