メインコンテンツまでスキップ

Classic Styles

Mapbox Classic Styles are a collection of Mapbox-designed map styles that predate Mapbox Standard. They were designed to cover common use cases — general navigation, outdoor recreation, satellite imagery, and low-distraction basemaps for data visualization. These styles use the traditional Mapbox styling model and support the full range of Mapbox Style Specification properties.

Classic styles are no longer maintained

Mapbox Classic Styles are no longer actively maintained. They remain available for existing applications, but will not receive new features, cartographic improvements, or bug fixes. For new projects, use the Mapbox Standard style, which is continuously improved and supports modern features like 3D buildings, dynamic lighting, and featuresets for interactivity.

Available classic styles

StyleStyle URL
Mapbox Streets previewMapbox Streets
A general-purpose street map featuring roads, transit, and place labels.
mapbox://styles/mapbox/streets-v12
Mapbox Outdoors previewMapbox Outdoors
A terrain-focused style with hiking routes, contour lines, and natural features.
mapbox://styles/mapbox/outdoors-v12
Mapbox Light previewMapbox Light
A minimal, light-colored basemap suited for overlaying data visualizations.
mapbox://styles/mapbox/light-v11
Mapbox Dark previewMapbox Dark
A minimal, dark-colored basemap suited for overlaying data visualizations.
mapbox://styles/mapbox/dark-v11
Mapbox Satellite previewMapbox Satellite
Global satellite and aerial imagery with no labels.
mapbox://styles/mapbox/satellite-v9
Mapbox Satellite Streets previewMapbox Satellite Streets
Satellite imagery with road and place labels overlaid.
mapbox://styles/mapbox/satellite-streets-v12
Mapbox Navigation Day previewMapbox Navigation Day
A high-contrast style optimized for in-vehicle navigation in daytime conditions.
mapbox://styles/mapbox/navigation-day-v1
Mapbox Navigation Night previewMapbox Navigation Night
A high-contrast style optimized for in-vehicle navigation in nighttime conditions.
mapbox://styles/mapbox/navigation-night-v1

Using classic styles

When using classic styles, you can either instantiate a map using the style URL, or clone the style in Mapbox Studio to customize it.

Instantiate a map with a classic style

Classic styles can be used with any Mapbox SDK or library by specifying the style URL when creating a map:

Initialize a map with a classic style
const map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v12',
center: [-74.006, 40.7128],
zoom: 12,
});

Once the style is loaded, you can manipulate or hide built-in layers, add your own sources and layers, or add non-map content like markers/annotations and popups.

Clone and customize a classic style

You can use classic styles as a starting point for your own custom style. Use the Clone in Studio links above to open the style in Mapbox Studio, where you can customize the style's colors, fonts, layer visibility, and more. When you're done, publish your style and use the new style URL in your application.

Cloning makes a copy that you keep up to date

Changes to cloned styles are yours to keep up to date. Mapbox will not apply cartographic updates or bug fixes to classic styles, so if you clone a classic style as the base for your custom style, you will need to manually apply any future updates to the original classic style yourself.

Classic styles support all standard Mapbox Style Specification features, including custom layers, sources, filters, and expressions.

Differences from Standard Styles

Classic styles use a different architecture from Mapbox Standard. The key differences:

Classic StylesMapbox Standard
3D environment2D (3D extruded buildings possible)Buildings, landmarks, trees, and terrain
LightingStaticDynamic presets (dawn, day, dusk, night)
InteractionsqueryRenderedFeatures by layer idFeaturesets with built-in feature state
Layer customizationFull access to all layersConfiguration options only
Custom layer placementbefore layer IDSlots (top, middle, bottom)
Style architectureMonolithic style JSONStyle imports
Cartographic updatesManual updates requiredApplied automatically

Migrating to Mapbox Standard

Migrating from a classic style to the Mapbox Standard style depends on whether you are using the style to initialize your map or have cloned it and are using a custom style. See the migration guide for detailed instructions on how to migrate your style and application code to Mapbox Standard.

このpageは役に立ちましたか?