Created
November 20, 2015 22:09
-
-
Save ajturner/da115d3f600ec3f51897 to your computer and use it in GitHub Desktop.
Esri Vector Tiles + Mapbox GL JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8' /> | |
<title></title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.11.4/mapbox-gl.css' rel='stylesheet' /> | |
<style> | |
body { margin:0; padding:0; } | |
#map { position:absolute; top:0; bottom:0; width:100%; } | |
</style> | |
</head> | |
<body> | |
<div id='map'></div> | |
<script> | |
mapboxgl.accessToken = 'pk.eyJ1IjoiYWp0dXJuZXIiLCJhIjoiQnhpcXJJSSJ9.ZnDyVBoCANqU3UmDMJ5nng'; | |
var simple = { | |
"layers": [ | |
{ | |
"type": "background", | |
"id": "background", | |
"paint": { | |
"background-color": "#aa0000" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Land/Not ice", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 0, | |
"source": "esri", | |
"source-layer": "Land", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#00bb00" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Land/Ice", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 0, | |
"source": "esri", | |
"source-layer": "Land", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#0000bb" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Bathymetry/depth 2 (shallow water)", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"maxzoom": 11, | |
"source": "esri", | |
"source-layer": "Bathymetry", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Bathymetry/depth 3", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"maxzoom": 11, | |
"source": "esri", | |
"source-layer": "Bathymetry", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Bathymetry/depth 4", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"maxzoom": 11, | |
"source": "esri", | |
"source-layer": "Bathymetry", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Bathymetry/depth 5", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"maxzoom": 11, | |
"source": "esri", | |
"source-layer": "Bathymetry", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Bathymetry/depth 6", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"maxzoom": 11, | |
"source": "esri", | |
"source-layer": "Bathymetry", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Bathymetry/depth 7 (deep water)", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"maxzoom": 11, | |
"source": "esri", | |
"source-layer": "Bathymetry", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Urban area", | |
"maxzoom": 12, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Urban area", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#e8e8e8" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Vegetation small scale/High density", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"maxzoom": 8, | |
"source": "esri", | |
"source-layer": "Vegetation small scale", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-opacity": 0.2 | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Vegetation small scale/Low density", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"maxzoom": 8, | |
"source": "esri", | |
"source-layer": "Vegetation small scale", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-opacity": 0.2 | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Openspace or forest", | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Openspace or forest", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#e4e8e4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Admin0 forest or park", | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Admin0 forest or park", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#e4e8e4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Admin1 forest or park", | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Admin1 forest or park", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#e4e8e4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Military", | |
"minzoom": 6, | |
"source": "esri", | |
"source-layer": "Military", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Transportation", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Transportation", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Freight", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Freight", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Port", | |
"source": "esri", | |
"source-layer": "Port", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Industry", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Industry", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Indigenous", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Indigenous", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Airport/Airport property", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Airport", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#e6e6e6", | |
"fill-outline-color": "#e6e6e6" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Airport/Airport runway", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Airport", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Emergency", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Emergency", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water and wastewater", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Water and wastewater", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Government", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Government", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Zoo", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Zoo", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#e4e8e4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Landmark", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Landmark", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Pedestrian", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Pedestrian", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#D9C6AD" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Park or farming", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Park or farming", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#e4e8e4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Education", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Education", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Finance", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Finance", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Retail", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Retail", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Cemetery", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Cemetery", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Golf course", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Golf course", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Medical", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Medical", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area large scale/Lake or river", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water area large scale", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area large scale/Lake intermittent", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water area large scale", | |
"layout": { | |
}, | |
"paint": { | |
"fill-pattern": "Water area large scale/Lake intermittent" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area medium scale/Lake or river", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"maxzoom": 7, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Water area medium scale", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area medium scale/Lake intermittent", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"maxzoom": 7, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Water area medium scale", | |
"layout": { | |
}, | |
"paint": { | |
"fill-pattern": "Water area medium scale/Lake intermittent" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area small scale", | |
"maxzoom": 5, | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Water area small scale", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4", | |
"fill-outline-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area/Lake, river or bay", | |
"filter": [ | |
"==", | |
"_symbol", | |
6 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4", | |
"fill-outline-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area/Inundated area", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Water area", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area/Playa", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Water area", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-pattern": "Water area/Playa" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area/Lake or river intermittent", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area", | |
"layout": { | |
}, | |
"paint": { | |
"fill-pattern": "Water area/Lake or river intermittent" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area/Ice mass", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-pattern": "Water area/Ice mass" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Water area/Swamp or marsh", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-pattern": "Water area/Swamp or marsh" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line large scale/Stream or river", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water line large scale", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dbdbe2", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
7, | |
1 | |
], | |
[ | |
11, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line large scale/Stream or river intermittent", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water line large scale", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dbdbe2", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
7, | |
0.5 | |
], | |
[ | |
11, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line large scale/Canal or ditch/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"maxzoom": 11, | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "Water line large scale", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dbdbe2", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
7, | |
0.533333 | |
], | |
[ | |
11, | |
0.533333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water line large scale/Canal or ditch/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water line large scale", | |
"layout": { | |
"icon-padding": 1, | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"icon-image": "Water line large scale/Canal or ditch/0", | |
"icon-allow-overlap": true | |
}, | |
"paint": { | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line large scale/Dam, weir, levee or waterfall", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water line large scale", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dbdbe2", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
7, | |
0.5 | |
], | |
[ | |
11, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line medium scale", | |
"maxzoom": 7, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Water line medium scale", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#d6d6de", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
5, | |
0.5 | |
], | |
[ | |
7, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line small scale", | |
"maxzoom": 5, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Water line small scale", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#d6d6de", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
1, | |
0.5 | |
], | |
[ | |
5, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line/Canal or ditch/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water line", | |
"layout": { | |
"line-cap": "round" | |
}, | |
"paint": { | |
"line-color": "#d6d6de", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
2 | |
], | |
[ | |
14, | |
2 | |
], | |
[ | |
17, | |
2 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water line/Canal or ditch/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water line", | |
"layout": { | |
"icon-padding": 1, | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"icon-image": "Water line/Canal or ditch/0", | |
"icon-allow-overlap": true | |
}, | |
"paint": { | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line/Stream or river intermittent", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water line", | |
"layout": { | |
}, | |
"paint": { | |
"line-dasharray": [ | |
8, | |
3 | |
], | |
"line-color": "#cfcfd4", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1 | |
], | |
[ | |
14, | |
1.3333 | |
], | |
[ | |
17, | |
2 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Water line/Stream or river", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water line", | |
"layout": { | |
"line-cap": "round" | |
}, | |
"paint": { | |
"line-color": "#cfcfd4", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1 | |
], | |
[ | |
14, | |
1.3333 | |
], | |
[ | |
17, | |
2.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Landscape/Green openspace", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Landscape", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Landscape/Grass", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Landscape", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Landscape/Dirt", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Landscape", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Landscape/Pool or fountain", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Landscape", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Golf putting or tee ground", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Field or court", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Baseball field", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Hardcourt", | |
"filter": [ | |
"==", | |
"_symbol", | |
7 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Field or court exterior", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Golf fairway", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Golf sand", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Golf water hazard", | |
"filter": [ | |
"==", | |
"_symbol", | |
6 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Sport/Track", | |
"filter": [ | |
"==", | |
"_symbol", | |
8 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Sport", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Pavement/Garden", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 17, | |
"source": "esri", | |
"source-layer": "Pavement", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Pavement/Parking", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 17, | |
"source": "esri", | |
"source-layer": "Pavement", | |
"layout": { | |
"visibility": "none" | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Pavement/Bike, walk or pedestrian", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 17, | |
"source": "esri", | |
"source-layer": "Pavement", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Special area of interest line", | |
"minzoom": 17, | |
"source": "esri", | |
"source-layer": "Special area of interest line", | |
"layout": { | |
"line-cap": "round", | |
"visibility": "none", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ededed", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
0.666667 | |
], | |
[ | |
17, | |
0.666667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Building", | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Building", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#dfe0e2", | |
"fill-outline-color": "#ededed" | |
} | |
}, | |
{ | |
"type": "fill", | |
"id": "Marine area/1", | |
"minzoom": 0, | |
"source": "esri", | |
"source-layer": "Marine area", | |
"layout": { | |
}, | |
"paint": { | |
"fill-color": "#cfcfd4" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Disputed admin5", | |
"filter": [ | |
"==", | |
"_symbol", | |
13 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
3, | |
2 | |
], | |
"line-color": "#c8c8c8", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Disputed admin4", | |
"filter": [ | |
"==", | |
"_symbol", | |
12 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
3, | |
2 | |
], | |
"line-color": "#c8c8c8", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Disputed admin3", | |
"filter": [ | |
"==", | |
"_symbol", | |
11 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
4, | |
2 | |
], | |
"line-color": "#c8c8c8", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Disputed admin2", | |
"filter": [ | |
"==", | |
"_symbol", | |
10 | |
], | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
4, | |
2 | |
], | |
"line-color": "#c8c8c8", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
10, | |
1.33333 | |
], | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Disputed admin1", | |
"filter": [ | |
"==", | |
"_symbol", | |
9 | |
], | |
"minzoom": 4, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
4, | |
2 | |
], | |
"line-color": "#c8c8c8", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
4, | |
1.33333 | |
], | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Disputed admin0", | |
"filter": [ | |
"!in", | |
"DisputeID", | |
80, | |
0 | |
], | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
6, | |
2 | |
], | |
"line-color": "#c8c8c8", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
1, | |
1.33333 | |
], | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin5", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
4, | |
2 | |
], | |
"line-color": "#9C9C9C", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin4", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
4, | |
2 | |
], | |
"line-color": "#9C9C9C", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin3", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
4, | |
2 | |
], | |
"line-color": "#9C9C9C", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin2/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#e6e6e6", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
8, | |
1.3333 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
2.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin1/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 6, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dbdbdb", | |
"line-width": { | |
"base": 1, | |
"stops": [ | |
[ | |
6, | |
1.2 | |
], | |
[ | |
9, | |
2.5 | |
], | |
[ | |
14, | |
7 | |
], | |
[ | |
17, | |
7 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin0/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#d4d4d4", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
1, | |
1.2 | |
], | |
[ | |
8, | |
4.33333 | |
], | |
[ | |
14, | |
9.33333 | |
], | |
[ | |
17, | |
9.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin2/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
5, | |
3 | |
], | |
"line-color": "#b9b9b9", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
8, | |
0.5 | |
], | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin1/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
8, | |
6 | |
], | |
"line-color": "#b9b9b9", | |
"line-width": { | |
"base": 1, | |
"stops": [ | |
[ | |
4, | |
0.5 | |
], | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Boundary line/Admin0/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Boundary line", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
12, | |
4 | |
], | |
"line-color": "#aaaaaa", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
1, | |
1.33333 | |
], | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Railroad/2", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Railroad", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#efefef", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
3.33333 | |
], | |
[ | |
14, | |
3.33333 | |
], | |
[ | |
17, | |
3.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Railroad/1", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Railroad", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dedede", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.33333 | |
], | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Railroad/0", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Railroad", | |
"layout": { | |
"icon-padding": 1, | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"icon-image": "Railroad/0", | |
"icon-allow-overlap": true | |
}, | |
"paint": { | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Trail or path", | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Trail or path", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ffffff", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Ferry/Ferry", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Ferry", | |
"layout": { | |
"visibility": "none", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-dasharray": [ | |
6.06061, | |
3.63636 | |
], | |
"line-color": "#cfcfd4", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.33333 | |
], | |
[ | |
14, | |
1.46667 | |
], | |
[ | |
17, | |
1.46667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Ferry/Rail ferry/2", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Ferry", | |
"layout": { | |
"visibility": "none", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cfcfd4", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
3.33333 | |
], | |
[ | |
14, | |
4 | |
], | |
[ | |
17, | |
4 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Ferry/Rail ferry/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Ferry", | |
"layout": { | |
"visibility": "none", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cfcfd4", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.33333 | |
], | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Ferry/Rail ferry/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Ferry", | |
"layout": { | |
"icon-padding": 1, | |
"visibility": "none", | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"icon-image": "Ferry/Rail ferry/0", | |
"icon-allow-overlap": true | |
}, | |
"paint": { | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Local/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
6 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dcdcdc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.5 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
8.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Local, in urban area/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
7 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dcdcdc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.5 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
8.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Service/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
8 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#dcdcdc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.5 | |
], | |
[ | |
14, | |
3.33333 | |
], | |
[ | |
17, | |
4.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/4WD/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
10 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ffffff", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1 | |
], | |
[ | |
14, | |
1 | |
], | |
[ | |
17, | |
2 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Local/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
6 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ffffff", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
0.75 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Local, in urban area/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
7 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ffffff", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
0.75 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Service/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
8 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#FDFDFD", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
0.75 | |
], | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
2.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Pedestrian", | |
"filter": [ | |
"==", | |
"_symbol", | |
9 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ffffff", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
2.6 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/4WD/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
10 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#F8F6D9", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.33333 | |
], | |
[ | |
14, | |
2 | |
], | |
[ | |
17, | |
4 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Minor/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cccccc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
13, | |
1.5 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
8.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Minor, ramp or traffic circle/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cccccc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
13, | |
1.5 | |
], | |
[ | |
14, | |
4 | |
], | |
[ | |
17, | |
8 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Minor/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#FFFFFF", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
0.75 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Minor, ramp or traffic circle/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#FFFFFF", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
0.75 | |
], | |
[ | |
14, | |
2 | |
], | |
[ | |
17, | |
4 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Major/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cccccc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
13, | |
1.5 | |
], | |
[ | |
14, | |
7.33333 | |
], | |
[ | |
17, | |
14.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Major, ramp or traffic circle/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cccccc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
13, | |
1.5 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
7.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Major/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#FFFFFF", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
10, | |
0.75 | |
], | |
[ | |
14, | |
5.33333 | |
], | |
[ | |
17, | |
10.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Major, ramp or traffic circle/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#FFFFFF", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
10, | |
0.75 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Freeway Motorway/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cccccc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
1.2 | |
], | |
[ | |
14, | |
7.33333 | |
], | |
[ | |
17, | |
14.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Freeway Motorway, ramp or traffic circle/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#cccccc", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
1.5 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
8.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Freeway Motorway/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ffffff", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
4, | |
0.75 | |
], | |
[ | |
14, | |
5.33333 | |
], | |
[ | |
17, | |
10.33333 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road/Freeway Motorway, ramp or traffic circle/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Road", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-color": "#ffffff", | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
0.75 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
} | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Local/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
6 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
3.33333 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Local, in urban area/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
7 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
3.33333 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Service/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
8 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
3.33333 | |
], | |
[ | |
14, | |
3.33333 | |
], | |
[ | |
17, | |
3.33333 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/4WD/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
10 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1 | |
], | |
[ | |
14, | |
1 | |
], | |
[ | |
17, | |
1 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Local/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
6 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.33333 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
2.66667 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Local, in urban area/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
7 | |
], | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.33333 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
2.66667 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Service/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
8 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
1.33333 | |
], | |
[ | |
14, | |
1.33333 | |
], | |
[ | |
17, | |
1.33333 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Pedestrian", | |
"filter": [ | |
"==", | |
"_symbol", | |
9 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
14, | |
1.6 | |
], | |
[ | |
17, | |
1.6 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/4WD/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
10 | |
], | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
11, | |
2 | |
], | |
[ | |
14, | |
2 | |
], | |
[ | |
17, | |
2 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Minor/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
3.33333 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Minor, ramp or traffic circle/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
3.33333 | |
], | |
[ | |
14, | |
4 | |
], | |
[ | |
17, | |
4 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Minor/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
1.33333 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
2.66667 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Minor, ramp or traffic circle/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
1.33333 | |
], | |
[ | |
14, | |
2 | |
], | |
[ | |
17, | |
2 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Major/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
8, | |
3.33333 | |
], | |
[ | |
14, | |
7.33333 | |
], | |
[ | |
17, | |
7.33333 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Major, ramp or traffic circle/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
3.33333 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Major/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
8, | |
1.33333 | |
], | |
[ | |
14, | |
5.33333 | |
], | |
[ | |
17, | |
5.33333 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Major, ramp or traffic circle/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
1.33333 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
2.66667 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Freeway Motorway/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
4, | |
3.33333 | |
], | |
[ | |
14, | |
7.33333 | |
], | |
[ | |
17, | |
7.33333 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Freeway Motorway, ramp or traffic circle/1", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
3.33333 | |
], | |
[ | |
14, | |
4.66667 | |
], | |
[ | |
17, | |
4.66667 | |
] | |
] | |
}, | |
"line-color": "#cccccc" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Freeway Motorway/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
4, | |
1.33333 | |
], | |
[ | |
14, | |
5.33333 | |
], | |
[ | |
17, | |
5.33333 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "line", | |
"id": "Road tunnel/Freeway Motorway, ramp or traffic circle/0", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"minzoom": 9, | |
"source": "esri", | |
"source-layer": "Road tunnel", | |
"layout": { | |
"line-cap": "round", | |
"line-join": "round" | |
}, | |
"paint": { | |
"line-opacity": 0.5, | |
"line-width": { | |
"base": 1.2, | |
"stops": [ | |
[ | |
9, | |
1.33333 | |
], | |
[ | |
14, | |
2.66667 | |
], | |
[ | |
17, | |
2.66667 | |
] | |
] | |
}, | |
"line-color": "#FFFFFF" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Point of interest/Bus station", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Point of interest", | |
"layout": { | |
"icon-padding": 1, | |
"visibility": "none", | |
"text-max-width": 8, | |
"text-allow-overlap": false, | |
"icon-image": "Point of interest/Bus station", | |
"text-anchor": "bottom-left", | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.04, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}" | |
}, | |
"paint": { | |
"text-color": "#595959", | |
"text-halo-color": "#F2ECD4", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Point of interest/Rail station", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Point of interest", | |
"layout": { | |
"icon-padding": 1, | |
"visibility": "none", | |
"text-max-width": 8, | |
"text-allow-overlap": false, | |
"icon-image": "Point of interest/Rail station", | |
"text-anchor": "bottom-left", | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.04, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}" | |
}, | |
"paint": { | |
"text-color": "#595959", | |
"text-halo-color": "#F2ECD4", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City large scale", | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "City large scale", | |
"layout": { | |
"icon-padding": 1, | |
"visibility": "none", | |
"symbol-avoid-edges": true, | |
"icon-image": "City large scale" | |
}, | |
"paint": { | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Continent", | |
"maxzoom": 3, | |
"source": "esri", | |
"source-layer": "Continent", | |
"layout": { | |
"icon-padding": 1, | |
"symbol-avoid-edges": true, | |
"icon-image": "Continent" | |
}, | |
"paint": { | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine waterbody/label/2x large", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"maxzoom": 10, | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Marine waterbody_label", | |
"layout": { | |
"text-max-width": 5, | |
"text-size": { | |
"stops": [ | |
[ | |
1, | |
12 | |
], | |
[ | |
5, | |
15 | |
], | |
[ | |
8, | |
17 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.3, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine waterbody/label/x large", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"maxzoom": 10, | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Marine waterbody_label", | |
"layout": { | |
"text-max-width": 5, | |
"text-size": { | |
"stops": [ | |
[ | |
1, | |
10 | |
], | |
[ | |
5, | |
12 | |
], | |
[ | |
8, | |
17 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.2, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine waterbody/label/large", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"maxzoom": 10, | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Marine waterbody_label", | |
"layout": { | |
"text-max-width": 5, | |
"text-size": { | |
"stops": [ | |
[ | |
1, | |
10 | |
], | |
[ | |
5, | |
12 | |
], | |
[ | |
8, | |
17 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.2, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine waterbody/label/medium", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"maxzoom": 10, | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Marine waterbody_label", | |
"layout": { | |
"text-max-width": 5, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine waterbody/label/small", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"maxzoom": 10, | |
"minzoom": 1, | |
"source": "esri", | |
"source-layer": "Marine waterbody_label", | |
"layout": { | |
"text-max-width": 5, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Small island", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 5, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Bay or inlet", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Canal or ditch", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 10, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Large lake or reservoir", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Large river", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 10, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Large island", | |
"filter": [ | |
"==", | |
"_label_class", | |
5 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Small lake or reservoir", | |
"filter": [ | |
"==", | |
"_label_class", | |
6 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine area/label/Small river", | |
"filter": [ | |
"==", | |
"_label_class", | |
7 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Marine area_label", | |
"layout": { | |
"text-max-width": 10, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a2a2a6" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area large scale/label/Lake or lake intermittent", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water area large scale_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area large scale/label/River", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"maxzoom": 11, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Water area large scale_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area medium scale/label/Default", | |
"maxzoom": 7, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Water area medium scale_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": false, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area small scale/label/Default", | |
"maxzoom": 5, | |
"minzoom": 4, | |
"source": "esri", | |
"source-layer": "Water area small scale_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Small island", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Bay or inlet", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Canal or ditch", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Large lake or reservoir", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Large river", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Large island", | |
"filter": [ | |
"==", | |
"_label_class", | |
5 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Small lake or reservoir", | |
"filter": [ | |
"==", | |
"_label_class", | |
6 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water area/label/Small river", | |
"filter": [ | |
"==", | |
"_label_class", | |
7 | |
], | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.15, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water line large scale/label/Default", | |
"maxzoom": 11, | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Water line large scale_label", | |
"layout": { | |
"text-field": "{_name}", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"text-offset": [ | |
0, | |
-0.5 | |
] | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water line medium scale/label/Default", | |
"maxzoom": 7, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Water line medium scale_label", | |
"layout": { | |
"text-field": "{_name}", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"visibility": "none" | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water line small scale/label/Default", | |
"maxzoom": 5, | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Water line small scale_label", | |
"layout": { | |
"text-field": "{_name}", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"visibility": "none" | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water line/label/Default", | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Water line_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Italic" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"text-offset": [ | |
0, | |
-0.5 | |
] | |
}, | |
"paint": { | |
"text-color": "#969696" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Railroad/label/Default", | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Railroad_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.2, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"visibility": "none" | |
}, | |
"paint": { | |
"text-color": "#B3AB9D", | |
"text-halo-color": "#F0EBC9", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Ferry/label/Ferry", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"minzoom": 18, | |
"source": "esri", | |
"source-layer": "Ferry_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.2, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"visibility": "none" | |
}, | |
"paint": { | |
"text-color": "#5785B3", | |
"text-halo-color": "#BFD9F2", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Ferry/label/Rail ferry", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"minzoom": 18, | |
"source": "esri", | |
"source-layer": "Ferry_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.2, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line", | |
"visibility": "none" | |
}, | |
"paint": { | |
"text-color": "#B3AB9D", | |
"text-halo-color": "#F0EBC9", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Trail or path/label/Default", | |
"minzoom": 18, | |
"source": "esri", | |
"source-layer": "Trail or path_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Bold" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FDFDFD", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pedestrian", | |
"filter": [ | |
"==", | |
"_label_class", | |
6 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FDFDFD", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Local", | |
"filter": [ | |
"==", | |
"_label_class", | |
5 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FFFFFF", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Minor", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FFFFFF", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Major, alt name", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-field": "{_name}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FFFFFF", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Major", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FFFFFF", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Freeway Motorway, alt name", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-field": "{_name}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FFFFFF", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Freeway Motorway", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#FFFFFF", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
7 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield blue white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
8 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield blue white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
9 | |
], | |
"minzoom": 6, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 30, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#343434" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
10 | |
], | |
"minzoom": 6, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 30, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#343434" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield white black 2", | |
"filter": [ | |
"==", | |
"_label_class", | |
11 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield white black 2 (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
12 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
13 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield green white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
14 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield green white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
15 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield red white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Shield red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
16 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Shield red white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
17 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
18 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped white green", | |
"filter": [ | |
"==", | |
"_label_class", | |
19 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped white green/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped white green (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
20 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped white green (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped green leaf", | |
"filter": [ | |
"==", | |
"_label_class", | |
21 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped green leaf/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped green leaf (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
22 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped green leaf (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped yellow black", | |
"filter": [ | |
"==", | |
"_label_class", | |
23 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/U-shaped yellow black/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped yellow black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
24 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/U-shaped yellow black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
25 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped red white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
26 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/U-shaped red white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
27 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/U-shaped blue white/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/U-shaped blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
28 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/U-shaped blue white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/V-shaped white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
29 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/V-shaped white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/V-shaped white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
30 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/V-shaped white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Stacked rectangle white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
31 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Stacked rectangle white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Stacked rectangle white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
32 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Stacked rectangle white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.2 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
33 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle white black/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
34 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle white black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
35 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle blue white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.2 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
36 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle blue white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.2 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
37 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle red white/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
38 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle red white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle yellow black", | |
"filter": [ | |
"==", | |
"_label_class", | |
39 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle yellow black/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle yellow black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
40 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle yellow black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
41 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle green white/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
42 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Rectangle green white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.2 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle green yellow", | |
"filter": [ | |
"==", | |
"_label_class", | |
43 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle green yellow/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.2 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle green yellow (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
44 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle green yellow (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.2 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon inverse white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
45 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon inverse white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon inverse white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
46 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon inverse white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
47 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
48 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
49 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Pentagon blue white/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
50 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Pentagon blue white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon yellow black", | |
"filter": [ | |
"==", | |
"_label_class", | |
51 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Pentagon yellow black/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon yellow black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
52 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Pentagon yellow black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
53 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon green white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
54 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon green white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon green yellow", | |
"filter": [ | |
"==", | |
"_label_class", | |
55 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon green yellow/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Pentagon green yellow (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
56 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Pentagon green yellow (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
57 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon white black/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
58 | |
], | |
"minzoom": 18, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon white black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
59 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon blue white/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
60 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon blue white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
61 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon red white/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
62 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon red white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
63 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon green white/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
64 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon green white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon orange black", | |
"filter": [ | |
"==", | |
"_label_class", | |
65 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon orange black/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Hexagon orange black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
66 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Hexagon orange black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
67 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon blue white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
68 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon blue white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
69 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon red white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
70 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon red white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
71 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon green white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
72 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon green white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon brown white", | |
"filter": [ | |
"==", | |
"_label_class", | |
73 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon brown white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Rectangle hexagon brown white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
74 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road/Rectangle hexagon brown white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.1 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Octagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
75 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Octagon green white/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road/label/Octagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
76 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road/Octagon green white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.1 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Freeway Motorway", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#ffffff", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Freeway Motorway, alt name", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-field": "{_name}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#ffffff", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Major", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#ffffff", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Major, alt name", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-field": "{_name}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#ffffff", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Minor", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#ffffff", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Local, service, 4WD", | |
"filter": [ | |
"==", | |
"_label_class", | |
5 | |
], | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#ffffff", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pedestrian", | |
"filter": [ | |
"==", | |
"_label_class", | |
6 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-field": "{_name_global}", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"symbol-placement": "line" | |
}, | |
"paint": { | |
"text-color": "#666666", | |
"text-halo-color": "#ffffff", | |
"text-halo-width": 0.666667 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
7 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield blue white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
8 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield blue white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield white black 3", | |
"filter": [ | |
"==", | |
"_label_class", | |
9 | |
], | |
"minzoom": 6, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#343434" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield white black 2 (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
10 | |
], | |
"minzoom": 6, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#343434" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
11 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield white black 3 (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
12 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
13 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield green white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
14 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield green white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
15 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield red white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Shield red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
16 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Shield red white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
17 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
18 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped white green", | |
"filter": [ | |
"==", | |
"_label_class", | |
19 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped white green/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped white green (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
20 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped white green (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped green leaf", | |
"filter": [ | |
"==", | |
"_label_class", | |
21 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped green leaf/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped green leaf (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
22 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped green leaf (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped yellow black", | |
"filter": [ | |
"==", | |
"_label_class", | |
23 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/U-shaped yellow black/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped yellow black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
24 | |
], | |
"minzoom": 18, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/U-shaped yellow black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
25 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped red white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
26 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/U-shaped red white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
27 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/U-shaped blue white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/U-shaped blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
28 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/U-shaped blue white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/V-shaped white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
29 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/V-shaped white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/V-shaped white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
30 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/V-shaped white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Stacked rectangle white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
31 | |
], | |
"minzoom": 18, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Stacked rectangle white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Stacked rectangle white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
32 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Stacked rectangle white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
33 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle white black/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
34 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle white black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
35 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle blue white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
36 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle blue white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
37 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle red white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
38 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle red white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle yellow black", | |
"filter": [ | |
"==", | |
"_label_class", | |
39 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle yellow black/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle yellow black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
40 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle yellow black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
41 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle green white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
42 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Rectangle green white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle green yellow", | |
"filter": [ | |
"==", | |
"_label_class", | |
43 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle green yellow/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle green yellow (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
44 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle green yellow (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon inverse white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
45 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon inverse white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon inverse white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
46 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon inverse white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
47 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon white black/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
48 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon white black (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
49 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Pentagon blue white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
50 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Pentagon blue white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon yellow black", | |
"filter": [ | |
"==", | |
"_label_class", | |
51 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Pentagon yellow black/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon yellow black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
52 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Pentagon yellow black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
53 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon green white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
54 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon green white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon green yellow", | |
"filter": [ | |
"==", | |
"_label_class", | |
55 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon green yellow/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Pentagon green yellow (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
56 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Pentagon green yellow (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon white black", | |
"filter": [ | |
"==", | |
"_label_class", | |
57 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon white black/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon white black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
58 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon white black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
59 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon blue white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
60 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon blue white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
61 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon red white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
62 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon red white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
63 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon green white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
64 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon green white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon orange black", | |
"filter": [ | |
"==", | |
"_label_class", | |
65 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon orange black/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Hexagon orange black (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
66 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Hexagon orange black (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.03, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon blue white", | |
"filter": [ | |
"==", | |
"_label_class", | |
67 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon blue white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon blue white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
68 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon blue white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon red white", | |
"filter": [ | |
"==", | |
"_label_class", | |
69 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon red white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon red white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
70 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon red white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
71 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon green white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
72 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon green white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon brown white", | |
"filter": [ | |
"==", | |
"_label_class", | |
73 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon brown white/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Rectangle hexagon brown white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
74 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"symbol-placement": "line", | |
"text-max-width": 8, | |
"text-size": 8.666667, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-rotation-alignment": "viewport", | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "Road tunnel/Rectangle hexagon brown white (Alt)/{_len}", | |
"icon-rotation-alignment": "viewport", | |
"text-offset": [ | |
0, | |
0.3 | |
] | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Octagon green white", | |
"filter": [ | |
"==", | |
"_label_class", | |
75 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Octagon green white/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Road tunnel/label/Octagon green white (Alt)", | |
"filter": [ | |
"==", | |
"_label_class", | |
76 | |
], | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Road tunnel_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-rotation-alignment": "viewport", | |
"symbol-placement": "line", | |
"icon-image": "Road tunnel/Octagon green white (Alt)/{_len}", | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-size": 8.666667, | |
"text-letter-spacing": 0.02, | |
"text-padding": 50, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#4c4c4c" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Exit/Default", | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Exit", | |
"layout": { | |
"visibility": "none", | |
"symbol-avoid-edges": true, | |
"text-rotation-alignment": "viewport", | |
"text-max-width": 8, | |
"text-allow-overlap": false, | |
"icon-image": "Exit/Default/{_len}", | |
"text-anchor": "center", | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"text-offset": [ | |
0, | |
0.3 | |
], | |
"text-field": "{_name_global}", | |
"icon-rotation-alignment": "viewport" | |
}, | |
"paint": { | |
"text-color": "#343434" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Building/label/Default", | |
"minzoom": 15, | |
"source": "esri", | |
"source-layer": "Building_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.08, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#666659", | |
"text-halo-color": "#fae8ed", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Pedestrian/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Pedestrian_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": false, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#797859", | |
"text-halo-color": "#DBDEA7", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Military/label/Default", | |
"minzoom": 5, | |
"source": "esri", | |
"source-layer": "Military_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#686868", | |
"text-halo-color": "#CCCCCC", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Transportation/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Transportation_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#686868", | |
"text-halo-color": "#CCCCCC", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Freight/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Freight_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#998973", | |
"text-halo-color": "#D9C6AD", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Port/label/Default", | |
"source": "esri", | |
"source-layer": "Port_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#686868", | |
"text-halo-color": "#CCCCCC", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Industry/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Industry_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#686868", | |
"text-halo-color": "#CCCCCC", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Water and wastewater/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Water and wastewater_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#686868", | |
"text-halo-color": "#CCCCCC", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Government/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Government_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": false, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#ededed", | |
"text-halo-color": "#ededed", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Finance/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Finance_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#998973", | |
"text-halo-color": "#D9C6AD", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Retail/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Retail_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#BB956B", | |
"text-halo-color": "#FAD494", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Beach/label/Default", | |
"source": "esri", | |
"source-layer": "Beach_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.08, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#B4A783", | |
"text-halo-color": "#FFFFFF", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Indigenous/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Indigenous_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#998973", | |
"text-halo-color": "#D9C6AD", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Openspace or forest/label/Default", | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Openspace or forest_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": false, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#8ca18c", | |
"text-halo-color": "#e6ede6", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Park or farming/label/Default", | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Park or farming_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": false, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#8ca18c", | |
"text-halo-color": "#e6ede6", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Cemetery/label/Default", | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Cemetery_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#8ca18c", | |
"text-halo-color": "#e6ede6", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Golf course/label/Default", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Golf course_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#8ca18c", | |
"text-halo-color": "#e6ede6", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Zoo/label/Default", | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Zoo_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#8ca18c", | |
"text-halo-color": "#e6ede6", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Landmark/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Landmark_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#BB956B", | |
"text-halo-color": "#FAD494", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Emergency/label/Default", | |
"minzoom": 13, | |
"source": "esri", | |
"source-layer": "Emergency_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#998973", | |
"text-halo-color": "#D9C6AD", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Airport/label/Airport property", | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Airport_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#969696", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Education/label/Default", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Education_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#988D70", | |
"text-halo-color": "#EBEBA8", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Medical/label/Default", | |
"minzoom": 11, | |
"source": "esri", | |
"source-layer": "Medical_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#CE8966", | |
"text-halo-color": "#F7DBB5", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Marine park/label/Default", | |
"minzoom": 12, | |
"source": "esri", | |
"source-layer": "Marine park_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#6699CD" | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin1 forest or park/label/Default", | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Admin1 forest or park_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": false, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#8ca18c", | |
"text-halo-color": "#e6ede6", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin0 forest or park/label/Default", | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "Admin0 forest or park_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#8ca18c", | |
"text-halo-color": "#e6ede6", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Point of interest/Park", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Point of interest", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.08, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#5C7533", | |
"text-halo-color": "#F5F2DC", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Point of interest/General", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"minzoom": 16, | |
"source": "esri", | |
"source-layer": "Point of interest", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.08, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#666659", | |
"text-halo-color": "#F5F2DC", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin2 area/label/small", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"maxzoom": 11, | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Admin2 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#9c9c9c", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin2 area/label/large", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"maxzoom": 11, | |
"minzoom": 8, | |
"source": "esri", | |
"source-layer": "Admin2 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 13.333333, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#9c9c9c", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin1 area/label/x small", | |
"filter": [ | |
"==", | |
"_label_class", | |
5 | |
], | |
"maxzoom": 10, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Admin1 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 9.333333, | |
"text-letter-spacing": 0.1, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a5a5a5", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin1 area/label/small", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"maxzoom": 10, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Admin1 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a5a5a5", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin1 area/label/medium", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"maxzoom": 10, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Admin1 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.1, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a5a5a5", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin1 area/label/large", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"maxzoom": 10, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Admin1 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 13.333333, | |
"text-letter-spacing": 0.1, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a5a5a5", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin1 area/label/x large", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"maxzoom": 10, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Admin1 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 14.666667, | |
"text-letter-spacing": 0.1, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a5a5a5", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin1 area/label/2x large", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"maxzoom": 10, | |
"minzoom": 7, | |
"source": "esri", | |
"source-layer": "Admin1 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": 16, | |
"text-letter-spacing": 0.1, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#a5a5a5", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin0 area/label/x small", | |
"filter": [ | |
"==", | |
"_label_class", | |
5 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "Admin0 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": { | |
"stops": [ | |
[ | |
3, | |
10 | |
], | |
[ | |
5, | |
14 | |
], | |
[ | |
8, | |
20 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.15, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin0 area/label/small", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "Admin0 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": { | |
"stops": [ | |
[ | |
3, | |
10 | |
], | |
[ | |
5, | |
14 | |
], | |
[ | |
8, | |
20 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.15, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin0 area/label/medium", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "Admin0 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": { | |
"stops": [ | |
[ | |
3, | |
10 | |
], | |
[ | |
5, | |
14 | |
], | |
[ | |
8, | |
20 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.2, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin0 area/label/large", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "Admin0 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": { | |
"stops": [ | |
[ | |
3, | |
10 | |
], | |
[ | |
5, | |
14 | |
], | |
[ | |
8, | |
20 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.2, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin0 area/label/x large", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "Admin0 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": { | |
"stops": [ | |
[ | |
3, | |
10 | |
], | |
[ | |
5, | |
14 | |
], | |
[ | |
8, | |
20 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.2, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Admin0 area/label/2x large", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "Admin0 area_label", | |
"layout": { | |
"text-max-width": 8, | |
"text-size": { | |
"stops": [ | |
[ | |
3, | |
10 | |
], | |
[ | |
5, | |
14 | |
], | |
[ | |
8, | |
20 | |
] | |
] | |
}, | |
"text-letter-spacing": 0.2, | |
"text-transform": "uppercase", | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 0.933333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City large scale/town small", | |
"filter": [ | |
"==", | |
"_label_class", | |
5 | |
], | |
"maxzoom": 17, | |
"minzoom": 14, | |
"source": "esri", | |
"source-layer": "City large scale", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City large scale/town large", | |
"filter": [ | |
"==", | |
"_label_class", | |
4 | |
], | |
"maxzoom": 17, | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "City large scale", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City large scale/small", | |
"filter": [ | |
"==", | |
"_label_class", | |
3 | |
], | |
"maxzoom": 17, | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "City large scale", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City large scale/medium", | |
"filter": [ | |
"==", | |
"_label_class", | |
2 | |
], | |
"maxzoom": 17, | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "City large scale", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City large scale/large", | |
"filter": [ | |
"==", | |
"_label_class", | |
1 | |
], | |
"maxzoom": 17, | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "City large scale", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City large scale/x large", | |
"filter": [ | |
"==", | |
"_label_class", | |
0 | |
], | |
"maxzoom": 17, | |
"minzoom": 10, | |
"source": "esri", | |
"source-layer": "City large scale", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 13.3333, | |
"text-letter-spacing": 0.1, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name_global}", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/town small non capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
17 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/town small non capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/town large non capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
15 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/town large non capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/small non capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
12 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/small non capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/medium non capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
9 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/medium non capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/large non capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
6 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/large non capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/x large non capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
3 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/x large non capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/other capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
18 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/other capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/town large other capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
14 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/town large other capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/small other capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
11 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/small other capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/medium other capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
8 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/medium other capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/large other capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
5 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/large other capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/x large admin2 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
2 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/x large admin2 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/x large admin1 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
1 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/x large admin1 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/town small admin0 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
16 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/town small admin0 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/town large admin0 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
13 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/town large admin0 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/small admin0 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
10 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/small admin0 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/medium admin0 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
7 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/medium admin0 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/large admin0 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
4 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 10.666667, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/large admin0 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "City small scale/x large admin0 capital", | |
"filter": [ | |
"==", | |
"_symbol", | |
0 | |
], | |
"maxzoom": 10, | |
"source": "esri", | |
"source-layer": "City small scale", | |
"layout": { | |
"text-anchor": "center", | |
"icon-padding": 1, | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"icon-image": "City small scale/x large admin0 capital", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#323232", | |
"text-halo-color": "#efefef", | |
"text-halo-width": 1.333333 | |
} | |
}, | |
{ | |
"type": "symbol", | |
"id": "Continent/Default", | |
"maxzoom": 3, | |
"source": "esri", | |
"source-layer": "Continent", | |
"layout": { | |
"text-anchor": "center", | |
"text-max-width": 8, | |
"text-size": 12, | |
"text-letter-spacing": 0.05, | |
"text-padding": 1, | |
"text-font": [ | |
"Arial Regular" | |
], | |
"symbol-avoid-edges": true, | |
"text-field": "{_name}", | |
"visibility": "none", | |
"text-allow-overlap": false | |
}, | |
"paint": { | |
"text-color": "#828282", | |
"text-halo-color": "#F5F2DC", | |
"text-halo-width": 1.333333 | |
} | |
} | |
], | |
"glyphs": "http://www.arcgis.com/sharing/rest/content/items/bdf1eec3fa79456c8c7c2bb62f86dade/resources/styles/../fonts/{fontstack}/{range}.pbf", | |
"sprite": "http://www.arcgis.com/sharing/rest/content/items/bdf1eec3fa79456c8c7c2bb62f86dade/resources/styles/../sprites/sprite", | |
"version": 8, | |
"sources": { | |
"esri": { | |
"type": "vector", | |
"tiles": ["http://basemaps.arcgis.com/arcgis/rest/services/World_Basemap/VectorTileServer/tile/{z}/{x}/{y}.pbf"] | |
} | |
} | |
} | |
var map = new mapboxgl.Map({ | |
container: 'map', | |
style: simple, | |
zoom: 1, | |
center: [-14, 35] | |
}); | |
map.addControl(new mapboxgl.Navigation()); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment