setMapboxAPIUrl method
- Uri? url, {
- TileDataDomain? domain,
Sets the base URL to use for requests to the Mapbox API. Defaults to "https://api.mapbox.com". Accepts a string, or null for resetting to the default value.
Implementation
void setMapboxAPIUrl(Uri? url, {TileDataDomain? domain}) {
_api.setOptionForKey(
_PredefinedTileStoreOptionsKey(
key: _TileStoreOptionsKey.MAPBOX_API_URL),
domain,
url);
}