Root
Contents
Root level properties of a style specify the map’s layers, tile sources and other resources, and default values for the initial camera position when not specified elsewhere.
{
"version": 8,
"name": "TrimbleMAPS",
"sprite": "https://example.com/sprites/mysprites",
"glyphs": "https://example.com/fonts/{fontstack}/{range}.pbf",
"sources": {...},
"layers": [...]
}
bearing
Optional number. Units in degrees
. Defaults to 0
.
Default bearing, in degrees. The bearing is the compass direction that is “up”; for example, a bearing of 90° orients the map so that east is up. This value will be used only if the map has not been positioned by other means (e.g. map options or user interaction).
"bearing": 29
center
Default map center in longitude and latitude. The style center will be used only if the map has not been positioned by other means (e.g. map options or user interaction).
"center": [
-73.9749,
40.7736
]
glyphs
Optional string.
A URL template for loading signed-distance-field glyph sets in PBF format. The URL must include {fontstack}
and {range}
tokens. This property is required if any layer uses the text-field layout property. The URL must be absolute.
"glyphs": "https://example.com/fonts/{fontstack}/{range}.pbf"
layers
Layers will be drawn in the order of this array.
"layers": [
{
"id": "water",
"source": "water-source",
"source-layer": "water",
"type": "fill",
"paint": {
"fill-color": "#00ffff"
}
}
]
light
Optional light.
The global light source.
"light": {
"anchor": "viewport",
"color": "white",
"intensity": 0.4
}
metadata
Optional.
Arbitrary properties useful to track with the stylesheet, but do not influence rendering.
name
Optional string.
A human-readable name for the style.
"name": "Bright"
pitch
Optional number. Units in degrees
. Defaults to 0
.
Default pitch, in degrees. Zero is perpendicular to the surface, for a look straight down at the map, while a greater value like 60 looks ahead towards the horizon. The style pitch will be used only if the map has not been positioned by other means (e.g. map options or user interaction).
"pitch": 50
sources
Required object with source values.
Data source specifications.
"sources": {
"warehouse-locations": {
"type": "vector",
"url": "https://api.mydomain.com/locations?type=warehouse"
}
}
sprite
Optional string.
A base URL for retrieving the sprite image and metadata. The extensions .png
, .json
and scale factor @2x.png
will be automatically appended. This property is required if any layer uses the background-pattern
, fill-pattern
, line-pattern
, fill-extrusion-pattern
, or icon-image properties
. The URL must be absolute.
"sprite": "https://example.com/sprites/mysprites"
transition
Optional transition.
A global transition definition to use as a default across properties, to be used for timing transitions between one value and the next when no property-specific transition is set. Collision-based symbol fading is controlled independently of the style’s transition property.
"transition": {
"duration": 300,
"delay": 0
}
version
Required enum.
Style specification version number. Must be 8.
“version”: 8
zoom
Optional number.
Default zoom level. The style zoom will be used only if the map has not been positioned by other means (e.g. map options or user interaction).
"zoom": 12.5