diff --git a/.gitignore b/.gitignore index 3b66d61..d4fdbfd 100755 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ key.pem .DS_Store npm-debug.log secrets.txt + +.env diff --git a/.travis.yml b/.travis.yml index a1b7891..4909f83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,3 @@ language: node_js node_js: - "6" -before_deploy: npm run build -deploy: - provider: s3 - access_key_id: $S3_ACCESS_KEY_ID - secret_access_key: $S3_SECRET_KEY - bucket: "digidem-staging" - skip_cleanup: true - upload-dir: ${TRAVIS_REPO_SLUG}/${TRAVIS_BRANCH} - local_dir: build - detect_encoding: true - on: - all_branches: true diff --git a/bin/build_style.js b/bin/build_style.js new file mode 100644 index 0000000..380097a --- /dev/null +++ b/bin/build_style.js @@ -0,0 +1,121 @@ +#!/usr/bin/env node + +const request = require('request') +const traverse = require('traverse') +const uniq = require('lodash/uniq') +const urlencode = require('urlencode') +const fs = require('fs') +const path = require('path') +const pump = require('pump') +const rimraf = require('rimraf') +const mkdirp = require('mkdirp') + +const CONFIG = require('../config.json') +const markerColors = CONFIG.colors +markerColors.push(CONFIG.defaultColor) + +const markerPath = path.join(__dirname, '..', 'svg') +const marker = fs.readFileSync(path.join(markerPath, 'marker.svg'), 'utf8') +const markerHover = fs.readFileSync(path.join(markerPath, 'marker-hover.svg'), 'utf8') + +require('dotenv').config() + +const MAPBOX_TOKEN = process.env.MAPBOX_TOKEN +const outputDir = path.join(process.cwd(), process.argv[2]) +rimraf.sync(outputDir) +mkdirp.sync(outputDir) + +const mapStyle = CONFIG.defaultMapStyle +const mapStyleBaseUrl = mapStyle.replace(/^mapbox:\/\/styles\//, 'https://api.mapbox.com/styles/v1/') +const mapStyleUrl = mapStyleBaseUrl + '?access_token=' + MAPBOX_TOKEN + +const RANGES = ['0-255', '65280-65535', '65024-65279', '12288-12543', '65024-65279'] + +let pending = markerColors.length * 2 +markerColors.forEach(function (color) { + const markerBaseName = 'marker-' + color.replace('#', '') + const coloredMarker = marker.replace('{{fillColor}}', color) + const coloredMarkerHover = markerHover.replace('{{fillColor}}', color) + request.put({ + url: mapStyleBaseUrl + '/sprite/' + markerBaseName + '?access_token=' + MAPBOX_TOKEN, + body: coloredMarker + }, done) + request.put({ + url: mapStyleBaseUrl + '/sprite/' + markerBaseName + '-hover?access_token=' + MAPBOX_TOKEN, + body: coloredMarkerHover + }, done) +}) + +function done (err, res, body) { + if (err) return console.error(err) + if (--pending === 0) { + request(mapStyleUrl, onStyle) + } +} + +function onStyle (err, res, body) { + if (err) return console.error(err) + const style = JSON.parse(body) + const fonts = [] + traverse(style).forEach(function (x) { + if (this.key === 'text-font') { + if (Array.isArray(x)) { + fonts.push.apply(fonts, x) + } else if (typeof x === 'string') { + fonts.push(x) + } else { + traverse(x).forEach(fontsFromStops) + } + } + }) + function fontsFromStops (x) { + if (typeof x === 'string') { + fonts.push(x) + } + } + const fontStack = uniq(fonts).map(s => urlencode(s)).join(',') + style.glyphs = 'mapfilter://fonts/{range}.pbf?stack={fontstack}' + const originalSprite = style.sprite + style.sprite = 'mapfilter://sprites/sprite' + fs.writeFileSync(path.join(outputDir, 'style.json'), JSON.stringify(style, null, 4)) + downloadFonts(fontStack, done) + downloadSprites(originalSprite, done) + function done () { + console.log('DONE!') + } +} + +function downloadFonts (fontStack, cb) { + mkdirp.sync(path.join(outputDir, 'fonts')) + let pending = RANGES.length + RANGES.forEach(function (range) { + const url = 'https://api.mapbox.com/fonts/v1/gmaclennan/' + + fontStack + '/' + range + '.pbf' + '?access_token=' + MAPBOX_TOKEN + const filepath = path.join(outputDir, 'fonts', range + '.pbf') + const req = request({ + url: url, + gzip: true + }) + pump(req, fs.createWriteStream(filepath), done) + }) + function done (err) { + if (err) return console.error(err) + if (--pending === 0) cb(err) + } +} + +function downloadSprites (sprite, cb) { + mkdirp.sync(path.join(outputDir, 'sprites')) + const postfixes = ['.png', '.json', '@2x.png', '@2x.json'] + let pending = postfixes.length + postfixes.forEach(function (postfix) { + const url = sprite.replace(/^mapbox:\/\/sprites\//, 'https://api.mapbox.com/styles/v1/') + + '/sprite' + postfix + '?access_token=' + MAPBOX_TOKEN + '&cacheBust=' + Date.now() + const filepath = path.join(outputDir, 'sprites', 'sprite' + postfix) + pump(request(url), fs.createWriteStream(filepath), done) + }) + function done (err) { + if (err) return console.error(err) + if (--pending === 0) cb(err) + } +} diff --git a/config.json b/config.json index da5746e..9f5d197 100644 --- a/config.json +++ b/config.json @@ -9,6 +9,7 @@ "zoom": 10 }, "mapboxToken": "pk.eyJ1IjoiZ21hY2xlbm5hbiIsImEiOiJSaWVtd2lRIn0.ASYMZE2HhwkAw4Vt7SavEg", + "defaultMapStyle": "mapbox://styles/gmaclennan/cio7mcryg0015akm9b6wur5ic", "templates": [], "colors": [ "#1f78b4", diff --git a/example/map_style/fonts/0-255.pbf b/example/map_style/fonts/0-255.pbf new file mode 100644 index 0000000..844997a Binary files /dev/null and b/example/map_style/fonts/0-255.pbf differ diff --git a/example/map_style/fonts/12288-12543.pbf b/example/map_style/fonts/12288-12543.pbf new file mode 100644 index 0000000..1fd66a5 Binary files /dev/null and b/example/map_style/fonts/12288-12543.pbf differ diff --git a/example/map_style/fonts/65024-65279.pbf b/example/map_style/fonts/65024-65279.pbf new file mode 100644 index 0000000..7ae7742 Binary files /dev/null and b/example/map_style/fonts/65024-65279.pbf differ diff --git a/example/map_style/fonts/65280-65535.pbf b/example/map_style/fonts/65280-65535.pbf new file mode 100644 index 0000000..92ca0a6 Binary files /dev/null and b/example/map_style/fonts/65280-65535.pbf differ diff --git a/example/map_style/sprites/sprite.json b/example/map_style/sprites/sprite.json new file mode 100644 index 0000000..823f125 --- /dev/null +++ b/example/map_style/sprites/sprite.json @@ -0,0 +1 @@ +{"pedestrian-polygon":{"width":64,"height":64,"x":0,"y":0,"pixelRatio":1},"us-interstate-truck-2":{"width":20,"height":40,"x":64,"y":0,"pixelRatio":1},"us-interstate-truck-3":{"width":26,"height":40,"x":84,"y":0,"pixelRatio":1},"us-highway-alternate-2":{"width":20,"height":38,"x":0,"y":64,"pixelRatio":1},"us-highway-alternate-3":{"width":26,"height":38,"x":20,"y":64,"pixelRatio":1},"us-highway-business-2":{"width":20,"height":38,"x":46,"y":64,"pixelRatio":1},"us-highway-business-3":{"width":26,"height":38,"x":66,"y":64,"pixelRatio":1},"us-highway-bypass-2":{"width":20,"height":38,"x":92,"y":64,"pixelRatio":1},"us-highway-bypass-3":{"width":26,"height":38,"x":112,"y":64,"pixelRatio":1},"us-highway-truck-2":{"width":20,"height":38,"x":138,"y":64,"pixelRatio":1},"us-highway-truck-3":{"width":26,"height":38,"x":158,"y":64,"pixelRatio":1},"pe-national-2":{"width":18,"height":26,"x":184,"y":64,"pixelRatio":1},"pe-national-3":{"width":22,"height":26,"x":202,"y":64,"pixelRatio":1},"za-provincial-2":{"width":24,"height":24,"x":224,"y":64,"pixelRatio":1},"marker":{"width":17,"height":23,"x":110,"y":0,"pixelRatio":1},"marker-1f78b4":{"width":17,"height":23,"x":127,"y":0,"pixelRatio":1},"marker-1f78b4-hover":{"width":17,"height":23,"x":144,"y":0,"pixelRatio":1},"marker-33a02c":{"width":17,"height":23,"x":161,"y":0,"pixelRatio":1},"marker-33a02c-hover":{"width":17,"height":23,"x":178,"y":0,"pixelRatio":1},"marker-555555":{"width":17,"height":23,"x":195,"y":0,"pixelRatio":1},"marker-555555-hover":{"width":17,"height":23,"x":212,"y":0,"pixelRatio":1},"marker-6a3d9a":{"width":17,"height":23,"x":229,"y":0,"pixelRatio":1},"marker-6a3d9a-hover":{"width":17,"height":23,"x":0,"y":102,"pixelRatio":1},"marker-777777":{"width":17,"height":23,"x":17,"y":102,"pixelRatio":1},"marker-777777-hover":{"width":17,"height":23,"x":34,"y":102,"pixelRatio":1},"marker-a6cee3":{"width":17,"height":23,"x":51,"y":102,"pixelRatio":1},"marker-a6cee3-hover":{"width":17,"height":23,"x":68,"y":102,"pixelRatio":1},"marker-b15928":{"width":17,"height":23,"x":85,"y":102,"pixelRatio":1},"marker-b15928-hover":{"width":17,"height":23,"x":102,"y":102,"pixelRatio":1},"marker-b2df8a":{"width":17,"height":23,"x":119,"y":102,"pixelRatio":1},"marker-b2df8a-hover":{"width":17,"height":23,"x":136,"y":102,"pixelRatio":1},"marker-cab2d6":{"width":17,"height":23,"x":153,"y":102,"pixelRatio":1},"marker-cab2d6-hover":{"width":17,"height":23,"x":170,"y":102,"pixelRatio":1},"marker-e31a1c":{"width":17,"height":23,"x":187,"y":102,"pixelRatio":1},"marker-e31a1c-hover":{"width":17,"height":23,"x":204,"y":102,"pixelRatio":1},"marker-fb9a99":{"width":17,"height":23,"x":221,"y":102,"pixelRatio":1},"marker-fb9a99-hover":{"width":17,"height":23,"x":238,"y":102,"pixelRatio":1},"marker-fdbf6f":{"width":17,"height":23,"x":0,"y":125,"pixelRatio":1},"marker-fdbf6f-hover":{"width":17,"height":23,"x":17,"y":125,"pixelRatio":1},"marker-ff7f00":{"width":17,"height":23,"x":34,"y":125,"pixelRatio":1},"marker-ff7f00-hover":{"width":17,"height":23,"x":51,"y":125,"pixelRatio":1},"marker-ffff99":{"width":17,"height":23,"x":68,"y":125,"pixelRatio":1},"marker-ffff99-hover":{"width":17,"height":23,"x":85,"y":125,"pixelRatio":1},"marker-hover":{"width":17,"height":23,"x":102,"y":125,"pixelRatio":1},"br-federal-3":{"width":26,"height":22,"x":119,"y":125,"pixelRatio":1},"in-national-2":{"width":16,"height":22,"x":145,"y":125,"pixelRatio":1},"in-national-3":{"width":20,"height":22,"x":161,"y":125,"pixelRatio":1},"in-national-4":{"width":24,"height":22,"x":181,"y":125,"pixelRatio":1},"in-state-2":{"width":16,"height":22,"x":205,"y":125,"pixelRatio":1},"in-state-3":{"width":20,"height":22,"x":221,"y":125,"pixelRatio":1},"mx-federal-2":{"width":18,"height":22,"x":0,"y":148,"pixelRatio":1},"mx-federal-3":{"width":23,"height":22,"x":18,"y":148,"pixelRatio":1},"mx-federal-4":{"width":28,"height":22,"x":41,"y":148,"pixelRatio":1},"mx-state-2":{"width":18,"height":22,"x":69,"y":148,"pixelRatio":1},"mx-state-3":{"width":23,"height":22,"x":87,"y":148,"pixelRatio":1},"mx-state-4":{"width":28,"height":22,"x":110,"y":148,"pixelRatio":1},"pe-regional-3":{"width":23,"height":22,"x":138,"y":148,"pixelRatio":1},"ro-communal-4":{"width":28,"height":22,"x":161,"y":148,"pixelRatio":1},"ro-communal-5":{"width":23,"height":22,"x":189,"y":148,"pixelRatio":1},"ro-communal-6":{"width":34,"height":22,"x":212,"y":148,"pixelRatio":1},"us-interstate-2":{"width":20,"height":22,"x":0,"y":170,"pixelRatio":1},"us-interstate-3":{"width":26,"height":22,"x":20,"y":170,"pixelRatio":1},"us-interstate-duplex-4":{"width":32,"height":22,"x":46,"y":170,"pixelRatio":1},"us-interstate-duplex-5":{"width":38,"height":22,"x":78,"y":170,"pixelRatio":1},"airfield-15":{"width":21,"height":21,"x":116,"y":170,"pixelRatio":1},"airport-15":{"width":21,"height":21,"x":137,"y":170,"pixelRatio":1},"alcohol-shop-15":{"width":21,"height":21,"x":158,"y":170,"pixelRatio":1},"amusement-park-15":{"width":21,"height":21,"x":179,"y":170,"pixelRatio":1},"aquarium-15":{"width":21,"height":21,"x":200,"y":170,"pixelRatio":1},"art-gallery-15":{"width":21,"height":21,"x":221,"y":170,"pixelRatio":1},"attraction-15":{"width":21,"height":21,"x":0,"y":192,"pixelRatio":1},"bakery-15":{"width":21,"height":21,"x":21,"y":192,"pixelRatio":1},"bank-15":{"width":21,"height":21,"x":42,"y":192,"pixelRatio":1},"bar-15":{"width":21,"height":21,"x":63,"y":192,"pixelRatio":1},"beer-15":{"width":21,"height":21,"x":84,"y":192,"pixelRatio":1},"bicycle-15":{"width":21,"height":21,"x":105,"y":192,"pixelRatio":1},"bicycle-share-15":{"width":21,"height":21,"x":126,"y":192,"pixelRatio":1},"bus-15":{"width":21,"height":21,"x":147,"y":192,"pixelRatio":1},"cafe-15":{"width":21,"height":21,"x":168,"y":192,"pixelRatio":1},"campsite-15":{"width":21,"height":21,"x":189,"y":192,"pixelRatio":1},"car-15":{"width":21,"height":21,"x":210,"y":192,"pixelRatio":1},"castle-15":{"width":21,"height":21,"x":231,"y":192,"pixelRatio":1},"cemetery-15":{"width":21,"height":21,"x":0,"y":213,"pixelRatio":1},"cinema-15":{"width":21,"height":21,"x":21,"y":213,"pixelRatio":1},"circle-15":{"width":21,"height":21,"x":42,"y":213,"pixelRatio":1},"circle-stroked-15":{"width":21,"height":21,"x":63,"y":213,"pixelRatio":1},"clothing-store-15":{"width":21,"height":21,"x":84,"y":213,"pixelRatio":1},"college-15":{"width":21,"height":21,"x":105,"y":213,"pixelRatio":1},"dentist-15":{"width":21,"height":21,"x":126,"y":213,"pixelRatio":1},"doctor-15":{"width":21,"height":21,"x":147,"y":213,"pixelRatio":1},"dog-park-15":{"width":21,"height":21,"x":168,"y":213,"pixelRatio":1},"drinking-water-15":{"width":21,"height":21,"x":189,"y":213,"pixelRatio":1},"embassy-15":{"width":21,"height":21,"x":210,"y":213,"pixelRatio":1},"entrance-15":{"width":21,"height":21,"x":231,"y":213,"pixelRatio":1},"fast-food-15":{"width":21,"height":21,"x":0,"y":234,"pixelRatio":1},"ferry-15":{"width":21,"height":21,"x":21,"y":234,"pixelRatio":1},"fire-station-15":{"width":21,"height":21,"x":42,"y":234,"pixelRatio":1},"fuel-15":{"width":21,"height":21,"x":63,"y":234,"pixelRatio":1},"garden-15":{"width":21,"height":21,"x":84,"y":234,"pixelRatio":1},"golf-15":{"width":21,"height":21,"x":105,"y":234,"pixelRatio":1},"grocery-15":{"width":21,"height":21,"x":126,"y":234,"pixelRatio":1},"harbor-15":{"width":21,"height":21,"x":147,"y":234,"pixelRatio":1},"heliport-15":{"width":21,"height":21,"x":168,"y":234,"pixelRatio":1},"hospital-15":{"width":21,"height":21,"x":189,"y":234,"pixelRatio":1},"ice-cream-15":{"width":21,"height":21,"x":210,"y":234,"pixelRatio":1},"information-15":{"width":21,"height":21,"x":231,"y":234,"pixelRatio":1},"laundry-15":{"width":21,"height":21,"x":252,"y":192,"pixelRatio":1},"library-15":{"width":21,"height":21,"x":273,"y":192,"pixelRatio":1},"lodging-15":{"width":21,"height":21,"x":294,"y":192,"pixelRatio":1},"monument-15":{"width":21,"height":21,"x":315,"y":192,"pixelRatio":1},"mountain-15":{"width":21,"height":21,"x":336,"y":192,"pixelRatio":1},"museum-15":{"width":21,"height":21,"x":357,"y":192,"pixelRatio":1},"music-15":{"width":21,"height":21,"x":378,"y":192,"pixelRatio":1},"park-15":{"width":21,"height":21,"x":399,"y":192,"pixelRatio":1},"pharmacy-15":{"width":21,"height":21,"x":420,"y":192,"pixelRatio":1},"picnic-site-15":{"width":21,"height":21,"x":441,"y":192,"pixelRatio":1},"place-of-worship-15":{"width":21,"height":21,"x":462,"y":192,"pixelRatio":1},"playground-15":{"width":21,"height":21,"x":483,"y":192,"pixelRatio":1},"police-15":{"width":21,"height":21,"x":252,"y":213,"pixelRatio":1},"post-15":{"width":21,"height":21,"x":273,"y":213,"pixelRatio":1},"prison-15":{"width":21,"height":21,"x":294,"y":213,"pixelRatio":1},"rail-15":{"width":21,"height":21,"x":315,"y":213,"pixelRatio":1},"rail-light-15":{"width":21,"height":21,"x":336,"y":213,"pixelRatio":1},"rail-metro-15":{"width":21,"height":21,"x":357,"y":213,"pixelRatio":1},"religious-christian-15":{"width":21,"height":21,"x":378,"y":213,"pixelRatio":1},"religious-jewish-15":{"width":21,"height":21,"x":399,"y":213,"pixelRatio":1},"religious-muslim-15":{"width":21,"height":21,"x":420,"y":213,"pixelRatio":1},"restaurant-15":{"width":21,"height":21,"x":441,"y":213,"pixelRatio":1},"rocket-15":{"width":21,"height":21,"x":462,"y":213,"pixelRatio":1},"school-15":{"width":21,"height":21,"x":483,"y":213,"pixelRatio":1},"shop-15":{"width":21,"height":21,"x":252,"y":234,"pixelRatio":1},"stadium-15":{"width":21,"height":21,"x":273,"y":234,"pixelRatio":1},"star-15":{"width":21,"height":21,"x":294,"y":234,"pixelRatio":1},"suitcase-15":{"width":21,"height":21,"x":315,"y":234,"pixelRatio":1},"swimming-15":{"width":21,"height":21,"x":336,"y":234,"pixelRatio":1},"theatre-15":{"width":21,"height":21,"x":357,"y":234,"pixelRatio":1},"toilet-15":{"width":21,"height":21,"x":378,"y":234,"pixelRatio":1},"town-hall-15":{"width":21,"height":21,"x":399,"y":234,"pixelRatio":1},"triangle-15":{"width":21,"height":21,"x":420,"y":234,"pixelRatio":1},"triangle-stroked-15":{"width":21,"height":21,"x":441,"y":234,"pixelRatio":1},"veterinary-15":{"width":21,"height":21,"x":462,"y":234,"pixelRatio":1},"volcano-15":{"width":21,"height":21,"x":483,"y":234,"pixelRatio":1},"zoo-15":{"width":21,"height":21,"x":246,"y":148,"pixelRatio":1},"br-state-2":{"width":20,"height":20,"x":267,"y":148,"pixelRatio":1},"br-state-3":{"width":28,"height":20,"x":287,"y":148,"pixelRatio":1},"hu-main-2":{"width":20,"height":20,"x":315,"y":148,"pixelRatio":1},"hu-main-3":{"width":26,"height":20,"x":335,"y":148,"pixelRatio":1},"hu-main-4":{"width":32,"height":20,"x":361,"y":148,"pixelRatio":1},"hu-main-5":{"width":38,"height":20,"x":393,"y":148,"pixelRatio":1},"hu-motorway-2":{"width":20,"height":20,"x":431,"y":148,"pixelRatio":1},"hu-motorway-3":{"width":26,"height":20,"x":451,"y":148,"pixelRatio":1},"nz-state-2":{"width":18,"height":20,"x":477,"y":148,"pixelRatio":1},"nz-state-3":{"width":23,"height":20,"x":242,"y":170,"pixelRatio":1},"ro-communal-2":{"width":20,"height":20,"x":265,"y":170,"pixelRatio":1},"ro-communal-3":{"width":26,"height":20,"x":285,"y":170,"pixelRatio":1},"ro-county-3":{"width":26,"height":20,"x":311,"y":170,"pixelRatio":1},"ro-county-4":{"width":32,"height":20,"x":337,"y":170,"pixelRatio":1},"ro-national-2":{"width":20,"height":20,"x":369,"y":170,"pixelRatio":1},"ro-national-3":{"width":26,"height":20,"x":389,"y":170,"pixelRatio":1},"us-highway-2":{"width":20,"height":20,"x":415,"y":170,"pixelRatio":1},"us-highway-3":{"width":26,"height":20,"x":435,"y":170,"pixelRatio":1},"us-highway-4":{"width":32,"height":20,"x":461,"y":170,"pixelRatio":1},"us-highway-duplex-3":{"width":26,"height":20,"x":255,"y":102,"pixelRatio":1},"us-highway-duplex-4":{"width":32,"height":20,"x":281,"y":102,"pixelRatio":1},"us-highway-duplex-5":{"width":38,"height":20,"x":313,"y":102,"pixelRatio":1},"us-interstate-business-2":{"width":20,"height":20,"x":351,"y":102,"pixelRatio":1},"us-interstate-business-3":{"width":26,"height":20,"x":371,"y":102,"pixelRatio":1},"us-state-2":{"width":20,"height":20,"x":397,"y":102,"pixelRatio":1},"us-state-3":{"width":26,"height":20,"x":417,"y":102,"pixelRatio":1},"us-state-4":{"width":32,"height":20,"x":443,"y":102,"pixelRatio":1},"za-national-2":{"width":20,"height":20,"x":475,"y":102,"pixelRatio":1},"barcelona-metro":{"width":19,"height":19,"x":493,"y":170,"pixelRatio":1},"boston-t":{"width":19,"height":19,"x":241,"y":125,"pixelRatio":1},"de-s-bahn":{"width":19,"height":19,"x":260,"y":125,"pixelRatio":1},"de-s-bahn.de-u-bahn":{"width":35,"height":19,"x":279,"y":125,"pixelRatio":1},"delhi-metro":{"width":19,"height":19,"x":314,"y":125,"pixelRatio":1},"kiev-metro":{"width":19,"height":19,"x":333,"y":125,"pixelRatio":1},"madrid-metro":{"width":19,"height":19,"x":352,"y":125,"pixelRatio":1},"new-york-subway":{"width":19,"height":19,"x":371,"y":125,"pixelRatio":1},"oslo-metro":{"width":19,"height":19,"x":390,"y":125,"pixelRatio":1},"paris-metro":{"width":19,"height":19,"x":409,"y":125,"pixelRatio":1},"paris-metro.paris-rer":{"width":37,"height":19,"x":428,"y":125,"pixelRatio":1},"paris-rer":{"width":19,"height":19,"x":465,"y":125,"pixelRatio":1},"paris-rer.paris-transilien":{"width":35,"height":19,"x":248,"y":64,"pixelRatio":1},"stockholm-metro":{"width":19,"height":19,"x":484,"y":125,"pixelRatio":1},"taipei-metro":{"width":19,"height":19,"x":283,"y":64,"pixelRatio":1},"vienna-u-bahn":{"width":19,"height":19,"x":302,"y":64,"pixelRatio":1},"airfield-11":{"width":17,"height":17,"x":495,"y":148,"pixelRatio":1},"airport-11":{"width":17,"height":17,"x":495,"y":102,"pixelRatio":1},"alcohol-shop-11":{"width":17,"height":17,"x":321,"y":64,"pixelRatio":1},"amusement-park-11":{"width":17,"height":17,"x":338,"y":64,"pixelRatio":1},"aquarium-11":{"width":17,"height":17,"x":355,"y":64,"pixelRatio":1},"art-gallery-11":{"width":17,"height":17,"x":372,"y":64,"pixelRatio":1},"attraction-11":{"width":17,"height":17,"x":389,"y":64,"pixelRatio":1},"bakery-11":{"width":17,"height":17,"x":406,"y":64,"pixelRatio":1},"bank-11":{"width":17,"height":17,"x":423,"y":64,"pixelRatio":1},"bar-11":{"width":17,"height":17,"x":440,"y":64,"pixelRatio":1},"beer-11":{"width":17,"height":17,"x":457,"y":64,"pixelRatio":1},"bicycle-11":{"width":17,"height":17,"x":474,"y":64,"pixelRatio":1},"bicycle-share-11":{"width":17,"height":17,"x":491,"y":64,"pixelRatio":1},"bus-11":{"width":17,"height":17,"x":246,"y":0,"pixelRatio":1},"cafe-11":{"width":17,"height":17,"x":263,"y":0,"pixelRatio":1},"campsite-11":{"width":17,"height":17,"x":280,"y":0,"pixelRatio":1},"car-11":{"width":17,"height":17,"x":297,"y":0,"pixelRatio":1},"castle-11":{"width":17,"height":17,"x":314,"y":0,"pixelRatio":1},"cemetery-11":{"width":17,"height":17,"x":331,"y":0,"pixelRatio":1},"chongqing-rail-transit":{"width":25,"height":17,"x":348,"y":0,"pixelRatio":1},"cinema-11":{"width":17,"height":17,"x":373,"y":0,"pixelRatio":1},"circle-11":{"width":17,"height":17,"x":390,"y":0,"pixelRatio":1},"circle-stroked-11":{"width":17,"height":17,"x":407,"y":0,"pixelRatio":1},"clothing-store-11":{"width":17,"height":17,"x":424,"y":0,"pixelRatio":1},"college-11":{"width":17,"height":17,"x":441,"y":0,"pixelRatio":1},"de-u-bahn":{"width":17,"height":17,"x":458,"y":0,"pixelRatio":1},"dentist-11":{"width":17,"height":17,"x":475,"y":0,"pixelRatio":1},"doctor-11":{"width":17,"height":17,"x":492,"y":0,"pixelRatio":1},"dog-park-11":{"width":17,"height":17,"x":0,"y":255,"pixelRatio":1},"drinking-water-11":{"width":17,"height":17,"x":17,"y":255,"pixelRatio":1},"embassy-11":{"width":17,"height":17,"x":34,"y":255,"pixelRatio":1},"entrance":{"width":17,"height":17,"x":51,"y":255,"pixelRatio":1},"entrance-11":{"width":17,"height":17,"x":68,"y":255,"pixelRatio":1},"fast-food-11":{"width":17,"height":17,"x":85,"y":255,"pixelRatio":1},"ferry-11":{"width":17,"height":17,"x":102,"y":255,"pixelRatio":1},"fire-station-11":{"width":17,"height":17,"x":119,"y":255,"pixelRatio":1},"fuel-11":{"width":17,"height":17,"x":136,"y":255,"pixelRatio":1},"garden-11":{"width":17,"height":17,"x":153,"y":255,"pixelRatio":1},"golf-11":{"width":17,"height":17,"x":170,"y":255,"pixelRatio":1},"grocery-11":{"width":17,"height":17,"x":187,"y":255,"pixelRatio":1},"harbor-11":{"width":17,"height":17,"x":204,"y":255,"pixelRatio":1},"heliport-11":{"width":17,"height":17,"x":221,"y":255,"pixelRatio":1},"hong-kong-mtr":{"width":19,"height":17,"x":238,"y":255,"pixelRatio":1},"hospital-11":{"width":17,"height":17,"x":257,"y":255,"pixelRatio":1},"ice-cream-11":{"width":17,"height":17,"x":274,"y":255,"pixelRatio":1},"information-11":{"width":17,"height":17,"x":291,"y":255,"pixelRatio":1},"laundry-11":{"width":17,"height":17,"x":308,"y":255,"pixelRatio":1},"library-11":{"width":17,"height":17,"x":325,"y":255,"pixelRatio":1},"lodging-11":{"width":17,"height":17,"x":342,"y":255,"pixelRatio":1},"mexico-city-metro":{"width":17,"height":17,"x":359,"y":255,"pixelRatio":1},"milan-metro":{"width":17,"height":17,"x":376,"y":255,"pixelRatio":1},"monument-11":{"width":17,"height":17,"x":393,"y":255,"pixelRatio":1},"moscow-metro":{"width":17,"height":17,"x":410,"y":255,"pixelRatio":1},"mountain-11":{"width":17,"height":17,"x":427,"y":255,"pixelRatio":1},"museum-11":{"width":17,"height":17,"x":444,"y":255,"pixelRatio":1},"music-11":{"width":17,"height":17,"x":461,"y":255,"pixelRatio":1},"osaka-subway":{"width":20,"height":17,"x":478,"y":255,"pixelRatio":1},"paris-transilien":{"width":17,"height":17,"x":0,"y":272,"pixelRatio":1},"park-11":{"width":17,"height":17,"x":17,"y":272,"pixelRatio":1},"pharmacy-11":{"width":17,"height":17,"x":34,"y":272,"pixelRatio":1},"philadelphia-septa":{"width":19,"height":17,"x":51,"y":272,"pixelRatio":1},"picnic-site-11":{"width":17,"height":17,"x":70,"y":272,"pixelRatio":1},"place-of-worship-11":{"width":17,"height":17,"x":87,"y":272,"pixelRatio":1},"playground-11":{"width":17,"height":17,"x":104,"y":272,"pixelRatio":1},"police-11":{"width":17,"height":17,"x":121,"y":272,"pixelRatio":1},"post-11":{"width":17,"height":17,"x":138,"y":272,"pixelRatio":1},"prison-11":{"width":17,"height":17,"x":155,"y":272,"pixelRatio":1},"rail":{"width":17,"height":17,"x":172,"y":272,"pixelRatio":1},"rail-11":{"width":17,"height":17,"x":189,"y":272,"pixelRatio":1},"rail-light":{"width":17,"height":17,"x":206,"y":272,"pixelRatio":1},"rail-light-11":{"width":17,"height":17,"x":223,"y":272,"pixelRatio":1},"rail-metro":{"width":17,"height":17,"x":240,"y":272,"pixelRatio":1},"rail-metro-11":{"width":17,"height":17,"x":257,"y":272,"pixelRatio":1},"religious-christian-11":{"width":17,"height":17,"x":274,"y":272,"pixelRatio":1},"religious-jewish-11":{"width":17,"height":17,"x":291,"y":272,"pixelRatio":1},"religious-muslim-11":{"width":17,"height":17,"x":308,"y":272,"pixelRatio":1},"restaurant-11":{"width":17,"height":17,"x":325,"y":272,"pixelRatio":1},"rocket-11":{"width":17,"height":17,"x":342,"y":272,"pixelRatio":1},"san-francisco-bart":{"width":17,"height":17,"x":359,"y":272,"pixelRatio":1},"school-11":{"width":17,"height":17,"x":376,"y":272,"pixelRatio":1},"shop-11":{"width":17,"height":17,"x":393,"y":272,"pixelRatio":1},"singapore-mrt":{"width":17,"height":17,"x":410,"y":272,"pixelRatio":1},"stadium-11":{"width":17,"height":17,"x":427,"y":272,"pixelRatio":1},"star-11":{"width":17,"height":17,"x":444,"y":272,"pixelRatio":1},"suitcase-11":{"width":17,"height":17,"x":461,"y":272,"pixelRatio":1},"swimming-11":{"width":17,"height":17,"x":478,"y":272,"pixelRatio":1},"theatre-11":{"width":17,"height":17,"x":495,"y":272,"pixelRatio":1},"toilet-11":{"width":17,"height":17,"x":0,"y":289,"pixelRatio":1},"tokyo-metro":{"width":17,"height":17,"x":17,"y":289,"pixelRatio":1},"town-hall-11":{"width":17,"height":17,"x":34,"y":289,"pixelRatio":1},"triangle-11":{"width":17,"height":17,"x":51,"y":289,"pixelRatio":1},"triangle-stroked-11":{"width":17,"height":17,"x":68,"y":289,"pixelRatio":1},"veterinary-11":{"width":17,"height":17,"x":85,"y":289,"pixelRatio":1},"volcano-11":{"width":17,"height":17,"x":102,"y":289,"pixelRatio":1},"washington-metro":{"width":17,"height":17,"x":119,"y":289,"pixelRatio":1},"zoo-11":{"width":17,"height":17,"x":136,"y":289,"pixelRatio":1},"ch-motorway-2":{"width":22,"height":16,"x":153,"y":289,"pixelRatio":1},"ch-motorway-3":{"width":28,"height":16,"x":175,"y":289,"pixelRatio":1},"ch-motorway-4":{"width":34,"height":16,"x":203,"y":289,"pixelRatio":1},"de-motorway-2":{"width":22,"height":16,"x":237,"y":289,"pixelRatio":1},"de-motorway-3":{"width":28,"height":16,"x":259,"y":289,"pixelRatio":1},"gb-national-rail.london-dlr":{"width":36,"height":16,"x":287,"y":289,"pixelRatio":1},"gb-national-rail.london-dlr.london-overground.london-tfl-rail.london-underground":{"width":93,"height":16,"x":323,"y":289,"pixelRatio":1},"gb-national-rail.london-dlr.london-overground.london-underground":{"width":74,"height":16,"x":416,"y":289,"pixelRatio":1},"gb-national-rail.london-dlr.london-underground":{"width":55,"height":16,"x":0,"y":306,"pixelRatio":1},"gb-national-rail.london-overground":{"width":36,"height":16,"x":55,"y":306,"pixelRatio":1},"gb-national-rail.london-overground.london-tfl-rail.london-underground":{"width":74,"height":16,"x":91,"y":306,"pixelRatio":1},"gb-national-rail.london-overground.london-underground":{"width":55,"height":16,"x":165,"y":306,"pixelRatio":1},"gb-national-rail.london-tfl-rail":{"width":36,"height":16,"x":220,"y":306,"pixelRatio":1},"gb-national-rail.london-tfl-rail.london-overground":{"width":55,"height":16,"x":256,"y":306,"pixelRatio":1},"gb-national-rail.london-tfl-rail.london-underground":{"width":55,"height":16,"x":311,"y":306,"pixelRatio":1},"gb-national-rail.london-underground":{"width":36,"height":16,"x":366,"y":306,"pixelRatio":1},"gr-motorway-2":{"width":22,"height":16,"x":402,"y":306,"pixelRatio":1},"gr-motorway-3":{"width":28,"height":16,"x":424,"y":306,"pixelRatio":1},"gr-motorway-4":{"width":34,"height":16,"x":452,"y":306,"pixelRatio":1},"hr-motorway-3":{"width":28,"height":16,"x":0,"y":322,"pixelRatio":1},"hr-motorway-4":{"width":34,"height":16,"x":28,"y":322,"pixelRatio":1},"london-dlr":{"width":20,"height":16,"x":486,"y":306,"pixelRatio":1},"london-dlr.london-tfl-rail":{"width":39,"height":16,"x":62,"y":322,"pixelRatio":1},"london-dlr.london-tfl-rail.london-underground":{"width":58,"height":16,"x":101,"y":322,"pixelRatio":1},"london-dlr.london-underground":{"width":39,"height":16,"x":159,"y":322,"pixelRatio":1},"london-overground":{"width":20,"height":16,"x":198,"y":322,"pixelRatio":1},"london-overground.london-tfl-rail":{"width":39,"height":16,"x":218,"y":322,"pixelRatio":1},"london-overground.london-tfl-rail.london-underground":{"width":58,"height":16,"x":257,"y":322,"pixelRatio":1},"london-overground.london-underground":{"width":39,"height":16,"x":315,"y":322,"pixelRatio":1},"london-tfl-rail":{"width":20,"height":16,"x":354,"y":322,"pixelRatio":1},"london-tfl-rail.london-underground":{"width":39,"height":16,"x":374,"y":322,"pixelRatio":1},"london-underground":{"width":20,"height":16,"x":413,"y":322,"pixelRatio":1},"si-motorway-2":{"width":22,"height":16,"x":433,"y":322,"pixelRatio":1},"wetland":{"width":16,"height":16,"x":455,"y":322,"pixelRatio":1},"at-expressway-2":{"width":20,"height":14,"x":471,"y":322,"pixelRatio":1},"at-expressway-3":{"width":26,"height":14,"x":0,"y":338,"pixelRatio":1},"at-motorway-2":{"width":20,"height":14,"x":26,"y":338,"pixelRatio":1},"at-motorway-3":{"width":26,"height":14,"x":46,"y":338,"pixelRatio":1},"at-state-b-2":{"width":20,"height":14,"x":72,"y":338,"pixelRatio":1},"at-state-b-3":{"width":26,"height":14,"x":92,"y":338,"pixelRatio":1},"bg-motorway-2":{"width":20,"height":14,"x":118,"y":338,"pixelRatio":1},"bg-national-2":{"width":20,"height":14,"x":138,"y":338,"pixelRatio":1},"ch-main-2":{"width":20,"height":14,"x":158,"y":338,"pixelRatio":1},"ch-main-3":{"width":26,"height":14,"x":178,"y":338,"pixelRatio":1},"cz-expressway-2":{"width":20,"height":14,"x":204,"y":338,"pixelRatio":1},"cz-expressway-3":{"width":26,"height":14,"x":224,"y":338,"pixelRatio":1},"cz-motorway-2":{"width":20,"height":14,"x":250,"y":338,"pixelRatio":1},"cz-road-2":{"width":20,"height":14,"x":270,"y":338,"pixelRatio":1},"cz-road-3":{"width":26,"height":14,"x":290,"y":338,"pixelRatio":1},"de-federal-2":{"width":20,"height":14,"x":316,"y":338,"pixelRatio":1},"de-federal-3":{"width":26,"height":14,"x":336,"y":338,"pixelRatio":1},"de-federal-4":{"width":32,"height":14,"x":362,"y":338,"pixelRatio":1},"default-2":{"width":20,"height":14,"x":394,"y":338,"pixelRatio":1},"default-3":{"width":26,"height":14,"x":414,"y":338,"pixelRatio":1},"default-4":{"width":32,"height":14,"x":440,"y":338,"pixelRatio":1},"default-5":{"width":38,"height":14,"x":472,"y":338,"pixelRatio":1},"default-6":{"width":44,"height":14,"x":0,"y":352,"pixelRatio":1},"dk-primary-2":{"width":20,"height":14,"x":44,"y":352,"pixelRatio":1},"dk-secondary-3":{"width":26,"height":14,"x":64,"y":352,"pixelRatio":1},"e-road-2":{"width":20,"height":14,"x":90,"y":352,"pixelRatio":1},"e-road-3":{"width":26,"height":14,"x":110,"y":352,"pixelRatio":1},"e-road-4":{"width":32,"height":14,"x":136,"y":352,"pixelRatio":1},"fi-main-2":{"width":20,"height":14,"x":168,"y":352,"pixelRatio":1},"fi-regional-3":{"width":26,"height":14,"x":188,"y":352,"pixelRatio":1},"fi-trunk-2":{"width":20,"height":14,"x":214,"y":352,"pixelRatio":1},"gb-national-rail":{"width":17,"height":14,"x":234,"y":352,"pixelRatio":1},"gr-national-2":{"width":20,"height":14,"x":251,"y":352,"pixelRatio":1},"gr-national-3":{"width":26,"height":14,"x":271,"y":352,"pixelRatio":1},"gr-national-4":{"width":32,"height":14,"x":297,"y":352,"pixelRatio":1},"hr-county-4":{"width":32,"height":14,"x":329,"y":352,"pixelRatio":1},"hr-state-2":{"width":20,"height":14,"x":361,"y":352,"pixelRatio":1},"hr-state-3":{"width":26,"height":14,"x":381,"y":352,"pixelRatio":1},"marker-15":{"width":6,"height":14,"x":407,"y":352,"pixelRatio":1},"motorway-exit-1":{"width":20,"height":14,"x":413,"y":352,"pixelRatio":1},"motorway-exit-2":{"width":20,"height":14,"x":433,"y":352,"pixelRatio":1},"motorway-exit-3":{"width":26,"height":14,"x":453,"y":352,"pixelRatio":1},"motorway-exit-4":{"width":32,"height":14,"x":479,"y":352,"pixelRatio":1},"motorway-exit-5":{"width":38,"height":14,"x":0,"y":366,"pixelRatio":1},"motorway-exit-6":{"width":44,"height":14,"x":38,"y":366,"pixelRatio":1},"motorway-exit-7":{"width":50,"height":14,"x":82,"y":366,"pixelRatio":1},"motorway-exit-8":{"width":56,"height":14,"x":132,"y":366,"pixelRatio":1},"pl-expressway-2":{"width":20,"height":14,"x":188,"y":366,"pixelRatio":1},"pl-expressway-3":{"width":26,"height":14,"x":208,"y":366,"pixelRatio":1},"pl-motorway-2":{"width":20,"height":14,"x":234,"y":366,"pixelRatio":1},"pl-motorway-3":{"width":26,"height":14,"x":254,"y":366,"pixelRatio":1},"pl-national-2":{"width":20,"height":14,"x":280,"y":366,"pixelRatio":1},"pl-voivodeship-3":{"width":26,"height":14,"x":300,"y":366,"pixelRatio":1},"ro-motorway-2":{"width":20,"height":14,"x":326,"y":366,"pixelRatio":1},"ro-motorway-3":{"width":26,"height":14,"x":346,"y":366,"pixelRatio":1},"rs-motorway-3":{"width":26,"height":14,"x":372,"y":366,"pixelRatio":1},"rs-state-1b-2":{"width":20,"height":14,"x":398,"y":366,"pixelRatio":1},"rs-state-2a-3":{"width":26,"height":14,"x":418,"y":366,"pixelRatio":1},"rs-state-2b-3":{"width":26,"height":14,"x":444,"y":366,"pixelRatio":1},"se-main-2":{"width":20,"height":14,"x":470,"y":366,"pixelRatio":1},"se-main-3":{"width":26,"height":14,"x":0,"y":380,"pixelRatio":1},"si-expressway-3":{"width":26,"height":14,"x":26,"y":380,"pixelRatio":1},"si-main-2":{"width":20,"height":14,"x":490,"y":366,"pixelRatio":1},"si-main-3":{"width":26,"height":14,"x":52,"y":380,"pixelRatio":1},"sk-highway-2":{"width":20,"height":14,"x":78,"y":380,"pixelRatio":1},"sk-road-2":{"width":20,"height":14,"x":98,"y":380,"pixelRatio":1},"sk-road-3":{"width":26,"height":14,"x":118,"y":380,"pixelRatio":1},"sk-road-4":{"width":32,"height":14,"x":144,"y":380,"pixelRatio":1},"sk-road-5":{"width":38,"height":14,"x":176,"y":380,"pixelRatio":1},"za-metropolitan-2":{"width":20,"height":14,"x":214,"y":380,"pixelRatio":1},"za-regional-3":{"width":26,"height":14,"x":234,"y":380,"pixelRatio":1},"dot-11":{"width":11,"height":11,"x":260,"y":380,"pixelRatio":1},"marker-11":{"width":6,"height":11,"x":271,"y":380,"pixelRatio":1},"dot-10":{"width":10,"height":10,"x":277,"y":380,"pixelRatio":1},"dot-9":{"width":9,"height":9,"x":287,"y":380,"pixelRatio":1},"cliff":{"width":8,"height":7,"x":296,"y":380,"pixelRatio":1},"oneway-large":{"width":14,"height":6,"x":304,"y":380,"pixelRatio":1},"oneway-white-large":{"width":14,"height":6,"x":318,"y":380,"pixelRatio":1},"oneway-small":{"width":11,"height":5,"x":332,"y":380,"pixelRatio":1},"oneway-white-small":{"width":11,"height":5,"x":343,"y":380,"pixelRatio":1}} \ No newline at end of file diff --git a/example/map_style/sprites/sprite.png b/example/map_style/sprites/sprite.png new file mode 100644 index 0000000..f1634d9 Binary files /dev/null and b/example/map_style/sprites/sprite.png differ diff --git a/example/map_style/sprites/sprite@2x.json b/example/map_style/sprites/sprite@2x.json new file mode 100644 index 0000000..37ae363 --- /dev/null +++ b/example/map_style/sprites/sprite@2x.json @@ -0,0 +1 @@ +{"pedestrian-polygon":{"width":128,"height":128,"x":0,"y":0,"pixelRatio":2},"us-interstate-truck-2":{"width":40,"height":80,"x":128,"y":0,"pixelRatio":2},"us-interstate-truck-3":{"width":52,"height":80,"x":168,"y":0,"pixelRatio":2},"us-highway-alternate-2":{"width":40,"height":76,"x":0,"y":128,"pixelRatio":2},"us-highway-alternate-3":{"width":52,"height":76,"x":40,"y":128,"pixelRatio":2},"us-highway-business-2":{"width":40,"height":76,"x":92,"y":128,"pixelRatio":2},"us-highway-business-3":{"width":52,"height":76,"x":132,"y":128,"pixelRatio":2},"us-highway-bypass-2":{"width":40,"height":76,"x":184,"y":128,"pixelRatio":2},"us-highway-bypass-3":{"width":52,"height":76,"x":224,"y":128,"pixelRatio":2},"us-highway-truck-2":{"width":40,"height":76,"x":276,"y":128,"pixelRatio":2},"us-highway-truck-3":{"width":52,"height":76,"x":316,"y":128,"pixelRatio":2},"pe-national-2":{"width":36,"height":52,"x":368,"y":128,"pixelRatio":2},"pe-national-3":{"width":44,"height":52,"x":404,"y":128,"pixelRatio":2},"za-provincial-2":{"width":48,"height":48,"x":448,"y":128,"pixelRatio":2},"marker":{"width":34,"height":46,"x":220,"y":0,"pixelRatio":2},"marker-1f78b4":{"width":34,"height":46,"x":254,"y":0,"pixelRatio":2},"marker-1f78b4-hover":{"width":34,"height":46,"x":288,"y":0,"pixelRatio":2},"marker-33a02c":{"width":34,"height":46,"x":322,"y":0,"pixelRatio":2},"marker-33a02c-hover":{"width":34,"height":46,"x":356,"y":0,"pixelRatio":2},"marker-555555":{"width":34,"height":46,"x":390,"y":0,"pixelRatio":2},"marker-555555-hover":{"width":34,"height":46,"x":424,"y":0,"pixelRatio":2},"marker-6a3d9a":{"width":34,"height":46,"x":458,"y":0,"pixelRatio":2},"marker-6a3d9a-hover":{"width":34,"height":46,"x":0,"y":204,"pixelRatio":2},"marker-777777":{"width":34,"height":46,"x":34,"y":204,"pixelRatio":2},"marker-777777-hover":{"width":34,"height":46,"x":68,"y":204,"pixelRatio":2},"marker-a6cee3":{"width":34,"height":46,"x":102,"y":204,"pixelRatio":2},"marker-a6cee3-hover":{"width":34,"height":46,"x":136,"y":204,"pixelRatio":2},"marker-b15928":{"width":34,"height":46,"x":170,"y":204,"pixelRatio":2},"marker-b15928-hover":{"width":34,"height":46,"x":204,"y":204,"pixelRatio":2},"marker-b2df8a":{"width":34,"height":46,"x":238,"y":204,"pixelRatio":2},"marker-b2df8a-hover":{"width":34,"height":46,"x":272,"y":204,"pixelRatio":2},"marker-cab2d6":{"width":34,"height":46,"x":306,"y":204,"pixelRatio":2},"marker-cab2d6-hover":{"width":34,"height":46,"x":340,"y":204,"pixelRatio":2},"marker-e31a1c":{"width":34,"height":46,"x":374,"y":204,"pixelRatio":2},"marker-e31a1c-hover":{"width":34,"height":46,"x":408,"y":204,"pixelRatio":2},"marker-fb9a99":{"width":34,"height":46,"x":442,"y":204,"pixelRatio":2},"marker-fb9a99-hover":{"width":34,"height":46,"x":476,"y":204,"pixelRatio":2},"marker-fdbf6f":{"width":34,"height":46,"x":0,"y":250,"pixelRatio":2},"marker-fdbf6f-hover":{"width":34,"height":46,"x":34,"y":250,"pixelRatio":2},"marker-ff7f00":{"width":34,"height":46,"x":68,"y":250,"pixelRatio":2},"marker-ff7f00-hover":{"width":34,"height":46,"x":102,"y":250,"pixelRatio":2},"marker-ffff99":{"width":34,"height":46,"x":136,"y":250,"pixelRatio":2},"marker-ffff99-hover":{"width":34,"height":46,"x":170,"y":250,"pixelRatio":2},"marker-hover":{"width":34,"height":46,"x":204,"y":250,"pixelRatio":2},"br-federal-3":{"width":52,"height":44,"x":238,"y":250,"pixelRatio":2},"in-national-2":{"width":32,"height":44,"x":290,"y":250,"pixelRatio":2},"in-national-3":{"width":40,"height":44,"x":322,"y":250,"pixelRatio":2},"in-national-4":{"width":48,"height":44,"x":362,"y":250,"pixelRatio":2},"in-state-2":{"width":32,"height":44,"x":410,"y":250,"pixelRatio":2},"in-state-3":{"width":40,"height":44,"x":442,"y":250,"pixelRatio":2},"mx-federal-2":{"width":36,"height":44,"x":0,"y":296,"pixelRatio":2},"mx-federal-3":{"width":46,"height":44,"x":36,"y":296,"pixelRatio":2},"mx-federal-4":{"width":56,"height":44,"x":82,"y":296,"pixelRatio":2},"mx-state-2":{"width":36,"height":44,"x":138,"y":296,"pixelRatio":2},"mx-state-3":{"width":46,"height":44,"x":174,"y":296,"pixelRatio":2},"mx-state-4":{"width":56,"height":44,"x":220,"y":296,"pixelRatio":2},"pe-regional-3":{"width":46,"height":44,"x":276,"y":296,"pixelRatio":2},"ro-communal-4":{"width":56,"height":44,"x":322,"y":296,"pixelRatio":2},"ro-communal-5":{"width":46,"height":44,"x":378,"y":296,"pixelRatio":2},"ro-communal-6":{"width":68,"height":44,"x":424,"y":296,"pixelRatio":2},"us-interstate-2":{"width":40,"height":44,"x":0,"y":340,"pixelRatio":2},"us-interstate-3":{"width":52,"height":44,"x":40,"y":340,"pixelRatio":2},"us-interstate-duplex-4":{"width":64,"height":44,"x":92,"y":340,"pixelRatio":2},"us-interstate-duplex-5":{"width":76,"height":44,"x":156,"y":340,"pixelRatio":2},"airfield-15":{"width":42,"height":42,"x":232,"y":340,"pixelRatio":2},"airport-15":{"width":42,"height":42,"x":274,"y":340,"pixelRatio":2},"alcohol-shop-15":{"width":42,"height":42,"x":316,"y":340,"pixelRatio":2},"amusement-park-15":{"width":42,"height":42,"x":358,"y":340,"pixelRatio":2},"aquarium-15":{"width":42,"height":42,"x":400,"y":340,"pixelRatio":2},"art-gallery-15":{"width":42,"height":42,"x":442,"y":340,"pixelRatio":2},"attraction-15":{"width":42,"height":42,"x":0,"y":384,"pixelRatio":2},"bakery-15":{"width":42,"height":42,"x":42,"y":384,"pixelRatio":2},"bank-15":{"width":42,"height":42,"x":84,"y":384,"pixelRatio":2},"bar-15":{"width":42,"height":42,"x":126,"y":384,"pixelRatio":2},"beer-15":{"width":42,"height":42,"x":168,"y":384,"pixelRatio":2},"bicycle-15":{"width":42,"height":42,"x":210,"y":384,"pixelRatio":2},"bicycle-share-15":{"width":42,"height":42,"x":252,"y":384,"pixelRatio":2},"bus-15":{"width":42,"height":42,"x":294,"y":384,"pixelRatio":2},"cafe-15":{"width":42,"height":42,"x":336,"y":384,"pixelRatio":2},"campsite-15":{"width":42,"height":42,"x":378,"y":384,"pixelRatio":2},"car-15":{"width":42,"height":42,"x":420,"y":384,"pixelRatio":2},"castle-15":{"width":42,"height":42,"x":462,"y":384,"pixelRatio":2},"cemetery-15":{"width":42,"height":42,"x":0,"y":426,"pixelRatio":2},"cinema-15":{"width":42,"height":42,"x":42,"y":426,"pixelRatio":2},"circle-15":{"width":42,"height":42,"x":84,"y":426,"pixelRatio":2},"circle-stroked-15":{"width":42,"height":42,"x":126,"y":426,"pixelRatio":2},"clothing-store-15":{"width":42,"height":42,"x":168,"y":426,"pixelRatio":2},"college-15":{"width":42,"height":42,"x":210,"y":426,"pixelRatio":2},"dentist-15":{"width":42,"height":42,"x":252,"y":426,"pixelRatio":2},"doctor-15":{"width":42,"height":42,"x":294,"y":426,"pixelRatio":2},"dog-park-15":{"width":42,"height":42,"x":336,"y":426,"pixelRatio":2},"drinking-water-15":{"width":42,"height":42,"x":378,"y":426,"pixelRatio":2},"embassy-15":{"width":42,"height":42,"x":420,"y":426,"pixelRatio":2},"entrance-15":{"width":42,"height":42,"x":462,"y":426,"pixelRatio":2},"fast-food-15":{"width":42,"height":42,"x":0,"y":468,"pixelRatio":2},"ferry-15":{"width":42,"height":42,"x":42,"y":468,"pixelRatio":2},"fire-station-15":{"width":42,"height":42,"x":84,"y":468,"pixelRatio":2},"fuel-15":{"width":42,"height":42,"x":126,"y":468,"pixelRatio":2},"garden-15":{"width":42,"height":42,"x":168,"y":468,"pixelRatio":2},"golf-15":{"width":42,"height":42,"x":210,"y":468,"pixelRatio":2},"grocery-15":{"width":42,"height":42,"x":252,"y":468,"pixelRatio":2},"harbor-15":{"width":42,"height":42,"x":294,"y":468,"pixelRatio":2},"heliport-15":{"width":42,"height":42,"x":336,"y":468,"pixelRatio":2},"hospital-15":{"width":42,"height":42,"x":378,"y":468,"pixelRatio":2},"ice-cream-15":{"width":42,"height":42,"x":420,"y":468,"pixelRatio":2},"information-15":{"width":42,"height":42,"x":462,"y":468,"pixelRatio":2},"laundry-15":{"width":42,"height":42,"x":504,"y":384,"pixelRatio":2},"library-15":{"width":42,"height":42,"x":546,"y":384,"pixelRatio":2},"lodging-15":{"width":42,"height":42,"x":588,"y":384,"pixelRatio":2},"monument-15":{"width":42,"height":42,"x":630,"y":384,"pixelRatio":2},"mountain-15":{"width":42,"height":42,"x":672,"y":384,"pixelRatio":2},"museum-15":{"width":42,"height":42,"x":714,"y":384,"pixelRatio":2},"music-15":{"width":42,"height":42,"x":756,"y":384,"pixelRatio":2},"park-15":{"width":42,"height":42,"x":798,"y":384,"pixelRatio":2},"pharmacy-15":{"width":42,"height":42,"x":840,"y":384,"pixelRatio":2},"picnic-site-15":{"width":42,"height":42,"x":882,"y":384,"pixelRatio":2},"place-of-worship-15":{"width":42,"height":42,"x":924,"y":384,"pixelRatio":2},"playground-15":{"width":42,"height":42,"x":966,"y":384,"pixelRatio":2},"police-15":{"width":42,"height":42,"x":504,"y":426,"pixelRatio":2},"post-15":{"width":42,"height":42,"x":546,"y":426,"pixelRatio":2},"prison-15":{"width":42,"height":42,"x":588,"y":426,"pixelRatio":2},"rail-15":{"width":42,"height":42,"x":630,"y":426,"pixelRatio":2},"rail-light-15":{"width":42,"height":42,"x":672,"y":426,"pixelRatio":2},"rail-metro-15":{"width":42,"height":42,"x":714,"y":426,"pixelRatio":2},"religious-christian-15":{"width":42,"height":42,"x":756,"y":426,"pixelRatio":2},"religious-jewish-15":{"width":42,"height":42,"x":798,"y":426,"pixelRatio":2},"religious-muslim-15":{"width":42,"height":42,"x":840,"y":426,"pixelRatio":2},"restaurant-15":{"width":42,"height":42,"x":882,"y":426,"pixelRatio":2},"rocket-15":{"width":42,"height":42,"x":924,"y":426,"pixelRatio":2},"school-15":{"width":42,"height":42,"x":966,"y":426,"pixelRatio":2},"shop-15":{"width":42,"height":42,"x":504,"y":468,"pixelRatio":2},"stadium-15":{"width":42,"height":42,"x":546,"y":468,"pixelRatio":2},"star-15":{"width":42,"height":42,"x":588,"y":468,"pixelRatio":2},"suitcase-15":{"width":42,"height":42,"x":630,"y":468,"pixelRatio":2},"swimming-15":{"width":42,"height":42,"x":672,"y":468,"pixelRatio":2},"theatre-15":{"width":42,"height":42,"x":714,"y":468,"pixelRatio":2},"toilet-15":{"width":42,"height":42,"x":756,"y":468,"pixelRatio":2},"town-hall-15":{"width":42,"height":42,"x":798,"y":468,"pixelRatio":2},"triangle-15":{"width":42,"height":42,"x":840,"y":468,"pixelRatio":2},"triangle-stroked-15":{"width":42,"height":42,"x":882,"y":468,"pixelRatio":2},"veterinary-15":{"width":42,"height":42,"x":924,"y":468,"pixelRatio":2},"volcano-15":{"width":42,"height":42,"x":966,"y":468,"pixelRatio":2},"zoo-15":{"width":42,"height":42,"x":492,"y":296,"pixelRatio":2},"br-state-2":{"width":40,"height":40,"x":534,"y":296,"pixelRatio":2},"br-state-3":{"width":56,"height":40,"x":574,"y":296,"pixelRatio":2},"hu-main-2":{"width":40,"height":40,"x":630,"y":296,"pixelRatio":2},"hu-main-3":{"width":52,"height":40,"x":670,"y":296,"pixelRatio":2},"hu-main-4":{"width":64,"height":40,"x":722,"y":296,"pixelRatio":2},"hu-main-5":{"width":76,"height":40,"x":786,"y":296,"pixelRatio":2},"hu-motorway-2":{"width":40,"height":40,"x":862,"y":296,"pixelRatio":2},"hu-motorway-3":{"width":52,"height":40,"x":902,"y":296,"pixelRatio":2},"nz-state-2":{"width":36,"height":40,"x":954,"y":296,"pixelRatio":2},"nz-state-3":{"width":46,"height":40,"x":484,"y":340,"pixelRatio":2},"ro-communal-2":{"width":40,"height":40,"x":530,"y":340,"pixelRatio":2},"ro-communal-3":{"width":52,"height":40,"x":570,"y":340,"pixelRatio":2},"ro-county-3":{"width":52,"height":40,"x":622,"y":340,"pixelRatio":2},"ro-county-4":{"width":64,"height":40,"x":674,"y":340,"pixelRatio":2},"ro-national-2":{"width":40,"height":40,"x":738,"y":340,"pixelRatio":2},"ro-national-3":{"width":52,"height":40,"x":778,"y":340,"pixelRatio":2},"us-highway-2":{"width":40,"height":40,"x":830,"y":340,"pixelRatio":2},"us-highway-3":{"width":52,"height":40,"x":870,"y":340,"pixelRatio":2},"us-highway-4":{"width":64,"height":40,"x":922,"y":340,"pixelRatio":2},"us-highway-duplex-3":{"width":52,"height":40,"x":510,"y":204,"pixelRatio":2},"us-highway-duplex-4":{"width":64,"height":40,"x":562,"y":204,"pixelRatio":2},"us-highway-duplex-5":{"width":76,"height":40,"x":626,"y":204,"pixelRatio":2},"us-interstate-business-2":{"width":40,"height":40,"x":702,"y":204,"pixelRatio":2},"us-interstate-business-3":{"width":52,"height":40,"x":742,"y":204,"pixelRatio":2},"us-state-2":{"width":40,"height":40,"x":794,"y":204,"pixelRatio":2},"us-state-3":{"width":52,"height":40,"x":834,"y":204,"pixelRatio":2},"us-state-4":{"width":64,"height":40,"x":886,"y":204,"pixelRatio":2},"za-national-2":{"width":40,"height":40,"x":950,"y":204,"pixelRatio":2},"barcelona-metro":{"width":38,"height":38,"x":986,"y":340,"pixelRatio":2},"boston-t":{"width":38,"height":38,"x":482,"y":250,"pixelRatio":2},"de-s-bahn":{"width":38,"height":38,"x":520,"y":250,"pixelRatio":2},"de-s-bahn.de-u-bahn":{"width":70,"height":38,"x":558,"y":250,"pixelRatio":2},"delhi-metro":{"width":38,"height":38,"x":628,"y":250,"pixelRatio":2},"kiev-metro":{"width":38,"height":38,"x":666,"y":250,"pixelRatio":2},"madrid-metro":{"width":38,"height":38,"x":704,"y":250,"pixelRatio":2},"new-york-subway":{"width":38,"height":38,"x":742,"y":250,"pixelRatio":2},"oslo-metro":{"width":38,"height":38,"x":780,"y":250,"pixelRatio":2},"paris-metro":{"width":38,"height":38,"x":818,"y":250,"pixelRatio":2},"paris-metro.paris-rer":{"width":74,"height":38,"x":856,"y":250,"pixelRatio":2},"paris-rer":{"width":38,"height":38,"x":930,"y":250,"pixelRatio":2},"paris-rer.paris-transilien":{"width":70,"height":38,"x":496,"y":128,"pixelRatio":2},"stockholm-metro":{"width":38,"height":38,"x":968,"y":250,"pixelRatio":2},"taipei-metro":{"width":38,"height":38,"x":566,"y":128,"pixelRatio":2},"vienna-u-bahn":{"width":38,"height":38,"x":604,"y":128,"pixelRatio":2},"airfield-11":{"width":34,"height":34,"x":990,"y":296,"pixelRatio":2},"airport-11":{"width":34,"height":34,"x":990,"y":204,"pixelRatio":2},"alcohol-shop-11":{"width":34,"height":34,"x":642,"y":128,"pixelRatio":2},"amusement-park-11":{"width":34,"height":34,"x":676,"y":128,"pixelRatio":2},"aquarium-11":{"width":34,"height":34,"x":710,"y":128,"pixelRatio":2},"art-gallery-11":{"width":34,"height":34,"x":744,"y":128,"pixelRatio":2},"attraction-11":{"width":34,"height":34,"x":778,"y":128,"pixelRatio":2},"bakery-11":{"width":34,"height":34,"x":812,"y":128,"pixelRatio":2},"bank-11":{"width":34,"height":34,"x":846,"y":128,"pixelRatio":2},"bar-11":{"width":34,"height":34,"x":880,"y":128,"pixelRatio":2},"beer-11":{"width":34,"height":34,"x":914,"y":128,"pixelRatio":2},"bicycle-11":{"width":34,"height":34,"x":948,"y":128,"pixelRatio":2},"bicycle-share-11":{"width":34,"height":34,"x":982,"y":128,"pixelRatio":2},"bus-11":{"width":34,"height":34,"x":492,"y":0,"pixelRatio":2},"cafe-11":{"width":34,"height":34,"x":526,"y":0,"pixelRatio":2},"campsite-11":{"width":34,"height":34,"x":560,"y":0,"pixelRatio":2},"car-11":{"width":34,"height":34,"x":594,"y":0,"pixelRatio":2},"castle-11":{"width":34,"height":34,"x":628,"y":0,"pixelRatio":2},"cemetery-11":{"width":34,"height":34,"x":662,"y":0,"pixelRatio":2},"chongqing-rail-transit":{"width":50,"height":34,"x":696,"y":0,"pixelRatio":2},"cinema-11":{"width":34,"height":34,"x":746,"y":0,"pixelRatio":2},"circle-11":{"width":34,"height":34,"x":780,"y":0,"pixelRatio":2},"circle-stroked-11":{"width":34,"height":34,"x":814,"y":0,"pixelRatio":2},"clothing-store-11":{"width":34,"height":34,"x":848,"y":0,"pixelRatio":2},"college-11":{"width":34,"height":34,"x":882,"y":0,"pixelRatio":2},"de-u-bahn":{"width":34,"height":34,"x":916,"y":0,"pixelRatio":2},"dentist-11":{"width":34,"height":34,"x":950,"y":0,"pixelRatio":2},"doctor-11":{"width":34,"height":34,"x":984,"y":0,"pixelRatio":2},"dog-park-11":{"width":34,"height":34,"x":0,"y":510,"pixelRatio":2},"drinking-water-11":{"width":34,"height":34,"x":34,"y":510,"pixelRatio":2},"embassy-11":{"width":34,"height":34,"x":68,"y":510,"pixelRatio":2},"entrance":{"width":34,"height":34,"x":102,"y":510,"pixelRatio":2},"entrance-11":{"width":34,"height":34,"x":136,"y":510,"pixelRatio":2},"fast-food-11":{"width":34,"height":34,"x":170,"y":510,"pixelRatio":2},"ferry-11":{"width":34,"height":34,"x":204,"y":510,"pixelRatio":2},"fire-station-11":{"width":34,"height":34,"x":238,"y":510,"pixelRatio":2},"fuel-11":{"width":34,"height":34,"x":272,"y":510,"pixelRatio":2},"garden-11":{"width":34,"height":34,"x":306,"y":510,"pixelRatio":2},"golf-11":{"width":34,"height":34,"x":340,"y":510,"pixelRatio":2},"grocery-11":{"width":34,"height":34,"x":374,"y":510,"pixelRatio":2},"harbor-11":{"width":34,"height":34,"x":408,"y":510,"pixelRatio":2},"heliport-11":{"width":34,"height":34,"x":442,"y":510,"pixelRatio":2},"hong-kong-mtr":{"width":38,"height":34,"x":476,"y":510,"pixelRatio":2},"hospital-11":{"width":34,"height":34,"x":514,"y":510,"pixelRatio":2},"ice-cream-11":{"width":34,"height":34,"x":548,"y":510,"pixelRatio":2},"information-11":{"width":34,"height":34,"x":582,"y":510,"pixelRatio":2},"laundry-11":{"width":34,"height":34,"x":616,"y":510,"pixelRatio":2},"library-11":{"width":34,"height":34,"x":650,"y":510,"pixelRatio":2},"lodging-11":{"width":34,"height":34,"x":684,"y":510,"pixelRatio":2},"mexico-city-metro":{"width":34,"height":34,"x":718,"y":510,"pixelRatio":2},"milan-metro":{"width":34,"height":34,"x":752,"y":510,"pixelRatio":2},"monument-11":{"width":34,"height":34,"x":786,"y":510,"pixelRatio":2},"moscow-metro":{"width":34,"height":34,"x":820,"y":510,"pixelRatio":2},"mountain-11":{"width":34,"height":34,"x":854,"y":510,"pixelRatio":2},"museum-11":{"width":34,"height":34,"x":888,"y":510,"pixelRatio":2},"music-11":{"width":34,"height":34,"x":922,"y":510,"pixelRatio":2},"osaka-subway":{"width":40,"height":34,"x":956,"y":510,"pixelRatio":2},"paris-transilien":{"width":34,"height":34,"x":0,"y":544,"pixelRatio":2},"park-11":{"width":34,"height":34,"x":34,"y":544,"pixelRatio":2},"pharmacy-11":{"width":34,"height":34,"x":68,"y":544,"pixelRatio":2},"philadelphia-septa":{"width":38,"height":34,"x":102,"y":544,"pixelRatio":2},"picnic-site-11":{"width":34,"height":34,"x":140,"y":544,"pixelRatio":2},"place-of-worship-11":{"width":34,"height":34,"x":174,"y":544,"pixelRatio":2},"playground-11":{"width":34,"height":34,"x":208,"y":544,"pixelRatio":2},"police-11":{"width":34,"height":34,"x":242,"y":544,"pixelRatio":2},"post-11":{"width":34,"height":34,"x":276,"y":544,"pixelRatio":2},"prison-11":{"width":34,"height":34,"x":310,"y":544,"pixelRatio":2},"rail":{"width":34,"height":34,"x":344,"y":544,"pixelRatio":2},"rail-11":{"width":34,"height":34,"x":378,"y":544,"pixelRatio":2},"rail-light":{"width":34,"height":34,"x":412,"y":544,"pixelRatio":2},"rail-light-11":{"width":34,"height":34,"x":446,"y":544,"pixelRatio":2},"rail-metro":{"width":34,"height":34,"x":480,"y":544,"pixelRatio":2},"rail-metro-11":{"width":34,"height":34,"x":514,"y":544,"pixelRatio":2},"religious-christian-11":{"width":34,"height":34,"x":548,"y":544,"pixelRatio":2},"religious-jewish-11":{"width":34,"height":34,"x":582,"y":544,"pixelRatio":2},"religious-muslim-11":{"width":34,"height":34,"x":616,"y":544,"pixelRatio":2},"restaurant-11":{"width":34,"height":34,"x":650,"y":544,"pixelRatio":2},"rocket-11":{"width":34,"height":34,"x":684,"y":544,"pixelRatio":2},"san-francisco-bart":{"width":34,"height":34,"x":718,"y":544,"pixelRatio":2},"school-11":{"width":34,"height":34,"x":752,"y":544,"pixelRatio":2},"shop-11":{"width":34,"height":34,"x":786,"y":544,"pixelRatio":2},"singapore-mrt":{"width":34,"height":34,"x":820,"y":544,"pixelRatio":2},"stadium-11":{"width":34,"height":34,"x":854,"y":544,"pixelRatio":2},"star-11":{"width":34,"height":34,"x":888,"y":544,"pixelRatio":2},"suitcase-11":{"width":34,"height":34,"x":922,"y":544,"pixelRatio":2},"swimming-11":{"width":34,"height":34,"x":956,"y":544,"pixelRatio":2},"theatre-11":{"width":34,"height":34,"x":990,"y":544,"pixelRatio":2},"toilet-11":{"width":34,"height":34,"x":0,"y":578,"pixelRatio":2},"tokyo-metro":{"width":34,"height":34,"x":34,"y":578,"pixelRatio":2},"town-hall-11":{"width":34,"height":34,"x":68,"y":578,"pixelRatio":2},"triangle-11":{"width":34,"height":34,"x":102,"y":578,"pixelRatio":2},"triangle-stroked-11":{"width":34,"height":34,"x":136,"y":578,"pixelRatio":2},"veterinary-11":{"width":34,"height":34,"x":170,"y":578,"pixelRatio":2},"volcano-11":{"width":34,"height":34,"x":204,"y":578,"pixelRatio":2},"washington-metro":{"width":34,"height":34,"x":238,"y":578,"pixelRatio":2},"zoo-11":{"width":34,"height":34,"x":272,"y":578,"pixelRatio":2},"ch-motorway-2":{"width":44,"height":32,"x":306,"y":578,"pixelRatio":2},"ch-motorway-3":{"width":56,"height":32,"x":350,"y":578,"pixelRatio":2},"ch-motorway-4":{"width":68,"height":32,"x":406,"y":578,"pixelRatio":2},"de-motorway-2":{"width":44,"height":32,"x":474,"y":578,"pixelRatio":2},"de-motorway-3":{"width":56,"height":32,"x":518,"y":578,"pixelRatio":2},"gb-national-rail.london-dlr":{"width":72,"height":32,"x":574,"y":578,"pixelRatio":2},"gb-national-rail.london-dlr.london-overground.london-tfl-rail.london-underground":{"width":186,"height":32,"x":646,"y":578,"pixelRatio":2},"gb-national-rail.london-dlr.london-overground.london-underground":{"width":148,"height":32,"x":832,"y":578,"pixelRatio":2},"gb-national-rail.london-dlr.london-underground":{"width":110,"height":32,"x":0,"y":612,"pixelRatio":2},"gb-national-rail.london-overground":{"width":72,"height":32,"x":110,"y":612,"pixelRatio":2},"gb-national-rail.london-overground.london-tfl-rail.london-underground":{"width":148,"height":32,"x":182,"y":612,"pixelRatio":2},"gb-national-rail.london-overground.london-underground":{"width":110,"height":32,"x":330,"y":612,"pixelRatio":2},"gb-national-rail.london-tfl-rail":{"width":72,"height":32,"x":440,"y":612,"pixelRatio":2},"gb-national-rail.london-tfl-rail.london-overground":{"width":110,"height":32,"x":512,"y":612,"pixelRatio":2},"gb-national-rail.london-tfl-rail.london-underground":{"width":110,"height":32,"x":622,"y":612,"pixelRatio":2},"gb-national-rail.london-underground":{"width":72,"height":32,"x":732,"y":612,"pixelRatio":2},"gr-motorway-2":{"width":44,"height":32,"x":804,"y":612,"pixelRatio":2},"gr-motorway-3":{"width":56,"height":32,"x":848,"y":612,"pixelRatio":2},"gr-motorway-4":{"width":68,"height":32,"x":904,"y":612,"pixelRatio":2},"hr-motorway-3":{"width":56,"height":32,"x":0,"y":644,"pixelRatio":2},"hr-motorway-4":{"width":68,"height":32,"x":56,"y":644,"pixelRatio":2},"london-dlr":{"width":40,"height":32,"x":972,"y":612,"pixelRatio":2},"london-dlr.london-tfl-rail":{"width":78,"height":32,"x":124,"y":644,"pixelRatio":2},"london-dlr.london-tfl-rail.london-underground":{"width":116,"height":32,"x":202,"y":644,"pixelRatio":2},"london-dlr.london-underground":{"width":78,"height":32,"x":318,"y":644,"pixelRatio":2},"london-overground":{"width":40,"height":32,"x":396,"y":644,"pixelRatio":2},"london-overground.london-tfl-rail":{"width":78,"height":32,"x":436,"y":644,"pixelRatio":2},"london-overground.london-tfl-rail.london-underground":{"width":116,"height":32,"x":514,"y":644,"pixelRatio":2},"london-overground.london-underground":{"width":78,"height":32,"x":630,"y":644,"pixelRatio":2},"london-tfl-rail":{"width":40,"height":32,"x":708,"y":644,"pixelRatio":2},"london-tfl-rail.london-underground":{"width":78,"height":32,"x":748,"y":644,"pixelRatio":2},"london-underground":{"width":40,"height":32,"x":826,"y":644,"pixelRatio":2},"si-motorway-2":{"width":44,"height":32,"x":866,"y":644,"pixelRatio":2},"wetland":{"width":32,"height":32,"x":910,"y":644,"pixelRatio":2},"at-expressway-2":{"width":40,"height":28,"x":942,"y":644,"pixelRatio":2},"at-expressway-3":{"width":52,"height":28,"x":0,"y":676,"pixelRatio":2},"at-motorway-2":{"width":40,"height":28,"x":52,"y":676,"pixelRatio":2},"at-motorway-3":{"width":52,"height":28,"x":92,"y":676,"pixelRatio":2},"at-state-b-2":{"width":40,"height":28,"x":144,"y":676,"pixelRatio":2},"at-state-b-3":{"width":52,"height":28,"x":184,"y":676,"pixelRatio":2},"bg-motorway-2":{"width":40,"height":28,"x":236,"y":676,"pixelRatio":2},"bg-national-2":{"width":40,"height":28,"x":276,"y":676,"pixelRatio":2},"ch-main-2":{"width":40,"height":28,"x":316,"y":676,"pixelRatio":2},"ch-main-3":{"width":52,"height":28,"x":356,"y":676,"pixelRatio":2},"cz-expressway-2":{"width":40,"height":28,"x":408,"y":676,"pixelRatio":2},"cz-expressway-3":{"width":52,"height":28,"x":448,"y":676,"pixelRatio":2},"cz-motorway-2":{"width":40,"height":28,"x":500,"y":676,"pixelRatio":2},"cz-road-2":{"width":40,"height":28,"x":540,"y":676,"pixelRatio":2},"cz-road-3":{"width":52,"height":28,"x":580,"y":676,"pixelRatio":2},"de-federal-2":{"width":40,"height":28,"x":632,"y":676,"pixelRatio":2},"de-federal-3":{"width":52,"height":28,"x":672,"y":676,"pixelRatio":2},"de-federal-4":{"width":64,"height":28,"x":724,"y":676,"pixelRatio":2},"default-2":{"width":40,"height":28,"x":788,"y":676,"pixelRatio":2},"default-3":{"width":52,"height":28,"x":828,"y":676,"pixelRatio":2},"default-4":{"width":64,"height":28,"x":880,"y":676,"pixelRatio":2},"default-5":{"width":76,"height":28,"x":944,"y":676,"pixelRatio":2},"default-6":{"width":88,"height":28,"x":0,"y":704,"pixelRatio":2},"dk-primary-2":{"width":40,"height":28,"x":88,"y":704,"pixelRatio":2},"dk-secondary-3":{"width":52,"height":28,"x":128,"y":704,"pixelRatio":2},"e-road-2":{"width":40,"height":28,"x":180,"y":704,"pixelRatio":2},"e-road-3":{"width":52,"height":28,"x":220,"y":704,"pixelRatio":2},"e-road-4":{"width":64,"height":28,"x":272,"y":704,"pixelRatio":2},"fi-main-2":{"width":40,"height":28,"x":336,"y":704,"pixelRatio":2},"fi-regional-3":{"width":52,"height":28,"x":376,"y":704,"pixelRatio":2},"fi-trunk-2":{"width":40,"height":28,"x":428,"y":704,"pixelRatio":2},"gb-national-rail":{"width":34,"height":28,"x":468,"y":704,"pixelRatio":2},"gr-national-2":{"width":40,"height":28,"x":502,"y":704,"pixelRatio":2},"gr-national-3":{"width":52,"height":28,"x":542,"y":704,"pixelRatio":2},"gr-national-4":{"width":64,"height":28,"x":594,"y":704,"pixelRatio":2},"hr-county-4":{"width":64,"height":28,"x":658,"y":704,"pixelRatio":2},"hr-state-2":{"width":40,"height":28,"x":722,"y":704,"pixelRatio":2},"hr-state-3":{"width":52,"height":28,"x":762,"y":704,"pixelRatio":2},"marker-15":{"width":12,"height":28,"x":814,"y":704,"pixelRatio":2},"motorway-exit-1":{"width":40,"height":28,"x":826,"y":704,"pixelRatio":2},"motorway-exit-2":{"width":40,"height":28,"x":866,"y":704,"pixelRatio":2},"motorway-exit-3":{"width":52,"height":28,"x":906,"y":704,"pixelRatio":2},"motorway-exit-4":{"width":64,"height":28,"x":958,"y":704,"pixelRatio":2},"motorway-exit-5":{"width":76,"height":28,"x":0,"y":732,"pixelRatio":2},"motorway-exit-6":{"width":88,"height":28,"x":76,"y":732,"pixelRatio":2},"motorway-exit-7":{"width":100,"height":28,"x":164,"y":732,"pixelRatio":2},"motorway-exit-8":{"width":112,"height":28,"x":264,"y":732,"pixelRatio":2},"pl-expressway-2":{"width":40,"height":28,"x":376,"y":732,"pixelRatio":2},"pl-expressway-3":{"width":52,"height":28,"x":416,"y":732,"pixelRatio":2},"pl-motorway-2":{"width":40,"height":28,"x":468,"y":732,"pixelRatio":2},"pl-motorway-3":{"width":52,"height":28,"x":508,"y":732,"pixelRatio":2},"pl-national-2":{"width":40,"height":28,"x":560,"y":732,"pixelRatio":2},"pl-voivodeship-3":{"width":52,"height":28,"x":600,"y":732,"pixelRatio":2},"ro-motorway-2":{"width":40,"height":28,"x":652,"y":732,"pixelRatio":2},"ro-motorway-3":{"width":52,"height":28,"x":692,"y":732,"pixelRatio":2},"rs-motorway-3":{"width":52,"height":28,"x":744,"y":732,"pixelRatio":2},"rs-state-1b-2":{"width":40,"height":28,"x":796,"y":732,"pixelRatio":2},"rs-state-2a-3":{"width":52,"height":28,"x":836,"y":732,"pixelRatio":2},"rs-state-2b-3":{"width":52,"height":28,"x":888,"y":732,"pixelRatio":2},"se-main-2":{"width":40,"height":28,"x":940,"y":732,"pixelRatio":2},"se-main-3":{"width":52,"height":28,"x":0,"y":760,"pixelRatio":2},"si-expressway-3":{"width":52,"height":28,"x":52,"y":760,"pixelRatio":2},"si-main-2":{"width":40,"height":28,"x":980,"y":732,"pixelRatio":2},"si-main-3":{"width":52,"height":28,"x":104,"y":760,"pixelRatio":2},"sk-highway-2":{"width":40,"height":28,"x":156,"y":760,"pixelRatio":2},"sk-road-2":{"width":40,"height":28,"x":196,"y":760,"pixelRatio":2},"sk-road-3":{"width":52,"height":28,"x":236,"y":760,"pixelRatio":2},"sk-road-4":{"width":64,"height":28,"x":288,"y":760,"pixelRatio":2},"sk-road-5":{"width":76,"height":28,"x":352,"y":760,"pixelRatio":2},"za-metropolitan-2":{"width":40,"height":28,"x":428,"y":760,"pixelRatio":2},"za-regional-3":{"width":52,"height":28,"x":468,"y":760,"pixelRatio":2},"dot-11":{"width":22,"height":22,"x":520,"y":760,"pixelRatio":2},"marker-11":{"width":12,"height":22,"x":542,"y":760,"pixelRatio":2},"dot-10":{"width":20,"height":20,"x":554,"y":760,"pixelRatio":2},"dot-9":{"width":18,"height":18,"x":574,"y":760,"pixelRatio":2},"cliff":{"width":16,"height":14,"x":592,"y":760,"pixelRatio":2},"oneway-large":{"width":28,"height":12,"x":608,"y":760,"pixelRatio":2},"oneway-white-large":{"width":28,"height":12,"x":636,"y":760,"pixelRatio":2},"oneway-small":{"width":22,"height":10,"x":664,"y":760,"pixelRatio":2},"oneway-white-small":{"width":22,"height":10,"x":686,"y":760,"pixelRatio":2}} \ No newline at end of file diff --git a/example/map_style/sprites/sprite@2x.png b/example/map_style/sprites/sprite@2x.png new file mode 100644 index 0000000..3fadeb9 Binary files /dev/null and b/example/map_style/sprites/sprite@2x.png differ diff --git a/example/map_style/style.json b/example/map_style/style.json new file mode 100644 index 0000000..a7e38c2 --- /dev/null +++ b/example/map_style/style.json @@ -0,0 +1,12435 @@ +{ + "version": 8, + "name": "MapFilter Default", + "metadata": { + "mapbox:autocomposite": true, + "mapbox:type": "default", + "mapbox:groups": { + "1444934828655.3389": { + "name": "Aeroways", + "collapsed": true + }, + "1444933322393.2852": { + "name": "POI labels (scalerank 1)", + "collapsed": true + }, + "1444855898284.2651": { + "name": "Aeroways", + "collapsed": true + }, + "1444862578782.6787": { + "name": "Road labels", + "collapsed": true + }, + "1444934749452.0452": { + "name": "Wetlands", + "collapsed": true + }, + "1444862074717.8372": { + "name": "Waterways", + "collapsed": true + }, + "1444855786460.0557": { + "name": "Roads", + "collapsed": true + }, + "1444856968392.4368": { + "name": "Contour lines", + "collapsed": true + }, + "1444856071629.7817": { + "name": "Place labels", + "collapsed": true + }, + "1444933575858.6992": { + "name": "Highway shields", + "collapsed": false + }, + "1444934295202.7542": { + "name": "Admin boundaries", + "collapsed": true + }, + "1444856904773.373": { + "name": "Land barriers", + "collapsed": true + }, + "1444856931506.5164": { + "name": "Barriers", + "collapsed": true + }, + "1444856151690.9143": { + "name": "State labels", + "collapsed": true + }, + "1444933721429.3076": { + "name": "Road labels", + "collapsed": true + }, + "1444933358918.2366": { + "name": "POI labels (scalerank 2)", + "collapsed": true + }, + "1444933808272.805": { + "name": "Water labels", + "collapsed": true + }, + "1444855815295.714": { + "name": "Hillshading", + "collapsed": true + }, + "1444855831248.8289": { + "name": "Landcover", + "collapsed": true + }, + "1444933372896.5967": { + "name": "POI labels (scalerank 3)", + "collapsed": true + }, + "1444855799204.86": { + "name": "Bridges", + "collapsed": true + }, + "1444856087950.3635": { + "name": "Marine labels", + "collapsed": true + }, + "1444856869758.2375": { + "name": "Wetlands", + "collapsed": true + }, + "1444862510685.128": { + "name": "City labels", + "collapsed": true + }, + "1444856954425.4016": { + "name": "Buildings", + "collapsed": true + }, + "1444855769305.6016": { + "name": "Tunnels", + "collapsed": true + }, + "1456970288113.8113": { + "name": "Streets landcover", + "collapsed": true + }, + "1444856144497.7825": { + "name": "Country labels", + "collapsed": true + }, + "1444856712129.5933": { + "name": "Waterways", + "collapsed": true + }, + "1444933456003.5437": { + "name": "POI labels (scalerank 4)", + "collapsed": true + }, + "1444933837268.9458": { + "name": "Contour lines", + "collapsed": true + } + }, + "mapbox:trackposition": true + }, + "center": [ + -69.39131568437908, + 12.490918318266992 + ], + "zoom": 3.6585937829626753, + "bearing": 0, + "pitch": 0, + "sources": { + "composite": { + "url": "mapbox://mapbox.mapbox-terrain-v2,mapbox.mapbox-streets-v7", + "type": "vector" + } + }, + "sprite": "mapfilter://sprites/sprite", + "glyphs": "mapfilter://fonts/{range}.pbf?stack={fontstack}", + "layers": [ + { + "id": "background", + "type": "background", + "layout": {}, + "paint": { + "background-color": { + "base": 1, + "stops": [ + [ + 11, + "hsl(35, 32%, 91%)" + ], + [ + 13, + "hsl(35, 12%, 89%)" + ] + ] + } + } + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855831248.8289" + }, + "maxzoom": 12, + "filter": [ + "==", + "class", + "crop" + ], + "type": "fill", + "source": "composite", + "id": "landcover_crop", + "paint": { + "fill-color": "hsl(75, 62%, 81%)", + "fill-opacity": { + "base": 1.5, + "stops": [ + [ + 2, + 0.3 + ], + [ + 12, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "landcover" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855831248.8289" + }, + "maxzoom": 12, + "filter": [ + "==", + "class", + "grass" + ], + "type": "fill", + "source": "composite", + "id": "landcover_grass", + "paint": { + "fill-color": "hsl(75, 62%, 81%)", + "fill-opacity": { + "base": 1.5, + "stops": [ + [ + 2, + 0.3 + ], + [ + 12, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "landcover" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855831248.8289" + }, + "maxzoom": 12, + "filter": [ + "==", + "class", + "scrub" + ], + "type": "fill", + "source": "composite", + "id": "landcover_scrub", + "paint": { + "fill-color": "hsl(75, 62%, 81%)", + "fill-opacity": { + "base": 1.5, + "stops": [ + [ + 2, + 0.3 + ], + [ + 12, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "landcover" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855831248.8289" + }, + "maxzoom": 12, + "filter": [ + "==", + "class", + "wood" + ], + "type": "fill", + "source": "composite", + "id": "landcover_wood", + "paint": { + "fill-color": "hsl(75, 62%, 81%)", + "fill-opacity": { + "base": 1.5, + "stops": [ + [ + 2, + 0.3 + ], + [ + 12, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "landcover" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855831248.8289" + }, + "filter": [ + "==", + "class", + "snow" + ], + "type": "fill", + "source": "composite", + "id": "landcover_snow", + "paint": { + "fill-color": "hsl(0, 0%, 100%)", + "fill-opacity": 0.2, + "fill-antialias": false + }, + "source-layer": "landcover" + }, + { + "layout": {}, + "filter": [ + "==", + "class", + "national_park" + ], + "type": "fill", + "source": "composite", + "id": "national_park", + "paint": { + "fill-color": "hsl(100, 59%, 76%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 5, + 0 + ], + [ + 5.5, + 0.75 + ], + [ + 9, + 0.75 + ], + [ + 10, + 0.35 + ] + ] + } + }, + "source-layer": "landuse_overlay" + }, + { + "minzoom": 9, + "layout": {}, + "filter": [ + "==", + "class", + "scrub" + ], + "type": "fill", + "source": "composite", + "id": "scrub", + "paint": { + "fill-color": "hsl(75, 41%, 74%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 9, + 0 + ], + [ + 15, + 0.2 + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "minzoom": 9, + "layout": {}, + "filter": [ + "==", + "class", + "grass" + ], + "type": "fill", + "source": "composite", + "id": "grass", + "paint": { + "fill-color": "hsl(75, 41%, 74%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 9, + 0 + ], + [ + 15, + 0.4 + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "minzoom": 6, + "layout": {}, + "filter": [ + "==", + "class", + "wood" + ], + "type": "fill", + "source": "composite", + "id": "wood", + "paint": { + "fill-color": "hsl(75, 41%, 74%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 7, + 0 + ], + [ + 15, + 0.5 + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "minzoom": 11, + "layout": {}, + "filter": [ + "==", + "class", + "agriculture" + ], + "type": "fill", + "source": "composite", + "id": "agriculture", + "paint": { + "fill-opacity": { + "base": 1, + "stops": [ + [ + 11, + 0 + ], + [ + 14, + 0.75 + ] + ] + }, + "fill-color": "hsl(75, 37%, 81%)", + "fill-outline-color": "hsl(75, 32%, 68%)" + }, + "source-layer": "landuse" + }, + { + "minzoom": 9, + "layout": { + "line-cap": "round" + }, + "filter": [ + "==", + "class", + "national_park" + ], + "type": "line", + "source": "composite", + "id": "national_park-tint-band", + "paint": { + "line-color": "hsl(100, 62%, 74%)", + "line-width": { + "base": 1.4, + "stops": [ + [ + 9, + 1 + ], + [ + 14, + 8 + ] + ] + }, + "line-offset": { + "base": 1.4, + "stops": [ + [ + 9, + 0 + ], + [ + 14, + -2.5 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 9, + 0 + ], + [ + 10, + 0.75 + ] + ] + }, + "line-blur": 3 + }, + "source-layer": "landuse_overlay" + }, + { + "minzoom": 9, + "layout": {}, + "filter": [ + "==", + "class", + "national_park" + ], + "type": "line", + "source": "composite", + "id": "national_park-outline", + "paint": { + "line-color": { + "base": 1, + "stops": [ + [ + 12, + "hsl(100, 49%, 71%)" + ], + [ + 14, + "hsl(100, 40%, 67%)" + ] + ] + }, + "line-width": { + "base": 1, + "stops": [ + [ + 9, + 0.75 + ], + [ + 12, + 1 + ] + ] + }, + "line-offset": 0, + "line-opacity": { + "base": 1, + "stops": [ + [ + 9, + 0 + ], + [ + 10, + 1 + ] + ] + } + }, + "source-layer": "landuse_overlay" + }, + { + "layout": {}, + "filter": [ + "==", + "class", + "hospital" + ], + "type": "fill", + "source": "composite", + "id": "hospital", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 15.5, + "hsl(340, 37%, 87%)" + ], + [ + 16, + "hsl(340, 63%, 89%)" + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "layout": {}, + "filter": [ + "==", + "class", + "school" + ], + "type": "fill", + "source": "composite", + "id": "school", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 15.5, + "hsl(50, 47%, 81%)" + ], + [ + 16, + "hsl(50, 63%, 84%)" + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "layout": {}, + "filter": [ + "all", + [ + "!in", + "type", + "garden", + "golf_course", + "playground", + "zoo" + ], + [ + "==", + "class", + "park" + ] + ], + "type": "fill", + "source": "composite", + "id": "park", + "paint": { + "fill-color": "hsl(100, 59%, 76%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 5, + 0 + ], + [ + 6, + 1 + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "layout": {}, + "filter": [ + "all", + [ + "==", + "class", + "park" + ], + [ + "in", + "type", + "garden", + "golf_course", + "playground", + "zoo" + ] + ], + "type": "fill", + "source": "composite", + "id": "other-green-areas", + "paint": { + "fill-color": "hsl(100, 59%, 81%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 5, + 0 + ], + [ + 6, + 1 + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "minzoom": 9, + "layout": {}, + "filter": [ + "==", + "class", + "glacier" + ], + "type": "fill", + "source": "composite", + "id": "glacier", + "paint": { + "fill-color": "hsl(196, 71%, 93%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 9, + 0 + ], + [ + 10, + 0.5 + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "layout": {}, + "filter": [ + "==", + "class", + "pitch" + ], + "type": "fill", + "source": "composite", + "id": "pitch", + "paint": { + "fill-color": "hsl(100, 57%, 72%)" + }, + "source-layer": "landuse" + }, + { + "minzoom": 15, + "layout": { + "line-join": "miter" + }, + "filter": [ + "==", + "class", + "pitch" + ], + "type": "line", + "source": "composite", + "id": "pitch-line", + "paint": { + "line-color": "hsl(75, 57%, 84%)" + }, + "source-layer": "landuse" + }, + { + "layout": {}, + "filter": [ + "==", + "class", + "cemetery" + ], + "type": "fill", + "source": "composite", + "id": "cemetery", + "paint": { + "fill-color": "hsl(75, 37%, 81%)" + }, + "source-layer": "landuse" + }, + { + "layout": {}, + "filter": [ + "==", + "class", + "industrial" + ], + "type": "fill", + "source": "composite", + "id": "industrial", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 15.5, + "hsl(230, 15%, 86%)" + ], + [ + 16, + "hsl(230, 29%, 89%)" + ] + ] + } + }, + "source-layer": "landuse" + }, + { + "layout": {}, + "filter": [ + "==", + "class", + "sand" + ], + "type": "fill", + "source": "composite", + "id": "sand", + "paint": { + "fill-color": "hsl(60, 46%, 87%)" + }, + "source-layer": "landuse" + }, + { + "minzoom": 11, + "layout": {}, + "metadata": { + "mapbox:group": "1444933837268.9458" + }, + "filter": [ + "!in", + "index", + 10, + 5 + ], + "type": "line", + "source": "composite", + "id": "contour-line", + "paint": { + "line-opacity": { + "base": 1, + "stops": [ + [ + 11, + 0.15 + ], + [ + 12, + 0.3 + ] + ] + }, + "line-color": "hsl(100, 100%, 20%)", + "line-width": { + "base": 1, + "stops": [ + [ + 13, + 0.5 + ], + [ + 16, + 0.8 + ] + ] + }, + "line-offset": { + "base": 1, + "stops": [ + [ + 13, + 1 + ], + [ + 16, + 1.6 + ] + ] + } + }, + "source-layer": "contour" + }, + { + "minzoom": 11, + "layout": {}, + "metadata": { + "mapbox:group": "1444933837268.9458" + }, + "filter": [ + "in", + "index", + 10, + 5 + ], + "type": "line", + "source": "composite", + "id": "contour-line-index", + "paint": { + "line-opacity": { + "base": 1, + "stops": [ + [ + 11, + 0.25 + ], + [ + 12, + 0.5 + ] + ] + }, + "line-color": "hsl(100, 100%, 20%)", + "line-width": { + "base": 1, + "stops": [ + [ + 13, + 0.6 + ], + [ + 16, + 1.2 + ] + ] + }, + "line-offset": { + "base": 1, + "stops": [ + [ + 13, + 0.6 + ], + [ + 16, + 1.2 + ] + ] + } + }, + "source-layer": "contour" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855815295.714" + }, + "maxzoom": 18, + "filter": [ + "==", + "level", + 94 + ], + "type": "fill", + "source": "composite", + "id": "hillshade_highlight_bright", + "paint": { + "fill-color": "hsl(0, 0%, 100%)", + "fill-opacity": { + "stops": [ + [ + 15, + 0.15 + ], + [ + 18, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "hillshade" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855815295.714" + }, + "filter": [ + "==", + "level", + 90 + ], + "type": "fill", + "source": "composite", + "id": "hillshade_highlight_med", + "paint": { + "fill-color": "hsl(0, 0%, 100%)", + "fill-opacity": { + "stops": [ + [ + 15, + 0.15 + ], + [ + 18, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "hillshade" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855815295.714" + }, + "maxzoom": 17, + "filter": [ + "==", + "level", + 89 + ], + "type": "fill", + "source": "composite", + "id": "hillshade_shadow_faint", + "paint": { + "fill-color": "hsl(56, 59%, 22%)", + "fill-opacity": { + "stops": [ + [ + 15, + 0.07 + ], + [ + 17, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "hillshade" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855815295.714" + }, + "filter": [ + "==", + "level", + 78 + ], + "type": "fill", + "source": "composite", + "id": "hillshade_shadow_med", + "paint": { + "fill-color": "hsl(56, 59%, 22%)", + "fill-opacity": { + "stops": [ + [ + 15, + 0.07 + ], + [ + 17, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "hillshade" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855815295.714" + }, + "filter": [ + "==", + "level", + 67 + ], + "type": "fill", + "source": "composite", + "id": "hillshade_shadow_dark", + "paint": { + "fill-color": "hsl(56, 59%, 22%)", + "fill-opacity": { + "stops": [ + [ + 15, + 0.08 + ], + [ + 17, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "hillshade" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444855815295.714" + }, + "maxzoom": 17, + "filter": [ + "==", + "level", + 56 + ], + "type": "fill", + "source": "composite", + "id": "hillshade_shadow_extreme", + "paint": { + "fill-color": "hsl(56, 59%, 22%)", + "fill-opacity": { + "stops": [ + [ + 15, + 0.08 + ], + [ + 17, + 0 + ] + ] + }, + "fill-antialias": false + }, + "source-layer": "hillshade" + }, + { + "minzoom": 8, + "layout": { + "line-cap": { + "base": 1, + "stops": [ + [ + 0, + "butt" + ], + [ + 11, + "round" + ] + ] + }, + "line-join": "round" + }, + "filter": [ + "in", + "class", + "canal", + "river" + ], + "type": "line", + "source": "composite", + "id": "waterway-river-canal-shadow", + "paint": { + "line-color": "hsl(215, 84%, 69%)", + "line-width": { + "base": 1.3, + "stops": [ + [ + 8.5, + 0.4 + ], + [ + 20, + 8 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 8, + 0 + ], + [ + 8.5, + 1 + ] + ] + }, + "line-translate": { + "base": 1.2, + "stops": [ + [ + 7, + [ + 0, + 0 + ] + ], + [ + 16, + [ + -1, + -1 + ] + ] + ] + }, + "line-translate-anchor": "viewport" + }, + "source-layer": "waterway" + }, + { + "id": "waterway-river-canal", + "paint": { + "line-color": "hsl(205, 87%, 76%)", + "line-width": { + "base": 1.3, + "stops": [ + [ + 8.5, + 0.4 + ], + [ + 20, + 8 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 8, + 0 + ], + [ + 8.5, + 1 + ] + ] + } + }, + "ref": "waterway-river-canal-shadow" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "filter": [ + "!in", + "class", + "canal", + "river" + ], + "type": "line", + "source": "composite", + "id": "waterway-small", + "paint": { + "line-color": "hsl(205, 87%, 76%)", + "line-width": { + "base": 1.35, + "stops": [ + [ + 13.5, + 0.4 + ], + [ + 20, + 3 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.5, + 1 + ] + ] + } + }, + "source-layer": "waterway" + }, + { + "id": "water-shadow", + "type": "fill", + "source": "composite", + "source-layer": "water", + "layout": {}, + "paint": { + "fill-color": "hsl(215, 84%, 69%)", + "fill-translate": { + "base": 1.2, + "stops": [ + [ + 7, + [ + 0, + 0 + ] + ], + [ + 16, + [ + -1, + -1 + ] + ] + ] + }, + "fill-translate-anchor": "viewport", + "fill-opacity": 1 + } + }, + { + "id": "water", + "paint": { + "fill-color": "hsl(196, 80%, 70%)" + }, + "ref": "water-shadow" + }, + { + "layout": {}, + "metadata": { + "mapbox:group": "1444934749452.0452" + }, + "filter": [ + "in", + "class", + "wetland", + "wetland_noveg" + ], + "type": "fill", + "source": "composite", + "id": "wetlands", + "paint": { + "fill-color": "hsl(185, 43%, 74%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 10, + 0.25 + ], + [ + 10.5, + 0.15 + ] + ] + } + }, + "source-layer": "landuse_overlay" + }, + { + "metadata": { + "mapbox:group": "1444934749452.0452" + }, + "id": "wetlands-pattern", + "paint": { + "fill-color": "hsl(185, 43%, 74%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 10, + 0 + ], + [ + 10.5, + 1 + ] + ] + }, + "fill-pattern": "wetland", + "fill-translate-anchor": "viewport" + }, + "ref": "wetlands" + }, + { + "layout": {}, + "filter": [ + "all", + [ + "==", + "$type", + "Polygon" + ], + [ + "==", + "class", + "land" + ] + ], + "type": "fill", + "source": "composite", + "id": "barrier_line-land-polygon", + "paint": { + "fill-color": "hsl(35, 12%, 89%)" + }, + "source-layer": "barrier_line" + }, + { + "layout": { + "line-cap": "round" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "class", + "land" + ] + ], + "type": "line", + "source": "composite", + "id": "barrier_line-land-line", + "paint": { + "line-width": { + "base": 1.99, + "stops": [ + [ + 14, + 0.75 + ], + [ + 20, + 40 + ] + ] + }, + "line-color": "hsl(35, 12%, 89%)" + }, + "source-layer": "barrier_line" + }, + { + "minzoom": 11, + "layout": {}, + "metadata": { + "mapbox:group": "1444934828655.3389" + }, + "filter": [ + "all", + [ + "!=", + "type", + "apron" + ], + [ + "==", + "$type", + "Polygon" + ] + ], + "type": "fill", + "source": "composite", + "id": "aeroway-polygon", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 15, + "hsl(230, 23%, 82%)" + ], + [ + 16, + "hsl(230, 37%, 84%)" + ] + ] + }, + "fill-opacity": { + "base": 1, + "stops": [ + [ + 11, + 0 + ], + [ + 11.5, + 1 + ] + ] + } + }, + "source-layer": "aeroway" + }, + { + "minzoom": 9, + "layout": {}, + "metadata": { + "mapbox:group": "1444934828655.3389" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "runway" + ] + ], + "type": "line", + "source": "composite", + "id": "aeroway-runway", + "paint": { + "line-color": { + "base": 1, + "stops": [ + [ + 15, + "hsl(230, 23%, 82%)" + ], + [ + 16, + "hsl(230, 37%, 84%)" + ] + ] + }, + "line-width": { + "base": 1.5, + "stops": [ + [ + 9, + 1 + ], + [ + 18, + 80 + ] + ] + } + }, + "source-layer": "aeroway" + }, + { + "minzoom": 9, + "layout": {}, + "metadata": { + "mapbox:group": "1444934828655.3389" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "taxiway" + ] + ], + "type": "line", + "source": "composite", + "id": "aeroway-taxiway", + "paint": { + "line-color": { + "base": 1, + "stops": [ + [ + 15, + "hsl(230, 23%, 82%)" + ], + [ + 16, + "hsl(230, 37%, 84%)" + ] + ] + }, + "line-width": { + "base": 1.5, + "stops": [ + [ + 10, + 0.5 + ], + [ + 18, + 20 + ] + ] + } + }, + "source-layer": "aeroway" + }, + { + "minzoom": 15, + "layout": {}, + "filter": [ + "==", + "underground", + "false" + ], + "type": "line", + "source": "composite", + "id": "building-line", + "paint": { + "line-color": "hsl(230, 24%, 87%)", + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 0.75 + ], + [ + 20, + 3 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 1 + ] + ] + } + }, + "source-layer": "building" + }, + { + "minzoom": 15, + "layout": {}, + "filter": [ + "==", + "underground", + "false" + ], + "type": "fill", + "source": "composite", + "id": "building", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 15, + "hsl(35, 11%, 88%)" + ], + [ + 16, + "hsl(35, 8%, 85%)" + ] + ] + }, + "fill-opacity": { + "base": 1, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 1 + ] + ] + }, + "fill-outline-color": "hsl(35, 6%, 79%)" + }, + "source-layer": "building" + }, + { + "minzoom": 11, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "street" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-street-low", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "stops": [ + [ + 11.5, + 0 + ], + [ + 12, + 1 + ], + [ + 14, + 1 + ], + [ + 14.01, + 0 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "street_limited" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-street_limited-low", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "stops": [ + [ + 11.5, + 0 + ], + [ + 12, + 1 + ], + [ + 14, + 1 + ], + [ + 14.01, + 0 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "track" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-track-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(50, 100%, 40%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 12 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ] + }, + "source-layer": "road" + }, + { + "minzoom": 14, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "link", + "service" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-service-link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 19%, 75%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ] + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-street_limited-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 19%, 75%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ], + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "tunnel-street_limited-low" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-street-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 19%, 75%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ], + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "tunnel-street-low" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-secondary-tertiary-case", + "paint": { + "line-width": { + "base": 1.2, + "stops": [ + [ + 10, + 0.75 + ], + [ + 18, + 2 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ], + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 8.5, + 0.5 + ], + [ + 10, + 0.75 + ], + [ + 18, + 26 + ] + ] + }, + "line-color": "hsl(230, 19%, 75%)" + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "primary" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-primary-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 16, + 2 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ], + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(230, 19%, 75%)" + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "==", + "type", + "trunk_link" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-trunk_link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ] + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-motorway_link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-dasharray": [ + 3, + 3 + ] + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "==", + "type", + "trunk" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-trunk-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-opacity": 1, + "line-dasharray": [ + 3, + 3 + ] + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-motorway-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-opacity": 1, + "line-dasharray": [ + 3, + 3 + ] + }, + "source-layer": "road" + }, + { + "minzoom": 14, + "layout": { + "line-join": "miter" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "construction" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-construction", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + }, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 0.4, + 0.8 + ] + ], + [ + 15, + [ + 0.3, + 0.6 + ] + ], + [ + 16, + [ + 0.2, + 0.3 + ] + ], + [ + 17, + [ + 0.2, + 0.25 + ] + ], + [ + 18, + [ + 0.15, + 0.15 + ] + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "!in", + "type", + "cycleway", + "piste", + "steps" + ], + [ + "==", + "class", + "path" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-path", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 3, + 0.4 + ] + ], + [ + 16, + [ + 3, + 0.35 + ] + ], + [ + 17, + [ + 3, + 0.35 + ] + ] + ] + }, + "line-color": "hsl(35, 26%, 95%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "path" + ], + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "type", + "cycleway", + "piste" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-cycleway-piste", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 3, + 0.4 + ] + ], + [ + 16, + [ + 3, + 0.35 + ] + ], + [ + 17, + [ + 3, + 0.35 + ] + ] + ] + }, + "line-color": "hsl(35, 26%, 95%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "==", + "type", + "steps" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-steps", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 1.6 + ], + [ + 18, + 6 + ] + ] + }, + "line-color": "hsl(35, 26%, 95%)", + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 1.75, + 0.4 + ] + ], + [ + 16, + [ + 0.75, + 0.4 + ] + ], + [ + 17, + [ + 0.3, + 0.3 + ] + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-trunk_link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(46, 77%, 78%)", + "line-opacity": 1, + "line-dasharray": [ + 1, + 0 + ] + }, + "ref": "tunnel-trunk_link-case" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-motorway_link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(26, 74%, 81%)", + "line-opacity": 1, + "line-dasharray": [ + 1, + 0 + ] + }, + "ref": "tunnel-motorway_link-case" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "class", + "pedestrian" + ], + [ + "==", + "structure", + "tunnel" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-pedestrian", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": 1, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 1, + 0 + ] + ], + [ + 15, + [ + 1.5, + 0.4 + ] + ], + [ + 16, + [ + 1, + 0.2 + ] + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-track", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)" + }, + "ref": "tunnel-track-case" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-service-link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-dasharray": [ + 1, + 0 + ] + }, + "ref": "tunnel-service-link-case" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-street_limited", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(35, 14%, 93%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "tunnel-street_limited-low" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-street", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "tunnel-street-low" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-secondary-tertiary", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 8.5, + 0.5 + ], + [ + 10, + 0.75 + ], + [ + 18, + 26 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": 1, + "line-dasharray": [ + 1, + 0 + ], + "line-blur": 0 + }, + "ref": "tunnel-secondary-tertiary-case" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-primary", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": 1, + "line-dasharray": [ + 1, + 0 + ], + "line-blur": 0 + }, + "ref": "tunnel-primary-case" + }, + { + "minzoom": 16, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 17, + "oneway-small" + ], + [ + 18, + "oneway-large" + ] + ] + }, + "symbol-spacing": 200, + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "==", + "oneway", + "true" + ], + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "link", + "path", + "pedestrian", + "service", + "track" + ] + ], + "type": "symbol", + "source": "composite", + "id": "tunnel-oneway-arrows-blue-minor", + "paint": {}, + "source-layer": "road" + }, + { + "minzoom": 15, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 16, + "oneway-small" + ], + [ + 17, + "oneway-large" + ] + ] + }, + "symbol-spacing": 200, + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "==", + "oneway", + "true" + ], + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "primary", + "secondary", + "street", + "street_limited", + "tertiary" + ] + ], + "type": "symbol", + "source": "composite", + "id": "tunnel-oneway-arrows-blue-major", + "paint": {}, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "==", + "class", + "trunk" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "type": "line", + "source": "composite", + "id": "tunnel-trunk", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(46, 77%, 78%)" + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "id": "tunnel-motorway", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-dasharray": [ + 1, + 0 + ], + "line-opacity": 1, + "line-color": "hsl(26, 74%, 81%)", + "line-blur": 0 + }, + "ref": "tunnel-motorway-case" + }, + { + "minzoom": 16, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 16, + "oneway-white-small" + ], + [ + 17, + "oneway-white-large" + ] + ] + }, + "symbol-spacing": 200, + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444855769305.6016" + }, + "filter": [ + "all", + [ + "!in", + "type", + "primary_link", + "secondary_link", + "tertiary_link" + ], + [ + "==", + "oneway", + "true" + ], + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "link", + "trunk" + ] + ], + "type": "symbol", + "source": "composite", + "id": "tunnel-oneway-arrows-white", + "paint": { + "icon-opacity": 0.5 + }, + "source-layer": "road" + }, + { + "minzoom": 15, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "filter": [ + "==", + "class", + "cliff" + ], + "type": "line", + "source": "composite", + "id": "cliffs", + "paint": { + "line-opacity": { + "base": 1, + "stops": [ + [ + 15, + 0 + ], + [ + 15.25, + 1 + ] + ] + }, + "line-width": 10, + "line-pattern": "cliff" + }, + "source-layer": "barrier_line" + }, + { + "layout": { + "line-join": "round" + }, + "filter": [ + "==", + "type", + "ferry" + ], + "type": "line", + "source": "composite", + "id": "ferry", + "paint": { + "line-color": { + "base": 1, + "stops": [ + [ + 15, + "hsl(205, 73%, 63%)" + ], + [ + 17, + "hsl(230, 73%, 63%)" + ] + ] + }, + "line-opacity": 1, + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 20, + 1 + ] + ] + }, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 12, + [ + 1, + 0 + ] + ], + [ + 13, + [ + 12, + 4 + ] + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "filter": [ + "==", + "type", + "ferry_auto" + ], + "type": "line", + "source": "composite", + "id": "ferry-auto", + "paint": { + "line-color": { + "base": 1, + "stops": [ + [ + 15, + "hsl(205, 73%, 63%)" + ], + [ + 17, + "hsl(230, 73%, 63%)" + ] + ] + }, + "line-opacity": 1, + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 20, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "!in", + "type", + "corridor", + "crossing", + "piste", + "sidewalk", + "steps" + ], + [ + "==", + "class", + "path" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-path-bg", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 2.5 + ], + [ + 18, + 8 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + }, + "line-color": "hsl(50, 100%, 40%)", + "line-blur": { + "base": 1, + "stops": [ + [ + 14, + 0 + ], + [ + 17, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "path" + ], + [ + "==", + "type", + "piste" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-piste-bg", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 2 + ], + [ + 18, + 7 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + }, + "line-color": "hsl(230, 85%, 67%)", + "line-blur": 0 + }, + "source-layer": "road" + }, + { + "minzoom": 16, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "type", + "corridor", + "crossing", + "sidewalk" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-sidewalk-corridor-bg", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 2 + ], + [ + 18, + 7 + ] + ] + }, + "line-dasharray": [ + 1, + 0 + ], + "line-color": "hsl(230, 17%, 82%)", + "line-blur": 0, + "line-opacity": { + "base": 1, + "stops": [ + [ + 16, + 0 + ], + [ + 16.25, + 0.25 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "type", + "steps" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-steps-bg", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 2.5 + ], + [ + 18, + 8 + ] + ] + }, + "line-color": "hsl(50, 100%, 40%)", + "line-blur": { + "base": 1, + "stops": [ + [ + 14, + 0 + ], + [ + 17, + 1 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 0.25 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 12, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "class", + "pedestrian" + ], + [ + "==", + "structure", + "none" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-pedestrian-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 2 + ], + [ + 18, + 14.5 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": 0, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "class", + "street" + ], + [ + "==", + "structure", + "none" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-street-low", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "stops": [ + [ + 11, + 0 + ], + [ + 11.25, + 1 + ], + [ + 14, + 1 + ], + [ + 14.01, + 0 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "class", + "street_limited" + ], + [ + "==", + "structure", + "none" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-street_limited-low", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "stops": [ + [ + 11, + 0 + ], + [ + 11.25, + 1 + ], + [ + 14, + 1 + ], + [ + 14.01, + 0 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "track" + ] + ], + "type": "line", + "source": "composite", + "id": "road-track-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(50, 100%, 40%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 12 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 14, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "link", + "service" + ] + ], + "type": "line", + "source": "composite", + "id": "road-service-link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-street_limited-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "road-street_limited-low" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-street-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "road-street-low" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "type": "line", + "source": "composite", + "id": "road-secondary-tertiary-case", + "paint": { + "line-width": { + "base": 1.2, + "stops": [ + [ + 10, + 0.75 + ], + [ + 18, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 8.5, + 0.5 + ], + [ + 10, + 0.75 + ], + [ + 18, + 26 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 9.99, + 0 + ], + [ + 10, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "primary" + ] + ], + "type": "line", + "source": "composite", + "id": "road-primary-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 9.99, + 0 + ], + [ + 10, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 10, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway_link" + ] + ], + "type": "line", + "source": "composite", + "id": "road-motorway_link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 10.99, + 0 + ], + [ + 11, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "type", + "trunk_link" + ] + ], + "type": "line", + "source": "composite", + "id": "road-trunk_link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 10.99, + 0 + ], + [ + 11, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "trunk" + ] + ], + "type": "line", + "source": "composite", + "id": "road-trunk-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 10, + 1 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 6, + 0 + ], + [ + 6.1, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway" + ] + ], + "type": "line", + "source": "composite", + "id": "road-motorway-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 10, + 1 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 14, + "layout": { + "line-join": "miter" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "class", + "construction" + ], + [ + "==", + "structure", + "none" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-construction", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + }, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 0.4, + 0.8 + ] + ], + [ + 15, + [ + 0.3, + 0.6 + ] + ], + [ + 16, + [ + 0.2, + 0.3 + ] + ], + [ + 17, + [ + 0.2, + 0.25 + ] + ], + [ + 18, + [ + 0.15, + 0.15 + ] + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-sidewalk-corridor", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 3, + 0.4 + ] + ], + [ + 16, + [ + 3, + 0.35 + ] + ], + [ + 17, + [ + 3, + 0.35 + ] + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 16, + 0 + ], + [ + 16.25, + 1 + ] + ] + } + }, + "ref": "road-sidewalk-corridor-bg" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "path" + ], + [ + "in", + "type", + "bridleway", + "footway", + "path" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-path-smooth", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 3, + 0.4 + ] + ], + [ + 16, + [ + 3, + 0.35 + ] + ], + [ + 17, + [ + 3, + 0.35 + ] + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "path" + ], + [ + "in", + "type", + "hiking", + "mountain_bike", + "trail" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-path-rough", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 1.75, + 0.4 + ] + ], + [ + 16, + [ + 1, + 0.4 + ] + ], + [ + 17, + [ + 1, + 0.35 + ] + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "path" + ], + [ + "in", + "type", + "cycleway", + "piste" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "road-cycleway-piste", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-steps", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 1.6 + ], + [ + 18, + 6 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 1.75, + 0.4 + ] + ], + [ + 16, + [ + 0.75, + 0.4 + ] + ], + [ + 17, + [ + 0.3, + 0.3 + ] + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "ref": "road-steps-bg" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-trunk_link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(46, 69%, 68%)", + "line-opacity": 1 + }, + "ref": "road-trunk_link-case" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-motorway_link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(26, 67%, 70%)", + "line-opacity": 1 + }, + "ref": "road-motorway_link-case" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-pedestrian", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": 1, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 1, + 0 + ] + ], + [ + 15, + [ + 1.5, + 0.4 + ] + ], + [ + 16, + [ + 1, + 0.2 + ] + ] + ] + } + }, + "ref": "road-pedestrian-case" + }, + { + "minzoom": 12, + "layout": {}, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "==", + "$type", + "Polygon" + ], + [ + "all", + [ + "==", + "structure", + "none" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "type": "fill", + "source": "composite", + "id": "road-pedestrian-polygon-fill", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 16, + "hsl(230, 16%, 94%)" + ], + [ + 16.25, + "hsl(230, 50%, 98%)" + ] + ] + }, + "fill-outline-color": "hsl(230, 26%, 88%)", + "fill-opacity": 1 + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-pedestrian-polygon-pattern", + "paint": { + "fill-color": "hsl(0, 0%, 100%)", + "fill-outline-color": "hsl(35, 10%, 83%)", + "fill-pattern": "pedestrian-polygon", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 16, + 0 + ], + [ + 16.25, + 1 + ] + ] + } + }, + "ref": "road-pedestrian-polygon-fill" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-track", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)" + }, + "ref": "road-track-case" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-service-link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)" + }, + "ref": "road-service-link-case" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-street_limited", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(35, 14%, 93%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "road-street_limited-low" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-street", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "road-street-low" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-secondary-tertiary", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 8.5, + 0.5 + ], + [ + 10, + 0.75 + ], + [ + 18, + 26 + ] + ] + }, + "line-color": { + "base": 1, + "stops": [ + [ + 5, + "hsl(35, 32%, 91%)" + ], + [ + 8, + "hsl(0, 0%, 100%)" + ] + ] + }, + "line-opacity": { + "base": 1.2, + "stops": [ + [ + 5, + 0 + ], + [ + 5.5, + 1 + ] + ] + } + }, + "ref": "road-secondary-tertiary-case" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-primary", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": { + "base": 1, + "stops": [ + [ + 5, + "hsl(35, 32%, 91%)" + ], + [ + 8, + "hsl(0, 0%, 100%)" + ] + ] + }, + "line-opacity": { + "base": 1.2, + "stops": [ + [ + 5, + 0 + ], + [ + 5.5, + 1 + ] + ] + } + }, + "ref": "road-primary-case" + }, + { + "minzoom": 16, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 17, + "oneway-small" + ], + [ + 18, + "oneway-large" + ] + ] + }, + "icon-rotation-alignment": "map", + "icon-padding": 2, + "symbol-spacing": 200 + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "oneway", + "true" + ], + [ + "in", + "class", + "link", + "path", + "pedestrian", + "service", + "track" + ] + ], + "type": "symbol", + "source": "composite", + "id": "road-oneway-arrows-blue-minor", + "paint": {}, + "source-layer": "road" + }, + { + "minzoom": 15, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 16, + "oneway-small" + ], + [ + 17, + "oneway-large" + ] + ] + }, + "icon-rotation-alignment": "map", + "icon-padding": 2, + "symbol-spacing": 200 + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "oneway", + "true" + ], + [ + "in", + "class", + "primary", + "secondary", + "street", + "street_limited", + "tertiary" + ] + ], + "type": "symbol", + "source": "composite", + "id": "road-oneway-arrows-blue-major", + "paint": {}, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-trunk", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": { + "base": 1, + "stops": [ + [ + 6, + "hsl(0, 0%, 100%)" + ], + [ + 6.1, + "hsl(46, 80%, 60%)" + ], + [ + 9, + "hsl(46, 69%, 68%)" + ] + ] + } + }, + "ref": "road-trunk-case" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-motorway", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": { + "base": 1, + "stops": [ + [ + 8, + "hsl(26, 87%, 62%)" + ], + [ + 9, + "hsl(26, 67%, 70%)" + ] + ] + } + }, + "ref": "road-motorway-case" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "major_rail", + "minor_rail" + ] + ], + "type": "line", + "source": "composite", + "id": "road-rail", + "paint": { + "line-color": { + "stops": [ + [ + 13, + "hsl(50, 17%, 82%)" + ], + [ + 16, + "hsl(230, 10%, 74%)" + ] + ] + }, + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 20, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "id": "road-rail-tracks", + "paint": { + "line-color": { + "stops": [ + [ + 13, + "hsl(50, 17%, 82%)" + ], + [ + 16, + "hsl(230, 10%, 74%)" + ] + ] + }, + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 4 + ], + [ + 20, + 8 + ] + ] + }, + "line-dasharray": [ + 0.1, + 15 + ], + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.75, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "road-rail" + }, + { + "minzoom": 16, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 16, + "oneway-white-small" + ], + [ + 17, + "oneway-white-large" + ] + ] + }, + "icon-padding": 2, + "symbol-spacing": 200 + }, + "metadata": { + "mapbox:group": "1444855786460.0557" + }, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "!in", + "type", + "primary_link", + "secondary_link", + "tertiary_link" + ], + [ + "==", + "oneway", + "true" + ], + [ + "in", + "class", + "link", + "trunk" + ] + ], + "type": "symbol", + "source": "composite", + "id": "road-oneway-arrows-white", + "paint": { + "icon-opacity": 0.5 + }, + "source-layer": "road" + }, + { + "minzoom": 16, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "filter": [ + "==", + "class", + "hedge" + ], + "type": "line", + "source": "composite", + "id": "hedges", + "paint": { + "line-color": "hsl(100, 59%, 70%)", + "line-width": { + "base": 1, + "stops": [ + [ + 16, + 1 + ], + [ + 20, + 3 + ] + ] + }, + "line-opacity": 1, + "line-dasharray": [ + 1, + 2, + 5, + 2, + 1, + 2 + ] + }, + "source-layer": "barrier_line" + }, + { + "minzoom": 16, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "filter": [ + "==", + "class", + "fence" + ], + "type": "line", + "source": "composite", + "id": "fences", + "paint": { + "line-color": "hsl(46, 17%, 76%)", + "line-width": { + "base": 1, + "stops": [ + [ + 16, + 1 + ], + [ + 20, + 3 + ] + ] + }, + "line-opacity": 1, + "line-dasharray": [ + 1, + 2, + 5, + 2, + 1, + 2 + ] + }, + "source-layer": "barrier_line" + }, + { + "minzoom": 17, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "filter": [ + "==", + "class", + "gate" + ], + "type": "line", + "source": "composite", + "id": "gates", + "paint": { + "line-color": "hsl(46, 17%, 76%)", + "line-width": { + "base": 1, + "stops": [ + [ + 16, + 1 + ], + [ + 20, + 3 + ] + ] + }, + "line-opacity": 0.5, + "line-dasharray": [ + 1, + 2, + 5, + 2, + 1, + 2 + ] + }, + "source-layer": "barrier_line" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "type", + "piste", + "steps" + ], + [ + "==", + "class", + "path" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-path-bg", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 2.5 + ], + [ + 18, + 8 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + }, + "line-color": "hsl(50, 100%, 40%)", + "line-blur": { + "base": 1, + "stops": [ + [ + 14, + 0 + ], + [ + 17, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "path" + ], + [ + "==", + "structure", + "bridge" + ], + [ + "==", + "type", + "piste" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-piste-bg", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 2 + ], + [ + 18, + 7 + ] + ] + }, + "line-dasharray": [ + 1, + 0 + ], + "line-color": "hsl(205, 63%, 60%)", + "line-blur": 0, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "==", + "type", + "steps" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-steps-bg", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 2.5 + ], + [ + 18, + 8 + ] + ] + }, + "line-color": "hsl(50, 100%, 40%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + }, + "line-blur": { + "base": 1, + "stops": [ + [ + 14, + 0 + ], + [ + 17, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "class", + "pedestrian" + ], + [ + "==", + "structure", + "bridge" + ] + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-pedestrian-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 2 + ], + [ + 18, + 14.5 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": 0, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "street" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-street-low", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "stops": [ + [ + 11.5, + 0 + ], + [ + 12, + 1 + ], + [ + 14, + 1 + ], + [ + 14.01, + 0 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "street_limited" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-street_limited-low", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "stops": [ + [ + 11.5, + 0 + ], + [ + 12, + 1 + ], + [ + 14, + 1 + ], + [ + 14.01, + 0 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "track" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-track-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(50, 100%, 40%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 12 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 14, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "link", + "service" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-service-link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "street_limited" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-street_limited-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 11, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "street" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-street-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + }, + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-secondary-tertiary-case", + "paint": { + "line-width": { + "base": 1.2, + "stops": [ + [ + 10, + 0.75 + ], + [ + 18, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 8.5, + 0.5 + ], + [ + 10, + 0.75 + ], + [ + 18, + 26 + ] + ] + }, + "line-translate": [ + 0, + 0 + ] + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "primary" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-primary-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-translate": [ + 0, + 0 + ] + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "structure", + "bridge" + ], + [ + "==", + "type", + "trunk_link" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk_link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 10.99, + 0 + ], + [ + 11, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway_link-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": 1 + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "class", + "trunk" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 14, + "layout": { + "line-join": "miter" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "construction" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-construction", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(230, 24%, 87%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + }, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 0.4, + 0.8 + ] + ], + [ + 15, + [ + 0.3, + 0.6 + ] + ], + [ + 16, + [ + 0.2, + 0.3 + ] + ], + [ + 17, + [ + 0.2, + 0.25 + ] + ], + [ + 18, + [ + 0.15, + 0.15 + ] + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "type", + "cycleway", + "piste", + "steps" + ], + [ + "==", + "class", + "path" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-path", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 3, + 0.4 + ] + ], + [ + 16, + [ + 3, + 0.35 + ] + ], + [ + 17, + [ + 3, + 0.35 + ] + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "path" + ], + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "type", + "cycleway", + "piste" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-cycleway-piste", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 4 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "id": "bridge-steps", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 1.6 + ], + [ + 18, + 6 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 4, + 0.4 + ] + ], + [ + 15, + [ + 1.75, + 0.4 + ] + ], + [ + 16, + [ + 0.75, + 0.4 + ] + ], + [ + 17, + [ + 0.3, + 0.3 + ] + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 13, + 0 + ], + [ + 13.25, + 1 + ] + ] + } + }, + "ref": "bridge-steps-bg" + }, + { + "minzoom": 13, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "structure", + "bridge" + ], + [ + "==", + "type", + "trunk_link" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk_link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(46, 69%, 68%)" + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway_link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(26, 67%, 70%)" + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "id": "bridge-pedestrian", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": 1, + "line-dasharray": { + "base": 1, + "stops": [ + [ + 14, + [ + 1, + 0 + ] + ], + [ + 15, + [ + 1.5, + 0.4 + ] + ], + [ + 16, + [ + 1, + 0.2 + ] + ] + ] + } + }, + "ref": "bridge-pedestrian-case" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "track" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-track", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 15, + 1 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)" + }, + "source-layer": "road" + }, + { + "minzoom": 14, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!=", + "type", + "trunk_link" + ], + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "link", + "service", + "track" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-service-link", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 18, + 12 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)" + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "id": "bridge-street_limited", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(35, 14%, 93%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "bridge-street_limited-low" + }, + { + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "id": "bridge-street", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12.5, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + } + }, + "ref": "bridge-street-low" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "type", + "secondary", + "tertiary" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-secondary-tertiary", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 8.5, + 0.5 + ], + [ + 10, + 0.75 + ], + [ + 18, + 26 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "base": 1.2, + "stops": [ + [ + 5, + 0 + ], + [ + 5.5, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "==", + "type", + "primary" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-primary", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-opacity": { + "base": 1.2, + "stops": [ + [ + 5, + 0 + ], + [ + 5.5, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 16, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 17, + "oneway-small" + ], + [ + 18, + "oneway-large" + ] + ] + }, + "symbol-spacing": 200, + "icon-rotation-alignment": "map", + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "oneway", + "true" + ], + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "link", + "path", + "pedestrian", + "service", + "track" + ] + ], + "type": "symbol", + "source": "composite", + "id": "bridge-oneway-arrows-blue-minor", + "paint": {}, + "source-layer": "road" + }, + { + "minzoom": 15, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 16, + "oneway-small" + ], + [ + 17, + "oneway-large" + ] + ] + }, + "symbol-spacing": 200, + "icon-rotation-alignment": "map", + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "oneway", + "true" + ], + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "primary", + "secondary", + "street", + "street_limited", + "tertiary" + ] + ], + "type": "symbol", + "source": "composite", + "id": "bridge-oneway-arrows-blue-major", + "paint": {}, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "class", + "trunk" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(46, 69%, 68%)" + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "layer", + 2, + 3, + 4, + 5 + ], + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(26, 67%, 70%)" + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "major_rail", + "minor_rail" + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-rail", + "paint": { + "line-color": { + "stops": [ + [ + 13, + "hsl(50, 17%, 82%)" + ], + [ + 16, + "hsl(230, 10%, 74%)" + ] + ] + }, + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 20, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "id": "bridge-rail-tracks", + "paint": { + "line-color": { + "stops": [ + [ + 13, + "hsl(50, 17%, 82%)" + ], + [ + 16, + "hsl(230, 10%, 74%)" + ] + ] + }, + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 4 + ], + [ + 20, + 8 + ] + ] + }, + "line-dasharray": [ + 0.1, + 15 + ], + "line-opacity": { + "base": 1, + "stops": [ + [ + 13.75, + 0 + ], + [ + 20, + 1 + ] + ] + } + }, + "ref": "bridge-rail" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "==", + "type", + "trunk_link" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk_link-2-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 10.99, + 0 + ], + [ + 11, + 1 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway_link-2-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.75 + ], + [ + 20, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-opacity": 1 + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "trunk" + ], + [ + "==", + "structure", + "bridge" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk-2-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 10, + 1 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + } + }, + "source-layer": "road" + }, + { + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway-2-case", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 10, + 1 + ], + [ + 16, + 2 + ] + ] + }, + "line-color": "hsl(0, 0%, 100%)", + "line-gap-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + } + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "==", + "type", + "trunk_link" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk_link-2", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(46, 69%, 68%)" + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway_link-2", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 12, + 0.5 + ], + [ + 14, + 2 + ], + [ + 18, + 18 + ] + ] + }, + "line-color": "hsl(26, 67%, 70%)" + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "trunk" + ], + [ + "==", + "structure", + "bridge" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-trunk-2", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(46, 69%, 68%)" + }, + "source-layer": "road" + }, + { + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ], + [ + ">=", + "layer", + 2 + ] + ], + "type": "line", + "source": "composite", + "id": "bridge-motorway-2", + "paint": { + "line-width": { + "base": 1.5, + "stops": [ + [ + 5, + 0.75 + ], + [ + 18, + 32 + ] + ] + }, + "line-color": "hsl(26, 67%, 70%)" + }, + "source-layer": "road" + }, + { + "minzoom": 16, + "layout": { + "symbol-placement": "line", + "icon-image": { + "base": 1, + "stops": [ + [ + 16, + "oneway-white-small" + ], + [ + 17, + "oneway-white-large" + ] + ] + }, + "symbol-spacing": 200, + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444855799204.86" + }, + "filter": [ + "all", + [ + "!in", + "type", + "primary_link", + "secondary_link", + "tertiary_link" + ], + [ + "==", + "oneway", + "true" + ], + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "link", + "trunk" + ] + ], + "type": "symbol", + "source": "composite", + "id": "bridge-oneway-arrows-white", + "paint": { + "icon-opacity": 0.5 + }, + "source-layer": "road" + }, + { + "minzoom": 13, + "layout": { + "line-join": "round" + }, + "filter": [ + "==", + "class", + "aerialway" + ], + "type": "line", + "source": "composite", + "id": "aerialway-bg", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 2.5 + ], + [ + 20, + 3 + ] + ] + }, + "line-blur": 0.5 + }, + "source-layer": "road" + }, + { + "id": "aerialway", + "paint": { + "line-color": "hsl(230, 4%, 29%)", + "line-width": { + "base": 1.5, + "stops": [ + [ + 14, + 0.5 + ], + [ + 20, + 1 + ] + ] + } + }, + "ref": "aerialway-bg" + }, + { + "layout": { + "line-join": "bevel" + }, + "metadata": { + "mapbox:group": "1444934295202.7542" + }, + "filter": [ + "all", + [ + "==", + "maritime", + 0 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "type": "line", + "source": "composite", + "id": "admin-3-4-boundaries-bg", + "paint": { + "line-color": { + "base": 1, + "stops": [ + [ + 8, + "hsl(35, 12%, 89%)" + ], + [ + 16, + "hsl(230, 49%, 90%)" + ] + ] + }, + "line-width": { + "base": 1, + "stops": [ + [ + 7, + 3.75 + ], + [ + 12, + 5.5 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 7, + 0 + ], + [ + 8, + 0.75 + ] + ] + }, + "line-dasharray": [ + 1, + 0 + ], + "line-translate": [ + 0, + 0 + ], + "line-blur": { + "base": 1, + "stops": [ + [ + 3, + 0 + ], + [ + 8, + 3 + ] + ] + } + }, + "source-layer": "admin" + }, + { + "minzoom": 1, + "layout": { + "line-join": "miter" + }, + "metadata": { + "mapbox:group": "1444934295202.7542" + }, + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "maritime", + 0 + ] + ], + "type": "line", + "source": "composite", + "id": "admin-2-boundaries-bg", + "paint": { + "line-width": { + "base": 1, + "stops": [ + [ + 3, + 3.5 + ], + [ + 10, + 8 + ] + ] + }, + "line-color": { + "base": 1, + "stops": [ + [ + 6, + "hsl(35, 12%, 89%)" + ], + [ + 8, + "hsl(230, 49%, 90%)" + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 3, + 0 + ], + [ + 4, + 0.5 + ] + ] + }, + "line-translate": [ + 0, + 0 + ], + "line-blur": { + "base": 1, + "stops": [ + [ + 3, + 0 + ], + [ + 10, + 2 + ] + ] + } + }, + "source-layer": "admin" + }, + { + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "metadata": { + "mapbox:group": "1444934295202.7542" + }, + "filter": [ + "all", + [ + "==", + "maritime", + 0 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "type": "line", + "source": "composite", + "id": "admin-3-4-boundaries", + "paint": { + "line-dasharray": { + "base": 1, + "stops": [ + [ + 6, + [ + 2, + 0 + ] + ], + [ + 7, + [ + 2, + 2, + 6, + 2 + ] + ] + ] + }, + "line-width": { + "base": 1, + "stops": [ + [ + 7, + 0.75 + ], + [ + 12, + 1.5 + ] + ] + }, + "line-opacity": { + "base": 1, + "stops": [ + [ + 2, + 0 + ], + [ + 3, + 1 + ] + ] + }, + "line-color": { + "base": 1, + "stops": [ + [ + 3, + "hsl(230, 14%, 77%)" + ], + [ + 7, + "hsl(230, 8%, 62%)" + ] + ] + } + }, + "source-layer": "admin" + }, + { + "minzoom": 1, + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "metadata": { + "mapbox:group": "1444934295202.7542" + }, + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 0 + ], + [ + "==", + "maritime", + 0 + ] + ], + "type": "line", + "source": "composite", + "id": "admin-2-boundaries", + "paint": { + "line-color": "hsl(230, 8%, 51%)", + "line-width": { + "base": 1, + "stops": [ + [ + 3, + 0.5 + ], + [ + 10, + 2 + ] + ] + } + }, + "source-layer": "admin" + }, + { + "minzoom": 1, + "layout": { + "line-join": "round" + }, + "metadata": { + "mapbox:group": "1444934295202.7542" + }, + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 1 + ], + [ + "==", + "maritime", + 0 + ] + ], + "type": "line", + "source": "composite", + "id": "admin-2-boundaries-dispute", + "paint": { + "line-dasharray": [ + 1.5, + 1.5 + ], + "line-color": "hsl(230, 8%, 51%)", + "line-width": { + "base": 1, + "stops": [ + [ + 3, + 0.5 + ], + [ + 10, + 2 + ] + ] + } + }, + "source-layer": "admin" + }, + { + "id": "housenum-label", + "type": "symbol", + "source": "composite", + "source-layer": "housenum_label", + "minzoom": 17, + "layout": { + "text-field": "{house_num}", + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "text-padding": 4, + "text-max-width": 7, + "text-size": 9.5 + }, + "paint": { + "text-color": "hsl(35, 2%, 69%)", + "text-halo-color": "hsl(35, 8%, 85%)", + "text-halo-width": 0.5, + "text-halo-blur": 0 + } + }, + { + "minzoom": 11, + "layout": { + "text-field": "{ele} m", + "symbol-placement": "line", + "text-max-angle": 25, + "text-padding": 5, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 15, + 9.5 + ], + [ + 20, + 12 + ] + ] + } + }, + "filter": [ + "in", + "index", + 10, + 5 + ], + "type": "symbol", + "source": "composite", + "id": "contour-label", + "paint": { + "text-color": "hsl(100, 60%, 28%)", + "text-halo-width": 1, + "text-halo-blur": 0, + "text-halo-color": "hsla(0, 0%, 100%, 0.5)" + }, + "source-layer": "contour" + }, + { + "minzoom": 12, + "layout": { + "text-field": "{name_en}", + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "symbol-placement": "line", + "text-max-angle": 30, + "text-size": { + "base": 1, + "stops": [ + [ + 13, + 12 + ], + [ + 18, + 16 + ] + ] + } + }, + "filter": [ + "in", + "class", + "canal", + "river" + ], + "type": "symbol", + "source": "composite", + "id": "waterway-label", + "paint": { + "text-halo-width": 0.5, + "text-halo-color": "hsl(196, 80%, 70%)", + "text-color": "hsl(230, 48%, 44%)", + "text-halo-blur": 0.5 + }, + "source-layer": "waterway_label" + }, + { + "minzoom": 17, + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 11 + ], + [ + 20, + 13 + ] + ] + }, + "icon-image": "{maki}-11", + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 1, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933456003.5437" + }, + "filter": [ + "all", + [ + "==", + "scalerank", + 4 + ], + [ + ">=", + "localrank", + 15 + ], + [ + "in", + "maki", + "amusement-park", + "aquarium", + "attraction", + "bakery", + "bank", + "bar", + "beer", + "bus", + "cafe", + "castle", + "college", + "doctor", + "fast-food", + "ferry", + "fire-station", + "fuel", + "grocery", + "harbor", + "hospital", + "ice-cream", + "lodging", + "marker", + "monument", + "museum", + "pharmacy", + "police", + "post", + "restaurant", + "rocket", + "stadium", + "swimming" + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-relevant-scalerank4-l15", + "paint": { + "text-color": "hsl(25, 25%, 32%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "minzoom": 15, + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 11 + ], + [ + 20, + 13 + ] + ] + }, + "icon-image": "{maki}-11", + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 1, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933456003.5437" + }, + "filter": [ + "all", + [ + "<=", + "localrank", + 14 + ], + [ + "==", + "scalerank", + 4 + ], + [ + "in", + "maki", + "amusement-park", + "aquarium", + "attraction", + "bakery", + "bank", + "bar", + "beer", + "bus", + "cafe", + "castle", + "college", + "doctor", + "fast-food", + "ferry", + "fire-station", + "fuel", + "grocery", + "harbor", + "hospital", + "ice-cream", + "lodging", + "marker", + "monument", + "museum", + "pharmacy", + "police", + "post", + "restaurant", + "rocket", + "stadium", + "swimming" + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-relevant-scalerank4-l1", + "paint": { + "text-color": "hsl(25, 25%, 32%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "minzoom": 15, + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 11 + ], + [ + 20, + 13 + ] + ] + }, + "icon-image": "{maki}-11", + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 1, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933456003.5437" + }, + "filter": [ + "all", + [ + "==", + "scalerank", + 4 + ], + [ + "in", + "maki", + "campsite", + "cemetery", + "dog-park", + "garden", + "golf", + "park", + "picnic-site", + "playground", + "zoo" + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-parks_scalerank4", + "paint": { + "text-color": "hsl(100, 100%, 20%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 11 + ], + [ + 20, + 13 + ] + ] + }, + "icon-image": "{maki}-11", + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 1, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933372896.5967" + }, + "filter": [ + "all", + [ + "!in", + "maki", + "campsite", + "cemetery", + "dog-park", + "garden", + "golf", + "park", + "picnic-site", + "playground", + "zoo" + ], + [ + "==", + "scalerank", + 3 + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-scalerank3", + "paint": { + "text-color": "hsl(25, 25%, 32%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 11 + ], + [ + 20, + 13 + ] + ] + }, + "icon-image": "{maki}-11", + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933372896.5967" + }, + "filter": [ + "all", + [ + "==", + "scalerank", + 3 + ], + [ + "in", + "maki", + "campsite", + "cemetery", + "dog-park", + "garden", + "golf", + "park", + "picnic-site", + "playground", + "zoo" + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-parks-scalerank3", + "paint": { + "text-color": "hsl(100, 100%, 20%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "minzoom": 15, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [ + 15, + 10 + ], + [ + 20, + 13 + ] + ] + }, + "text-max-angle": 30, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "symbol-placement": "line", + "text-padding": 1, + "text-rotation-alignment": "map", + "text-field": "{name_en}", + "text-letter-spacing": 0.01 + }, + "metadata": { + "mapbox:group": "1444933721429.3076" + }, + "filter": [ + "all", + [ + "!in", + "class", + "aerialway", + "link", + "motorway", + "path", + "pedestrian", + "primary", + "secondary", + "street", + "street_limited", + "tertiary", + "trunk" + ], + [ + "==", + "$type", + "LineString" + ] + ], + "type": "symbol", + "source": "composite", + "id": "road-label-small", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.25, + "text-halo-blur": 1 + }, + "source-layer": "road_label" + }, + { + "minzoom": 11, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [ + 11, + 10 + ], + [ + 20, + 14 + ] + ] + }, + "text-max-angle": 30, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "symbol-placement": "line", + "text-padding": 1, + "text-rotation-alignment": "map", + "text-field": "{name_en}", + "text-letter-spacing": 0.01 + }, + "metadata": { + "mapbox:group": "1444933721429.3076" + }, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "in", + "class", + "aerialway", + "link", + "path", + "pedestrian", + "street", + "street_limited" + ] + ], + "type": "symbol", + "source": "composite", + "id": "road-label-medium", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1 + }, + "source-layer": "road_label" + }, + { + "layout": { + "text-size": { + "base": 1, + "stops": [ + [ + 9, + 10 + ], + [ + 20, + 16 + ] + ] + }, + "text-max-angle": 30, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "symbol-placement": "line", + "text-padding": 1, + "text-rotation-alignment": "map", + "text-field": "{name_en}", + "text-letter-spacing": 0.01 + }, + "metadata": { + "mapbox:group": "1444933721429.3076" + }, + "filter": [ + "in", + "class", + "motorway", + "primary", + "secondary", + "tertiary", + "trunk" + ], + "type": "symbol", + "source": "composite", + "id": "road-label-large", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "rgba(255,255,255, 0.75)", + "text-halo-width": 1, + "text-halo-blur": 1 + }, + "source-layer": "road_label" + }, + { + "layout": { + "text-size": 9, + "icon-image": "{shield}-{reflen}", + "icon-rotation-alignment": "viewport", + "text-max-angle": 38, + "symbol-spacing": { + "base": 1, + "stops": [ + [ + 11, + 150 + ], + [ + 14, + 200 + ] + ] + }, + "text-font": [ + "DIN Offc Pro Bold", + "Arial Unicode MS Bold" + ], + "symbol-placement": { + "base": 1, + "stops": [ + [ + 10, + "point" + ], + [ + 11, + "line" + ] + ] + }, + "text-padding": 2, + "text-rotation-alignment": "viewport", + "text-field": "{ref}", + "text-letter-spacing": 0.05, + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444933575858.6992" + }, + "filter": [ + "all", + [ + "!in", + "shield", + "at-expressway", + "at-motorway", + "at-state-b", + "bg-motorway", + "bg-national", + "ch-main", + "ch-motorway", + "cz-motorway", + "cz-road", + "de-motorway", + "e-road", + "fi-main", + "gr-motorway", + "gr-national", + "hr-motorway", + "hr-state", + "hu-main", + "hu-motorway", + "nz-state", + "pl-expressway", + "pl-motorway", + "pl-national", + "ro-county", + "ro-motorway", + "ro-national", + "rs-motorway", + "rs-state-1b", + "se-main", + "si-expressway", + "si-motorway", + "sk-highway", + "sk-road", + "us-interstate", + "us-interstate-business", + "us-interstate-duplex", + "us-interstate-truck", + "za-metropolitan", + "za-national", + "za-provincial", + "za-regional" + ], + [ + "<=", + "reflen", + 6 + ] + ], + "type": "symbol", + "source": "composite", + "id": "road-shields-black", + "paint": { + "text-color": "hsl(230, 21%, 37%)", + "icon-halo-color": "rgba(0, 0, 0, 1)", + "icon-halo-width": 1, + "text-opacity": 1, + "icon-color": "white", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0 + }, + "source-layer": "road_label" + }, + { + "layout": { + "text-size": 9, + "icon-image": "{shield}-{reflen}", + "icon-rotation-alignment": "viewport", + "text-max-angle": 38, + "symbol-spacing": { + "base": 1, + "stops": [ + [ + 11, + 150 + ], + [ + 14, + 200 + ] + ] + }, + "text-font": [ + "DIN Offc Pro Bold", + "Arial Unicode MS Bold" + ], + "symbol-placement": { + "base": 1, + "stops": [ + [ + 10, + "point" + ], + [ + 11, + "line" + ] + ] + }, + "text-padding": 2, + "text-rotation-alignment": "viewport", + "text-field": "{ref}", + "text-letter-spacing": 0.05, + "icon-padding": 2 + }, + "metadata": { + "mapbox:group": "1444933575858.6992" + }, + "filter": [ + "all", + [ + "<=", + "reflen", + 6 + ], + [ + "in", + "shield", + "at-expressway", + "at-motorway", + "at-state-b", + "bg-motorway", + "bg-national", + "ch-main", + "ch-motorway", + "cz-motorway", + "cz-road", + "de-motorway", + "e-road", + "fi-main", + "gr-motorway", + "gr-national", + "hr-motorway", + "hr-state", + "hu-main", + "hu-motorway", + "nz-state", + "pl-expressway", + "pl-motorway", + "pl-national", + "ro-county", + "ro-motorway", + "ro-national", + "rs-motorway", + "rs-state-1b", + "se-main", + "si-expressway", + "si-motorway", + "sk-highway", + "sk-road", + "us-interstate", + "us-interstate-business", + "us-interstate-duplex", + "us-interstate-truck", + "za-metropolitan", + "za-national", + "za-provincial", + "za-regional" + ] + ], + "type": "symbol", + "source": "composite", + "id": "road-shields-white", + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "icon-halo-color": "rgba(0, 0, 0, 1)", + "icon-halo-width": 1, + "text-opacity": 1, + "icon-color": "white", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0 + }, + "source-layer": "road_label" + }, + { + "minzoom": 14, + "layout": { + "text-field": "{ref}", + "text-size": 9, + "icon-image": "motorway-exit-{reflen}", + "text-font": [ + "DIN Offc Pro Bold", + "Arial Unicode MS Bold" + ] + }, + "metadata": { + "mapbox:group": "1444933575858.6992" + }, + "filter": [ + ">", + "reflen", + 0 + ], + "type": "symbol", + "source": "composite", + "id": "motorway-junction", + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-translate": [ + 0, + 0 + ] + }, + "source-layer": "motorway_junction" + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 11 + ], + [ + 20, + 13 + ] + ] + }, + "icon-image": "{maki}-11", + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "filter": [ + "in", + "maki", + "bicycle", + "bicycle-share", + "drinking-water", + "information", + "picnic-site", + "toilet" + ], + "type": "symbol", + "source": "composite", + "id": "poi-outdoor-features", + "paint": { + "text-color": "hsl(25, 25%, 32%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "id": "mountain-peak-label", + "type": "symbol", + "source": "composite", + "source-layer": "mountain_peak_label", + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 11 + ], + [ + 18, + 14 + ] + ] + }, + "icon-image": "{maki}-15", + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-offset": [ + 0, + 0.65 + ], + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "paint": { + "text-color": "hsl(100, 100%, 20%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + } + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 11 + ], + [ + 18, + 14 + ] + ] + }, + "icon-image": "{maki}-15", + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-offset": [ + 0, + 0.65 + ], + "text-anchor": "top", + "text-field": "{name_en}, {elevation_m}m", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "filter": [ + ">", + "elevation_m", + 0 + ], + "type": "symbol", + "source": "composite", + "id": "mountain-peak-label-with-elevation", + "paint": { + "text-color": "hsl(100, 100%, 20%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "mountain_peak_label" + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 14, + 11 + ], + [ + 20, + 14 + ] + ] + }, + "icon-image": { + "stops": [ + [ + 14, + "{maki}-11" + ], + [ + 15, + "{maki}-15" + ] + ] + }, + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933358918.2366" + }, + "filter": [ + "all", + [ + "!in", + "maki", + "campsite", + "cemetery", + "dog-park", + "garden", + "golf", + "park", + "picnic-site", + "playground", + "zoo" + ], + [ + "==", + "scalerank", + 2 + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-scalerank2", + "paint": { + "text-color": "hsl(25, 25%, 32%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 14, + 11 + ], + [ + 20, + 14 + ] + ] + }, + "icon-image": { + "stops": [ + [ + 14, + "{maki}-11" + ], + [ + 15, + "{maki}-15" + ] + ] + }, + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933358918.2366" + }, + "filter": [ + "all", + [ + "==", + "scalerank", + 2 + ], + [ + "in", + "maki", + "campsite", + "cemetery", + "dog-park", + "garden", + "golf", + "park", + "picnic-site", + "playground", + "zoo" + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-parks-scalerank2", + "paint": { + "text-color": "hsl(100, 100%, 20%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "minzoom": 12, + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 11 + ], + [ + 20, + 13 + ] + ] + }, + "icon-image": "{network}", + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-offset": [ + 0, + 0.85 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": { + "base": 1, + "stops": [ + [ + 0, + "" + ], + [ + 13, + "{name_en}" + ] + ] + }, + "text-letter-spacing": 0.01, + "icon-padding": 0, + "text-max-width": 7 + }, + "filter": [ + "!=", + "maki", + "entrance" + ], + "type": "symbol", + "source": "composite", + "id": "rail-label", + "paint": { + "text-color": "hsl(230, 48%, 44%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "icon-halo-width": 4, + "icon-halo-color": "#fff", + "text-opacity": { + "base": 1, + "stops": [ + [ + 13.99, + 0 + ], + [ + 14, + 1 + ] + ] + }, + "text-halo-blur": 0.5 + }, + "source-layer": "rail_station_label" + }, + { + "minzoom": 15, + "layout": { + "text-field": "{name_en}", + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "text-max-width": 7, + "text-size": { + "base": 1, + "stops": [ + [ + 16, + 13 + ], + [ + 20, + 16 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444933808272.805" + }, + "filter": [ + "<=", + "area", + 10000 + ], + "type": "symbol", + "source": "composite", + "id": "water-label-sm", + "paint": { + "text-color": "hsl(230, 48%, 44%)" + }, + "source-layer": "water_label" + }, + { + "minzoom": 5, + "layout": { + "text-field": "{name_en}", + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "text-max-width": 7, + "text-size": { + "base": 1, + "stops": [ + [ + 13, + 13 + ], + [ + 18, + 18 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444933808272.805" + }, + "filter": [ + ">", + "area", + 10000 + ], + "type": "symbol", + "source": "composite", + "id": "water-label", + "paint": { + "text-color": "hsl(230, 48%, 44%)" + }, + "source-layer": "water_label" + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 11 + ], + [ + 18, + 14 + ] + ] + }, + "icon-image": { + "stops": [ + [ + 13, + "{maki}-11" + ], + [ + 14, + "{maki}-15" + ] + ] + }, + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933322393.2852" + }, + "filter": [ + "all", + [ + "<=", + "scalerank", + 1 + ], + [ + "in", + "maki", + "campsite", + "cemetery", + "dog-park", + "garden", + "golf", + "park", + "picnic-site", + "playground", + "zoo" + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-parks-scalerank1", + "paint": { + "text-color": "hsl(100, 100%, 20%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 11 + ], + [ + 18, + 14 + ] + ] + }, + "icon-image": { + "stops": [ + [ + 13, + "{maki}-11" + ], + [ + 14, + "{maki}-15" + ] + ] + }, + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0.65 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "metadata": { + "mapbox:group": "1444933322393.2852" + }, + "filter": [ + "all", + [ + "!in", + "maki", + "campsite", + "cemetery", + "dog-park", + "garden", + "golf", + "park", + "picnic-site", + "playground", + "zoo" + ], + [ + "<=", + "scalerank", + 1 + ] + ], + "type": "symbol", + "source": "composite", + "id": "poi-scalerank1", + "paint": { + "text-color": "hsl(25, 25%, 32%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "poi_label" + }, + { + "minzoom": 9, + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 12 + ], + [ + 18, + 18 + ] + ] + }, + "icon-image": { + "stops": [ + [ + 12, + "{maki}-11" + ], + [ + 13, + "{maki}-15" + ] + ] + }, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0.75 + ], + "text-rotation-alignment": "viewport", + "text-anchor": "top", + "text-field": { + "stops": [ + [ + 11, + "{ref}" + ], + [ + 12, + "{name_en}" + ] + ] + }, + "text-letter-spacing": 0.01, + "text-max-width": 9 + }, + "filter": [ + "<=", + "scalerank", + 2 + ], + "type": "symbol", + "source": "composite", + "id": "airport-label", + "paint": { + "text-color": "hsl(230, 48%, 44%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 0.5, + "text-halo-blur": 0.5 + }, + "source-layer": "airport_label" + }, + { + "layout": { + "text-line-height": 1.2, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 11 + ], + [ + 18, + 16 + ] + ] + }, + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0 + ], + "text-rotation-alignment": "viewport", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 8 + }, + "maxzoom": 16, + "filter": [ + "in", + "type", + "aboriginal_lands", + "archipelago", + "islet" + ], + "type": "symbol", + "source": "composite", + "id": "place-islet-archipelago-aboriginal", + "paint": { + "text-color": "hsl(230, 29%, 35%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1 + }, + "source-layer": "place_label" + }, + { + "minzoom": 10, + "layout": { + "text-field": "{name_en}", + "text-transform": "uppercase", + "text-letter-spacing": 0.1, + "text-max-width": 7, + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "text-padding": 3, + "text-size": { + "base": 1, + "stops": [ + [ + 12, + 11 + ], + [ + 16, + 16 + ] + ] + } + }, + "maxzoom": 16, + "filter": [ + "==", + "type", + "neighbourhood" + ], + "type": "symbol", + "source": "composite", + "id": "place-neighbourhood", + "paint": { + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-color": "hsl(230, 29%, 35%)", + "text-halo-blur": 0.5 + }, + "source-layer": "place_label" + }, + { + "minzoom": 10, + "layout": { + "text-field": "{name_en}", + "text-transform": "uppercase", + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "text-letter-spacing": 0.15, + "text-max-width": 7, + "text-padding": 3, + "text-size": { + "base": 1, + "stops": [ + [ + 11, + 11 + ], + [ + 15, + 18 + ] + ] + } + }, + "maxzoom": 16, + "filter": [ + "==", + "type", + "suburb" + ], + "type": "symbol", + "source": "composite", + "id": "place-suburb", + "paint": { + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-color": "hsl(230, 29%, 35%)", + "text-halo-blur": 0.5 + }, + "source-layer": "place_label" + }, + { + "minzoom": 10, + "layout": { + "text-field": "{name_en}", + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 12, + 11.5 + ], + [ + 15, + 16 + ] + ] + } + }, + "maxzoom": 16, + "filter": [ + "==", + "type", + "hamlet" + ], + "type": "symbol", + "source": "composite", + "id": "place-hamlet", + "paint": { + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.25, + "text-color": "hsl(0, 0%, 0%)" + }, + "source-layer": "place_label" + }, + { + "minzoom": 8, + "layout": { + "text-field": "{name_en}", + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "text-max-width": 7, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 11.5 + ], + [ + 16, + 18 + ] + ] + } + }, + "maxzoom": 15, + "filter": [ + "==", + "type", + "village" + ], + "type": "symbol", + "source": "composite", + "id": "place-village", + "paint": { + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.25, + "text-color": "hsl(0, 0%, 0%)" + }, + "source-layer": "place_label" + }, + { + "minzoom": 6, + "layout": { + "icon-image": "dot-9", + "text-font": { + "base": 1, + "stops": [ + [ + 11, + [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ] + ], + [ + 12, + [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ] + ] + ] + }, + "text-offset": { + "base": 1, + "stops": [ + [ + 7, + [ + 0, + -0.15 + ] + ], + [ + 8, + [ + 0, + 0 + ] + ] + ] + }, + "text-anchor": { + "base": 1, + "stops": [ + [ + 7, + "bottom" + ], + [ + 8, + "center" + ] + ] + }, + "text-field": "{name_en}", + "text-max-width": 7, + "text-size": { + "base": 1, + "stops": [ + [ + 7, + 11.5 + ], + [ + 15, + 20 + ] + ] + } + }, + "maxzoom": 15, + "filter": [ + "==", + "type", + "town" + ], + "type": "symbol", + "source": "composite", + "id": "place-town", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.25, + "icon-opacity": { + "base": 1, + "stops": [ + [ + 7.99, + 1 + ], + [ + 8, + 0 + ] + ] + } + }, + "source-layer": "place_label" + }, + { + "layout": { + "text-line-height": 1.2, + "text-size": { + "base": 1, + "stops": [ + [ + 10, + 11 + ], + [ + 18, + 16 + ] + ] + }, + "text-max-angle": 38, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ], + "text-padding": 2, + "text-offset": [ + 0, + 0 + ], + "text-rotation-alignment": "viewport", + "text-field": "{name_en}", + "text-letter-spacing": 0.01, + "text-max-width": 7 + }, + "maxzoom": 16, + "filter": [ + "==", + "type", + "island" + ], + "type": "symbol", + "source": "composite", + "id": "place-island", + "paint": { + "text-color": "hsl(230, 29%, 35%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1 + }, + "source-layer": "place_label" + }, + { + "layout": { + "text-size": { + "base": 1, + "stops": [ + [ + 6, + 12 + ], + [ + 14, + 22 + ] + ] + }, + "icon-image": "dot-9", + "text-font": { + "base": 1, + "stops": [ + [ + 7, + [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ] + ], + [ + 8, + [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ] + ] + ] + }, + "text-offset": { + "base": 1, + "stops": [ + [ + 7.99, + [ + 0, + -0.2 + ] + ], + [ + 8, + [ + 0, + 0 + ] + ] + ] + }, + "text-anchor": { + "base": 1, + "stops": [ + [ + 7, + "bottom" + ], + [ + 8, + "center" + ] + ] + }, + "text-field": "{name_en}", + "text-max-width": 7 + }, + "metadata": { + "mapbox:group": "1444862510685.128" + }, + "maxzoom": 14, + "filter": [ + "all", + [ + "!in", + "scalerank", + 0, + 1, + 2, + 3, + 4, + 5 + ], + [ + "==", + "type", + "city" + ] + ], + "type": "symbol", + "source": "composite", + "id": "place-city-sm", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.25, + "icon-opacity": { + "base": 1, + "stops": [ + [ + 7.99, + 1 + ], + [ + 8, + 0 + ] + ] + } + }, + "source-layer": "place_label" + }, + { + "layout": { + "text-field": "{name_en}", + "icon-image": "dot-10", + "text-anchor": { + "base": 1, + "stops": [ + [ + 7, + "top" + ], + [ + 8, + "center" + ] + ] + }, + "text-offset": { + "base": 1, + "stops": [ + [ + 7.99, + [ + 0, + 0.1 + ] + ], + [ + 8, + [ + 0, + 0 + ] + ] + ] + }, + "text-font": { + "base": 1, + "stops": [ + [ + 7, + [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ] + ], + [ + 8, + [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ] + ] + ] + }, + "text-size": { + "base": 0.9, + "stops": [ + [ + 5, + 12 + ], + [ + 12, + 22 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444862510685.128" + }, + "maxzoom": 14, + "filter": [ + "all", + [ + "==", + "type", + "city" + ], + [ + "in", + "ldir", + "E", + "S", + "SE", + "SW" + ], + [ + "in", + "scalerank", + 3, + 4, + 5 + ] + ], + "type": "symbol", + "source": "composite", + "id": "place-city-md-s", + "paint": { + "text-halo-width": 1, + "text-halo-color": "hsl(0, 0%, 100%)", + "text-color": "hsl(0, 0%, 0%)", + "text-halo-blur": 1, + "icon-opacity": { + "base": 1, + "stops": [ + [ + 7.99, + 1 + ], + [ + 8, + 0 + ] + ] + } + }, + "source-layer": "place_label" + }, + { + "layout": { + "icon-image": "dot-10", + "text-font": { + "base": 1, + "stops": [ + [ + 7, + [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ] + ], + [ + 8, + [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ] + ] + ] + }, + "text-offset": { + "base": 1, + "stops": [ + [ + 7.99, + [ + 0, + -0.25 + ] + ], + [ + 8, + [ + 0, + 0 + ] + ] + ] + }, + "text-anchor": { + "base": 1, + "stops": [ + [ + 7, + "bottom" + ], + [ + 8, + "center" + ] + ] + }, + "text-field": "{name_en}", + "text-max-width": 7, + "text-size": { + "base": 0.9, + "stops": [ + [ + 5, + 12 + ], + [ + 12, + 22 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444862510685.128" + }, + "maxzoom": 14, + "filter": [ + "all", + [ + "==", + "type", + "city" + ], + [ + "in", + "ldir", + "N", + "NE", + "NW", + "W" + ], + [ + "in", + "scalerank", + 3, + 4, + 5 + ] + ], + "type": "symbol", + "source": "composite", + "id": "place-city-md-n", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "icon-opacity": { + "base": 1, + "stops": [ + [ + 7.99, + 1 + ], + [ + 8, + 0 + ] + ] + }, + "text-halo-blur": 1 + }, + "source-layer": "place_label" + }, + { + "minzoom": 1, + "layout": { + "icon-image": "dot-11", + "text-font": { + "base": 1, + "stops": [ + [ + 7, + [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ] + ], + [ + 8, + [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ] + ] + ] + }, + "text-offset": { + "base": 1, + "stops": [ + [ + 7.99, + [ + 0, + 0.15 + ] + ], + [ + 8, + [ + 0, + 0 + ] + ] + ] + }, + "text-anchor": { + "base": 1, + "stops": [ + [ + 7, + "top" + ], + [ + 8, + "center" + ] + ] + }, + "text-field": "{name_en}", + "text-max-width": 7, + "text-size": { + "base": 0.9, + "stops": [ + [ + 4, + 12 + ], + [ + 10, + 22 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444862510685.128" + }, + "maxzoom": 14, + "filter": [ + "all", + [ + "<=", + "scalerank", + 2 + ], + [ + "==", + "type", + "city" + ], + [ + "in", + "ldir", + "E", + "S", + "SE", + "SW" + ] + ], + "type": "symbol", + "source": "composite", + "id": "place-city-lg-s", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "icon-opacity": { + "base": 1, + "stops": [ + [ + 7.99, + 1 + ], + [ + 8, + 0 + ] + ] + }, + "text-halo-blur": 1 + }, + "source-layer": "place_label" + }, + { + "minzoom": 1, + "layout": { + "icon-image": "dot-11", + "text-font": { + "base": 1, + "stops": [ + [ + 7, + [ + "DIN Offc Pro Regular", + "Arial Unicode MS Regular" + ] + ], + [ + 8, + [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ] + ] + ] + }, + "text-offset": { + "base": 1, + "stops": [ + [ + 7.99, + [ + 0, + -0.25 + ] + ], + [ + 8, + [ + 0, + 0 + ] + ] + ] + }, + "text-anchor": { + "base": 1, + "stops": [ + [ + 7, + "bottom" + ], + [ + 8, + "center" + ] + ] + }, + "text-field": "{name_en}", + "text-max-width": 7, + "text-size": { + "base": 0.9, + "stops": [ + [ + 4, + 12 + ], + [ + 10, + 22 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444862510685.128" + }, + "maxzoom": 14, + "filter": [ + "all", + [ + "<=", + "scalerank", + 2 + ], + [ + "==", + "type", + "city" + ], + [ + "in", + "ldir", + "N", + "NE", + "NW", + "W" + ] + ], + "type": "symbol", + "source": "composite", + "id": "place-city-lg-n", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-opacity": 1, + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "icon-opacity": { + "base": 1, + "stops": [ + [ + 7.99, + 1 + ], + [ + 8, + 0 + ] + ] + }, + "text-halo-blur": 1 + }, + "source-layer": "place_label" + }, + { + "minzoom": 3, + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1, + "stops": [ + [ + 3, + 12 + ], + [ + 6, + 16 + ] + ] + }, + "symbol-spacing": { + "base": 1, + "stops": [ + [ + 4, + 100 + ], + [ + 6, + 400 + ] + ] + }, + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "symbol-placement": "line", + "text-field": "{name_en}", + "text-letter-spacing": 0.1, + "text-max-width": 5 + }, + "metadata": { + "mapbox:group": "1444856087950.3635" + }, + "maxzoom": 10, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "type": "symbol", + "source": "composite", + "id": "marine-label-sm-ln", + "paint": { + "text-color": "hsl(205, 83%, 88%)" + }, + "source-layer": "marine_label" + }, + { + "minzoom": 3, + "layout": { + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.1, + "text-line-height": 1.5, + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 3, + 12 + ], + [ + 6, + 16 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444856087950.3635" + }, + "maxzoom": 10, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "type": "symbol", + "source": "composite", + "id": "marine-label-sm-pt", + "paint": { + "text-color": "hsl(205, 83%, 88%)" + }, + "source-layer": "marine_label" + }, + { + "minzoom": 2, + "layout": { + "text-line-height": 1.1, + "text-size": { + "base": 1.1, + "stops": [ + [ + 2, + 12 + ], + [ + 5, + 20 + ] + ] + }, + "symbol-spacing": 250, + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "symbol-placement": "line", + "text-field": "{name_en}", + "text-letter-spacing": 0.15, + "text-max-width": 5 + }, + "metadata": { + "mapbox:group": "1444856087950.3635" + }, + "maxzoom": 8, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "in", + "labelrank", + 2, + 3 + ] + ], + "type": "symbol", + "source": "composite", + "id": "marine-label-md-ln", + "paint": { + "text-color": "hsl(205, 83%, 88%)" + }, + "source-layer": "marine_label" + }, + { + "minzoom": 2, + "layout": { + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.15, + "text-line-height": 1.5, + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1.1, + "stops": [ + [ + 2, + 14 + ], + [ + 5, + 20 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444856087950.3635" + }, + "maxzoom": 8, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "in", + "labelrank", + 2, + 3 + ] + ], + "type": "symbol", + "source": "composite", + "id": "marine-label-md-pt", + "paint": { + "text-color": "hsl(205, 83%, 88%)" + }, + "source-layer": "marine_label" + }, + { + "minzoom": 1, + "layout": { + "text-field": "{name_en}", + "text-max-width": 4, + "text-letter-spacing": 0.25, + "text-line-height": 1.1, + "symbol-placement": "line", + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 1, + 14 + ], + [ + 4, + 30 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444856087950.3635" + }, + "maxzoom": 4, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "type": "symbol", + "source": "composite", + "id": "marine-label-lg-ln", + "paint": { + "text-color": "hsl(205, 83%, 88%)" + }, + "source-layer": "marine_label" + }, + { + "minzoom": 1, + "layout": { + "text-field": "{name_en}", + "text-max-width": 4, + "text-letter-spacing": 0.25, + "text-line-height": 1.5, + "text-font": [ + "DIN Offc Pro Italic", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 1, + 14 + ], + [ + 4, + 30 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444856087950.3635" + }, + "maxzoom": 4, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "type": "symbol", + "source": "composite", + "id": "marine-label-lg-pt", + "paint": { + "text-color": "hsl(205, 83%, 88%)" + }, + "source-layer": "marine_label" + }, + { + "minzoom": 3, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [ + 6, + 10 + ], + [ + 9, + 14 + ] + ] + }, + "text-transform": "uppercase", + "text-font": [ + "DIN Offc Pro Bold", + "Arial Unicode MS Bold" + ], + "text-field": { + "base": 1, + "stops": [ + [ + 0, + "{abbr}" + ], + [ + 6, + "{name_en}" + ] + ] + }, + "text-letter-spacing": 0.15, + "text-max-width": 5 + }, + "metadata": { + "mapbox:group": "1444856151690.9143" + }, + "maxzoom": 9, + "filter": [ + "<", + "area", + 20000 + ], + "type": "symbol", + "source": "composite", + "id": "state-label-sm", + "paint": { + "text-opacity": 1, + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1 + }, + "source-layer": "state_label" + }, + { + "minzoom": 3, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [ + 5, + 10 + ], + [ + 8, + 16 + ] + ] + }, + "text-transform": "uppercase", + "text-font": [ + "DIN Offc Pro Bold", + "Arial Unicode MS Bold" + ], + "text-field": { + "base": 1, + "stops": [ + [ + 0, + "{abbr}" + ], + [ + 5, + "{name_en}" + ] + ] + }, + "text-letter-spacing": 0.15, + "text-max-width": 6 + }, + "metadata": { + "mapbox:group": "1444856151690.9143" + }, + "maxzoom": 8, + "filter": [ + "all", + [ + "<", + "area", + 80000 + ], + [ + ">=", + "area", + 20000 + ] + ], + "type": "symbol", + "source": "composite", + "id": "state-label-md", + "paint": { + "text-opacity": 1, + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1 + }, + "source-layer": "state_label" + }, + { + "minzoom": 3, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [ + 4, + 10 + ], + [ + 7, + 18 + ] + ] + }, + "text-transform": "uppercase", + "text-font": [ + "DIN Offc Pro Bold", + "Arial Unicode MS Bold" + ], + "text-padding": 1, + "text-field": { + "base": 1, + "stops": [ + [ + 0, + "{abbr}" + ], + [ + 4, + "{name_en}" + ] + ] + }, + "text-letter-spacing": 0.15, + "text-max-width": 6 + }, + "metadata": { + "mapbox:group": "1444856151690.9143" + }, + "maxzoom": 7, + "filter": [ + ">=", + "area", + 80000 + ], + "type": "symbol", + "source": "composite", + "id": "state-label-lg", + "paint": { + "text-opacity": 1, + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1 + }, + "source-layer": "state_label" + }, + { + "minzoom": 1, + "layout": { + "text-field": "{name_en}", + "text-max-width": 6, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 0.9, + "stops": [ + [ + 5, + 14 + ], + [ + 9, + 22 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444856144497.7825" + }, + "maxzoom": 10, + "filter": [ + ">=", + "scalerank", + 5 + ], + "type": "symbol", + "source": "composite", + "id": "country-label-sm", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": { + "base": 1, + "stops": [ + [ + 2, + "rgba(255,255,255,0.75)" + ], + [ + 3, + "hsl(0, 0%, 100%)" + ] + ] + }, + "text-halo-width": 1.25 + }, + "source-layer": "country_label" + }, + { + "minzoom": 1, + "layout": { + "text-field": { + "base": 1, + "stops": [ + [ + 0, + "{code}" + ], + [ + 2, + "{name_en}" + ] + ] + }, + "text-max-width": 6, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 3, + 10 + ], + [ + 8, + 24 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444856144497.7825" + }, + "maxzoom": 8, + "filter": [ + "in", + "scalerank", + 3, + 4 + ], + "type": "symbol", + "source": "composite", + "id": "country-label-md", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": { + "base": 1, + "stops": [ + [ + 2, + "rgba(255,255,255,0.75)" + ], + [ + 3, + "hsl(0, 0%, 100%)" + ] + ] + }, + "text-halo-width": 1.25 + }, + "source-layer": "country_label" + }, + { + "minzoom": 1, + "layout": { + "text-field": "{name_en}", + "text-max-width": { + "base": 1, + "stops": [ + [ + 0, + 5 + ], + [ + 3, + 6 + ] + ] + }, + "text-font": [ + "DIN Offc Pro Medium", + "Arial Unicode MS Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 1, + 10 + ], + [ + 6, + 24 + ] + ] + } + }, + "metadata": { + "mapbox:group": "1444856144497.7825" + }, + "maxzoom": 7, + "filter": [ + "in", + "scalerank", + 1, + 2 + ], + "type": "symbol", + "source": "composite", + "id": "country-label-lg", + "paint": { + "text-color": "hsl(0, 0%, 0%)", + "text-halo-color": { + "base": 1, + "stops": [ + [ + 2, + "rgba(255,255,255,0.75)" + ], + [ + 3, + "hsl(0, 0%, 100%)" + ] + ] + }, + "text-halo-width": 1.25 + }, + "source-layer": "country_label" + } + ], + "created": "2016-05-14T20:42:20.772Z", + "id": "cio7mcryg0015akm9b6wur5ic", + "modified": "2016-12-09T00:27:11.461Z", + "owner": "gmaclennan", + "draft": false +} \ No newline at end of file diff --git a/package.json b/package.json index 96fe294..7f11e4f 100644 --- a/package.json +++ b/package.json @@ -67,15 +67,21 @@ "budo": "^8.0.4", "copyfiles": "^0.2.1", "dependency-check": "^2.5.1", + "dotenv": "^2.0.0", "envify": "^3.4.1", "gh-pages": "^0.11.0", "mkdirp": "^0.5.1", + "pump": "^1.0.1", + "request": "^2.79.0", + "rimraf": "^2.5.4", "spritesmith-cli": "^1.1.2", "spritezero-cli": "^1.0.2", "standard": "^8.5.0", "tape": "^4.4.0", + "traverse": "^0.6.6", "uglify-js": "^2.7.4", - "uglifyify": "^3.0.4" + "uglifyify": "^3.0.4", + "urlencode": "^1.1.0" }, "license": "MIT", "scripts": { diff --git a/src/components/map_view.js b/src/components/map_view.js index 1cfae04..17061e4 100644 --- a/src/components/map_view.js +++ b/src/components/map_view.js @@ -17,7 +17,12 @@ require('../../css/popup.css') /* Mapbox [API access token](https://www.mapbox.com/help/create-api-access-token/) */ mapboxgl.accessToken = config.mapboxToken -const DEFAULT_STYLE = 'mapbox://styles/gmaclennan/cio7mcryg0015akm9b6wur5ic' +const mapStyle = require('../../example/map_style/style.json') +const loc = window.location +const baseUrl = loc.protocol + '//' + loc.host + '/map_style/' +;['glyphs', 'sprite'].forEach(function (key) { + mapStyle[key] = mapStyle[key].replace(/mapfilter:\/\//, baseUrl) +}) const emptyFeatureCollection = { type: 'FeatureCollection', @@ -59,7 +64,7 @@ const noop = (x) => x class MapView extends React.Component { static defaultProps = { - mapStyle: DEFAULT_STYLE, + mapStyle: mapStyle, geojson: emptyFeatureCollection, onMarkerClick: noop, onMove: noop