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.
If you're looking for Mapbox Streets, Mapbox Satellite Streets, Mapbox Dark, Mapbox Light, or Mapbox Outdoors, see https://www.mapbox.com/maps/
The following styles are provided:
Everfree Northwest 2018 Map Style
Due to licensing restrictions on distribution, some font files are not included in this repository.
All styles use a standard set of Maki icons:
Some styles may use pictograms provided by Sound Transit under Fair Use laws. These images are not rendered any larger than is required for the purposes of identification. Additionally, some of these pictograms can be found here: https://www.soundtransit.org/st-brand-graphic-elements
Interestingly enough, these pictograms are mandated by Washington State law: http://apps.leg.wa.gov/RCW/default.aspx?cite=81.112.190
The signage [for any light-rail system in Washington state] must also use distinguishing symbols or pictograms developed by the authority as a means to identify stations and may identify points of interest along the corridor for persons who use languages that are not Roman-alphabet based.
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);