This repository contains prebuilt Mapbox GL styles for use in Mapbox GL JS or the Mapbox Mobile SDKs and as a starting point for custom maps built with Mapbox Studio.
The following styles are provided:
Simple and flexible starting template.
Template for complex custom basemaps.
A complete basemap, perfect for incorporating your own data.
Subtle light backdrop for data visualizations.
Subtle dark backdrop for data visualizations.
A versatile style, with emphasis on road networks and public transit.
A beautiful global satellite and aerial imagery layer.
Global satellite and aerial imagery with unobtrusive labels.
A blank slate. Build your own map from the ground up.
The preferred way to use these styles in Mapbox GL JS or the Mapbox Mobile SDKs is via a mapbox://
URL.
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v8'
});
mapView = [[MGLMapView alloc] initWithFrame:self.view.bounds
styleURL:[NSURL URLWithString:@"mapbox://styles/mapbox/satellite-v8"]];
<com.mapbox.mapboxsdk.views.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:style_url="mapbox://styles/mapbox/streets-v8"
/>
MapView mMapView = new MapView(context, "Access Token");
mMapView.setStyleUrl(Style.MAPBOX_STREETS);