From 85eda602564b462d2027661b09bbc3b2a4a13e20 Mon Sep 17 00:00:00 2001 From: Tom <58078313+reed-tom@users.noreply.github.com> Date: Thu, 28 Mar 2024 09:38:05 -0400 Subject: [PATCH] Feature/arcgis support (#225) * removed secondary waste collection day * re-enabled crossOrigin flag * merge from private repo to include various changes to support arcgis layers and many other enhancements * various bug fixes * fixed layer visiblility issue on themes * removed unused code --- .env.sample | 6 + package-lock.json | 509 +- package.json | 6 + public/auth.html | 1 + public/basemap/ESRI_LightGrey.json | 5021 ++++++++++++++- .../ESRI_Streets_Night_Background.json | 5460 ++++++++++++++++- src/App.js | 5 +- src/AppSecure.jsx | 256 + src/ErrorBoundary.jsx | 30 + src/authConfig.js | 51 + src/config-secured.json | 16 + src/helpers/AttributeTable.jsx | 540 +- src/helpers/Identify.js | 173 + src/helpers/InfoTable.css | 28 + src/helpers/InfoTable.jsx | 45 + src/helpers/OLHelpers.js | 114 +- src/helpers/api.js | 71 +- src/helpers/date.js | 51 + src/helpers/esriHelpers.js | 153 + src/helpers/helpers.js | 248 +- src/helpers/storage.js | 57 + src/index.js | 38 +- src/layerInfo/App.js | 14 +- src/legend/LegendItem.jsx | 99 +- src/legend/helpers.js | 1 - src/map/Attachments.jsx | 11 +- src/map/BasemapSwitcherContext.js | 2 +- src/map/Identify.jsx | 22 +- src/map/IdentifyQuery.jsx | 76 + src/map/PropertyReport.css | 121 - src/map/PropertyReportClick.css | 29 +- src/map/PropertyReportClick.jsx | 364 +- src/map/SCMap.jsx | 25 +- src/map/Screenshot.jsx | 3 +- src/map/basemapSwitcherConfig.json | 18 +- src/map/extensions/Sample.extension.js | 55 + src/map/extensions/_loader.js | 22 + src/map/extensions/config.json | 3 + src/map/extensions/sample.config.json | 3 + src/reports/PropertyReport.css | 121 + src/{map => reports}/PropertyReport.jsx | 0 src/sidebar/MenuButton.jsx | 70 +- src/sidebar/Sidebar.jsx | 1 - src/sidebar/SidebarItemList.css | 70 +- src/sidebar/SidebarItemList.jsx | 134 +- .../components/mymaps/FeatureReportPopup.jsx | 1 - src/sidebar/components/mymaps/MyMaps.jsx | 72 +- .../components/mymaps/MyMapsAdvanced.jsx | 183 +- .../components/mymaps/MyMapsFooter.jsx | 116 +- src/sidebar/components/mymaps/MyMapsPopup.jsx | 3 + .../extensions/ReportProblem.extension.js | 51 + .../components/mymaps/extensions/_loader.js | 22 + .../components/mymaps/extensions/config.json | 3 + .../CommercialRealEstate.jsx | 18 +- .../CommercialRealEstateLayerToggler.jsx | 4 +- .../CommercialRealEstateResults.jsx | 144 +- .../themes/commercialrealestate/config.json | 77 +- .../five11livefeeds/Five11LayerToggler.jsx | 10 +- .../five11livefeeds/Five11LiveFeeds.jsx | 3 +- .../ImmigrationServicesLayerToggler.jsx | 2 +- .../LocalRealEstateImageSlider.jsx | 23 +- .../LocalRealEstateLayerToggler.jsx | 39 +- .../LocalRealEstateRecents.jsx | 134 +- .../themeComponents/ThemeBaseLayers.jsx | 295 +- .../themes/themeComponents/ThemeContainer.jsx | 74 +- .../themes/themeComponents/ThemeData.jsx | 91 +- .../themes/themeComponents/ThemeDataList.jsx | 199 +- .../themeComponents/ThemeLayerToggler.jsx | 271 +- .../themes/themeComponents/ThemeLayers.css | 7 + .../themes/themeComponents/ThemeLayers.jsx | 62 +- .../themeComponents/ThemePopupContent.css | 10 +- .../themeComponents/ThemePopupContent.jsx | 70 +- .../themeComponents/ThemeServiceToggler.css | 77 + .../themeComponents/ThemeServiceToggler.jsx | 310 + src/sidebar/components/toc/TOC.jsx | 49 +- .../components/toc/common/TOCHeader.css | 1 - .../components/toc/common/TOCHeader.jsx | 1 - .../components/toc/common/TOCHelpers.jsx | 152 +- .../components/tools/addlayer/AddLayer.jsx | 5 +- .../components/tools/addlayer/config.json | 6 +- .../lotandconcession/LotAndConcession.jsx | 15 +- src/sidebar/components/tools/print/Print.jsx | 32 +- .../tools/print/printRequest/printRequest.js | 12 +- .../tools/searchaddresses/SearchAddresses.css | 24 +- .../tools/searchaddresses/SearchAddresses.jsx | 45 +- .../components/tools/settings/Settings.jsx | 44 +- .../tools/settings/SettingsComponents.jsx | 72 +- src/sidebar/images/lock-icon.png | Bin 0 -> 841 bytes 88 files changed, 14896 insertions(+), 2076 deletions(-) create mode 100644 .env.sample create mode 100644 public/auth.html create mode 100644 src/AppSecure.jsx create mode 100644 src/ErrorBoundary.jsx create mode 100644 src/authConfig.js create mode 100644 src/config-secured.json create mode 100644 src/helpers/Identify.js create mode 100644 src/helpers/InfoTable.css create mode 100644 src/helpers/InfoTable.jsx create mode 100644 src/helpers/date.js create mode 100644 src/helpers/esriHelpers.js create mode 100644 src/helpers/storage.js create mode 100644 src/map/IdentifyQuery.jsx delete mode 100644 src/map/PropertyReport.css create mode 100644 src/map/extensions/Sample.extension.js create mode 100644 src/map/extensions/_loader.js create mode 100644 src/map/extensions/config.json create mode 100644 src/map/extensions/sample.config.json create mode 100644 src/reports/PropertyReport.css rename src/{map => reports}/PropertyReport.jsx (100%) create mode 100644 src/sidebar/components/mymaps/extensions/ReportProblem.extension.js create mode 100644 src/sidebar/components/mymaps/extensions/_loader.js create mode 100644 src/sidebar/components/mymaps/extensions/config.json create mode 100644 src/sidebar/components/themes/themeComponents/ThemeServiceToggler.css create mode 100644 src/sidebar/components/themes/themeComponents/ThemeServiceToggler.jsx create mode 100644 src/sidebar/images/lock-icon.png diff --git a/.env.sample b/.env.sample new file mode 100644 index 00000000..d602a299 --- /dev/null +++ b/.env.sample @@ -0,0 +1,6 @@ +REACT_APP_SECURED="false" +REACT_APP_TENANT="TENANT_ID" +REACT_APP_DEFAULT_SCOPE="DEFAULT_SCOPE" +REACT_APP_CLIENTID="CLIENT_ID" +REACT_APP_AUTHORITY="AUTHORITY" + diff --git a/package-lock.json b/package-lock.json index 9f832cf5..abd2802b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,6 +8,9 @@ "name": "opengis", "version": "1.4.2", "dependencies": { + "@arcgis/core": "^4.26.5", + "@azure/msal-browser": "^3.7.1", + "@azure/msal-react": "^2.0.10", "@emotion/react": "^11.11.1", "@emotion/styled": "^11.11.0", "@mui/material": "^5.14.4", @@ -50,6 +53,9 @@ "slick-carousel": "^1.8.1", "styled-components": "^5.3.6", "url": "^0.11.1" + }, + "devDependencies": { + "dotenv": "^16.4.5" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -83,6 +89,52 @@ "node": ">=6.0.0" } }, + "node_modules/@arcgis/core": { + "version": "4.29.8", + "resolved": "https://registry.npmjs.org/@arcgis/core/-/core-4.29.8.tgz", + "integrity": "sha512-H6vdmGwmGdX80wRMiTxEyTHcDG69a5iEWTi46sC+apAVGnubAbAqU8fsGj/5K3qiTqkZdGIVKSB9WqDH0oenfw==", + "dependencies": { + "@esri/arcgis-html-sanitizer": "~3.0.1", + "@esri/calcite-colors": "~6.1.0", + "@esri/calcite-components": "^2.4.0", + "@popperjs/core": "~2.11.8", + "@vaadin/grid": "~24.3.6", + "@zip.js/zip.js": "~2.7.34", + "luxon": "~3.4.4", + "sortablejs": "~1.15.2" + } + }, + "node_modules/@azure/msal-browser": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-3.10.0.tgz", + "integrity": "sha512-mnmi8dCXVNZI+AGRq0jKQ3YiodlIC4W9npr6FCB9WN6NQT+6rq+cIlxgUb//BjLyzKsnYo+i4LROGeMyU+6v1A==", + "dependencies": { + "@azure/msal-common": "14.7.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-common": { + "version": "14.7.1", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-14.7.1.tgz", + "integrity": "sha512-v96btzjM7KrAu4NSEdOkhQSTGOuNUIIsUdB8wlyB9cdgl5KqEKnTonHUZ8+khvZ6Ap542FCErbnTyDWl8lZ2rA==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@azure/msal-react": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@azure/msal-react/-/msal-react-2.0.12.tgz", + "integrity": "sha512-23HKdajBWQ5SSzcwwFKHAWaOCpq4UCthoOBgKpab3UoHx0OuFMQiq6CrNBzBKtBFdyxCjadBGzWshRgl0Nvk1g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@azure/msal-browser": "^3.10.0", + "react": "^16.8.0 || ^17 || ^18" + } + }, "node_modules/@babel/code-frame": { "version": "7.22.13", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", @@ -2550,6 +2602,41 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@esri/arcgis-html-sanitizer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@esri/arcgis-html-sanitizer/-/arcgis-html-sanitizer-3.0.1.tgz", + "integrity": "sha512-cwZJwsYCJZwtBQU2AmaiIVFg5nZcVwInPYja1/OgC9iKYO+ytZRoc5h+0S9/ygbFNoS8Nd0RX9A85stLX/BgiA==", + "dependencies": { + "xss": "1.0.13" + } + }, + "node_modules/@esri/calcite-colors": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@esri/calcite-colors/-/calcite-colors-6.1.0.tgz", + "integrity": "sha512-wHQYWFtDa6c328EraXEVZvgOiaQyYr0yuaaZ0G3cB4C3lSkWefW34L/e5TLAhtuG3zJ/wR6pl5X1YYNfBc0/4Q==" + }, + "node_modules/@esri/calcite-components": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@esri/calcite-components/-/calcite-components-2.6.0.tgz", + "integrity": "sha512-GbpascF/mI3TvC5EQejzMi8zDG/wv0pzGU5HzUsrzHqIkIwRruuIe7qdg/srjaEQkXwwpJKxfd8r5QaBXjlQWw==", + "dependencies": { + "@floating-ui/dom": "1.6.3", + "@stencil/core": "4.9.0", + "@types/color": "3.0.6", + "color": "4.2.3", + "composed-offset-position": "0.0.4", + "dayjs": "1.11.10", + "focus-trap": "7.5.4", + "lodash-es": "4.17.21", + "sortablejs": "1.15.1", + "timezone-groups": "0.8.0" + } + }, + "node_modules/@esri/calcite-components/node_modules/sortablejs": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.1.tgz", + "integrity": "sha512-P5Cjvb0UG1ZVNiDPj/n4V+DinttXG6K8n7vM/HQf0C25K3YKQTQY6fsr/sEGsJGpQ9exmPxluHxKBc0mLKU1lQ==" + }, "node_modules/@floating-ui/core": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.4.1.tgz", @@ -2559,14 +2646,19 @@ } }, "node_modules/@floating-ui/dom": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.2.tgz", - "integrity": "sha512-6ArmenS6qJEWmwzczWyhvrXRdI/rI78poBcW0h/456+onlabit+2G+QxHx5xTOX60NBJQXjsCLFbW2CmsXpUog==", + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", + "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", "dependencies": { - "@floating-ui/core": "^1.4.1", - "@floating-ui/utils": "^0.1.1" + "@floating-ui/core": "^1.0.0", + "@floating-ui/utils": "^0.2.0" } }, + "node_modules/@floating-ui/dom/node_modules/@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==" + }, "node_modules/@floating-ui/react-dom": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.2.tgz", @@ -3350,6 +3442,19 @@ "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" }, + "node_modules/@lit-labs/ssr-dom-shim": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.2.0.tgz", + "integrity": "sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==" + }, + "node_modules/@lit/reactive-element": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.4.tgz", + "integrity": "sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.2.0" + } + }, "node_modules/@mapbox/jsonlint-lines-primitives": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", @@ -3681,6 +3786,11 @@ "node": ">= 8" } }, + "node_modules/@open-wc/dedupe-mixin": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@open-wc/dedupe-mixin/-/dedupe-mixin-1.4.0.tgz", + "integrity": "sha512-Sj7gKl1TLcDbF7B6KUhtvr+1UCxdhMbNY5KxdU5IfMFWqL8oy1ZeAcCANjoB1TL0AJTcPmcCFsCbHf8X2jGDUA==" + }, "node_modules/@petamoriken/float16": { "version": "3.8.3", "resolved": "https://registry.npmjs.org/@petamoriken/float16/-/float16-3.8.3.tgz", @@ -3743,6 +3853,14 @@ "node": ">= 8" } }, + "node_modules/@polymer/polymer": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.5.1.tgz", + "integrity": "sha512-JlAHuy+1qIC6hL1ojEUfIVD58fzTpJAoCxFwV5yr0mYTXV1H8bz5zy0+rC963Cgr9iNXQ4T9ncSjC2fkF9BQfw==", + "dependencies": { + "@webcomponents/shadycss": "^1.9.1" + } + }, "node_modules/@popperjs/core": { "version": "2.11.8", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", @@ -3898,6 +4016,18 @@ "@sinonjs/commons": "^1.7.0" } }, + "node_modules/@stencil/core": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.9.0.tgz", + "integrity": "sha512-aWSkhBmk3yPwRAkUwBbzRwmdhb8hKiQ/JMr9m5jthpBZLjtppYbzz6PN2MhSMDfRp6K93eQw5WogSEH4HHuB6w==", + "bin": { + "stencil": "bin/stencil" + }, + "engines": { + "node": ">=16.0.0", + "npm": ">=7.10.0" + } + }, "node_modules/@surma/rollup-plugin-off-main-thread": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", @@ -4186,6 +4316,27 @@ "@types/node": "*" } }, + "node_modules/@types/color": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/color/-/color-3.0.6.tgz", + "integrity": "sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==", + "dependencies": { + "@types/color-convert": "*" + } + }, + "node_modules/@types/color-convert": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.3.tgz", + "integrity": "sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==", + "dependencies": { + "@types/color-name": "*" + } + }, + "node_modules/@types/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==" + }, "node_modules/@types/connect": { "version": "3.4.36", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz", @@ -4670,6 +4821,172 @@ "url": "https://opencollective.com/typescript-eslint" } }, + "node_modules/@vaadin/a11y-base": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/a11y-base/-/a11y-base-24.3.9.tgz", + "integrity": "sha512-4oD42LX8WuhGmJoFENb6viaHGelcXhZxzxcq5HjRi/w5MvIk6PgFcRYlzrW7i+vzh5YeHeSl1RxAMQX88xIe6Q==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "@polymer/polymer": "^3.0.0", + "@vaadin/component-base": "~24.3.9", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/checkbox": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/checkbox/-/checkbox-24.3.9.tgz", + "integrity": "sha512-bdw9UU1OZjkhF5XwYMVxIsP1ILv1y3+jyyiJgWsBCUuLY4LCtNvd+xRuecePv+UWzhjfW2Ci3ieTGRW1AANyIw==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "@polymer/polymer": "^3.0.0", + "@vaadin/a11y-base": "~24.3.9", + "@vaadin/component-base": "~24.3.9", + "@vaadin/field-base": "~24.3.9", + "@vaadin/vaadin-lumo-styles": "~24.3.9", + "@vaadin/vaadin-material-styles": "~24.3.9", + "@vaadin/vaadin-themable-mixin": "~24.3.9", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/component-base": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/component-base/-/component-base-24.3.9.tgz", + "integrity": "sha512-SZ4tV9CeI6EZjpxEmoezwzdTd8td0BrQ7fU3H0JKZNSrfPEm85MdtFd4+ob0MSZRIV0oiukQhXxpU3WtCvU4OQ==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "@polymer/polymer": "^3.0.0", + "@vaadin/vaadin-development-mode-detector": "^2.0.0", + "@vaadin/vaadin-usage-statistics": "^2.1.0", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/field-base": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/field-base/-/field-base-24.3.9.tgz", + "integrity": "sha512-2au/ad6s5PgQdCE8osWHsdUTsjykUBBcP2+wO0bi4rgV3KWgU3HVmftfDZC96cGXGlwB5DmnOBgumiWwwl9Mqw==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "@polymer/polymer": "^3.0.0", + "@vaadin/a11y-base": "~24.3.9", + "@vaadin/component-base": "~24.3.9", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/grid": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/grid/-/grid-24.3.9.tgz", + "integrity": "sha512-0gOUE4NfxcifadOxTBkAh5S5tSYNIT4Jmm9K19FHAnN935z3xJMlASzllywn0eKkISvk6ms2GXJ62gTgjjZHMA==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "@polymer/polymer": "^3.0.0", + "@vaadin/a11y-base": "~24.3.9", + "@vaadin/checkbox": "~24.3.9", + "@vaadin/component-base": "~24.3.9", + "@vaadin/lit-renderer": "~24.3.9", + "@vaadin/text-field": "~24.3.9", + "@vaadin/vaadin-lumo-styles": "~24.3.9", + "@vaadin/vaadin-material-styles": "~24.3.9", + "@vaadin/vaadin-themable-mixin": "~24.3.9" + } + }, + "node_modules/@vaadin/icon": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/icon/-/icon-24.3.9.tgz", + "integrity": "sha512-gisYrtL2auElq2EnDcFLaIeUBiHzrwSzbrUvoupSWbotDnKIYRZVMGyPLRkWCQBqdncH+R0Doj9AuM6No7Pdag==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "@polymer/polymer": "^3.0.0", + "@vaadin/component-base": "~24.3.9", + "@vaadin/vaadin-lumo-styles": "~24.3.9", + "@vaadin/vaadin-themable-mixin": "~24.3.9", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/input-container": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/input-container/-/input-container-24.3.9.tgz", + "integrity": "sha512-d6dcN+TIhE4wq8a1/ONv6zSNV6L0pfaCbbc9XMkOtWsY4IrPsrbLKTfaAD0CG/V7I4xQIR64I/5fKUGPqn+jsg==", + "dependencies": { + "@polymer/polymer": "^3.0.0", + "@vaadin/component-base": "~24.3.9", + "@vaadin/vaadin-lumo-styles": "~24.3.9", + "@vaadin/vaadin-material-styles": "~24.3.9", + "@vaadin/vaadin-themable-mixin": "~24.3.9", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/lit-renderer": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/lit-renderer/-/lit-renderer-24.3.9.tgz", + "integrity": "sha512-KaOwU8Up4UGUE51H3wgsGyDGplkvL1pP7cyduO7b+wVu8enqboarkKIAHb5jSS5/ImZzfs9lZZLh5zQVlejgpw==", + "dependencies": { + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/text-field": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/text-field/-/text-field-24.3.9.tgz", + "integrity": "sha512-q3lvEfhBTD/iaqDysH0nNyfkbyoTWIuk3/wRaWxwahzQ8zH9VajHUm6gifLVM6DBDgQJHTu3kSA15l2ka3b/pw==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "@polymer/polymer": "^3.0.0", + "@vaadin/a11y-base": "~24.3.9", + "@vaadin/component-base": "~24.3.9", + "@vaadin/field-base": "~24.3.9", + "@vaadin/input-container": "~24.3.9", + "@vaadin/vaadin-lumo-styles": "~24.3.9", + "@vaadin/vaadin-material-styles": "~24.3.9", + "@vaadin/vaadin-themable-mixin": "~24.3.9", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/vaadin-development-mode-detector": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@vaadin/vaadin-development-mode-detector/-/vaadin-development-mode-detector-2.0.6.tgz", + "integrity": "sha512-N6a5nLT/ytEUlpPo+nvdCKIGoyNjPsj3rzPGvGYK8x9Ceg76OTe1xI/GtN71mRW9e2HUScR0kCNOkl1Z63YDjw==" + }, + "node_modules/@vaadin/vaadin-lumo-styles": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/vaadin-lumo-styles/-/vaadin-lumo-styles-24.3.9.tgz", + "integrity": "sha512-ZLgLpM97JH5eyAvVdbIaLNm+AHnyVhVlTfPEieYPNcJAv1bBCRDf3DFVuX2+A61u2imik+JfMtlqgEzJd7U9zg==", + "dependencies": { + "@polymer/polymer": "^3.0.0", + "@vaadin/component-base": "~24.3.9", + "@vaadin/icon": "~24.3.9", + "@vaadin/vaadin-themable-mixin": "~24.3.9" + } + }, + "node_modules/@vaadin/vaadin-material-styles": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/vaadin-material-styles/-/vaadin-material-styles-24.3.9.tgz", + "integrity": "sha512-pXLWn6IEX1sBnlXmUzhBs77D+fyu0VlbvFonjV9ImbcA3DzFqpf8vtT82pL0SGBeJRfdimGQmjDS+R0FMjPlyw==", + "dependencies": { + "@polymer/polymer": "^3.0.0", + "@vaadin/component-base": "~24.3.9", + "@vaadin/vaadin-themable-mixin": "~24.3.9" + } + }, + "node_modules/@vaadin/vaadin-themable-mixin": { + "version": "24.3.9", + "resolved": "https://registry.npmjs.org/@vaadin/vaadin-themable-mixin/-/vaadin-themable-mixin-24.3.9.tgz", + "integrity": "sha512-PB/zz+E8Y6ly7FASMTyOI7ibKwWg4O+ud+OjD1OK9KqKasPLdj33rU11y/T6DrRD7k46Wk5FFy26olbUfg3/QQ==", + "dependencies": { + "@open-wc/dedupe-mixin": "^1.3.0", + "lit": "^3.0.0" + } + }, + "node_modules/@vaadin/vaadin-usage-statistics": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@vaadin/vaadin-usage-statistics/-/vaadin-usage-statistics-2.1.2.tgz", + "integrity": "sha512-xKs1PvRfTXsG0eWWcImLXWjv7D+f1vfoIvovppv6pZ5QX8xgcxWUdNgERlOOdGt3CTuxQXukTBW3+Qfva+OXSg==", + "hasInstallScript": true, + "dependencies": { + "@vaadin/vaadin-development-mode-detector": "^2.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, "node_modules/@webassemblyjs/ast": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", @@ -4801,6 +5118,11 @@ "@xtuc/long": "4.2.2" } }, + "node_modules/@webcomponents/shadycss": { + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/@webcomponents/shadycss/-/shadycss-1.11.2.tgz", + "integrity": "sha512-vRq+GniJAYSBmTRnhCYPAPq6THYqovJ/gzGThWbgEZUQaBccndGTi1hdiUP15HzEco0I6t4RCtXyX0rsSmwgPw==" + }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", @@ -4811,6 +5133,16 @@ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" }, + "node_modules/@zip.js/zip.js": { + "version": "2.7.40", + "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.40.tgz", + "integrity": "sha512-kSYwO0Wth6G66QM4CejZqG0nRhBsVVTaR18M/Ta8EcqcvaV0dYrnDDyKAstfy0V5+ejK4b9w5xc1W0ECATJTvA==", + "engines": { + "bun": ">=0.7.0", + "deno": ">=1.0.0", + "node": ">=16.5.0" + } + }, "node_modules/abab": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", @@ -6084,6 +6416,18 @@ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, "node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", @@ -6097,6 +6441,31 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, "node_modules/colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", @@ -6144,6 +6513,11 @@ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" }, + "node_modules/composed-offset-position": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/composed-offset-position/-/composed-offset-position-0.0.4.tgz", + "integrity": "sha512-vMlvu1RuNegVE0YsCDSV/X4X10j56mq7PCIyOKK74FxkXzGLwhOUmdkJLSdOBOMwWycobGUMgft2lp+YgTe8hw==" + }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", @@ -6604,6 +6978,11 @@ "node": ">=4" } }, + "node_modules/cssfilter": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==" + }, "node_modules/cssnano": { "version": "5.1.15", "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", @@ -6772,6 +7151,11 @@ "url": "https://opencollective.com/date-fns" } }, + "node_modules/dayjs": { + "version": "1.11.10", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz", + "integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -7092,11 +7476,15 @@ } }, "node_modules/dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" } }, "node_modules/dotenv-expand": { @@ -8426,6 +8814,14 @@ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" }, + "node_modules/focus-trap": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.5.4.tgz", + "integrity": "sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==", + "dependencies": { + "tabbable": "^6.2.0" + } + }, "node_modules/follow-redirects": { "version": "1.15.2", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", @@ -12241,6 +12637,34 @@ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, + "node_modules/lit": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lit/-/lit-3.1.2.tgz", + "integrity": "sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==", + "dependencies": { + "@lit/reactive-element": "^2.0.4", + "lit-element": "^4.0.4", + "lit-html": "^3.1.2" + } + }, + "node_modules/lit-element": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.4.tgz", + "integrity": "sha512-98CvgulX6eCPs6TyAIQoJZBCQPo80rgXR+dVBs61cstJXqtI+USQZAbA4gFHh6L/mxBx9MrgPLHLsUgDUHAcCQ==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.2.0", + "@lit/reactive-element": "^2.0.4", + "lit-html": "^3.1.2" + } + }, + "node_modules/lit-html": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.1.2.tgz", + "integrity": "sha512-3OBZSUrPnAHoKJ9AMjRL/m01YJxQMf+TMHanNtTHG68ubjnZxK0RFl102DPzsw4mWnHibfZIBJm3LWCZ/LmMvg==", + "dependencies": { + "@types/trusted-types": "^2.0.2" + } + }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", @@ -12338,6 +12762,14 @@ "yallist": "^3.0.2" } }, + "node_modules/luxon": { + "version": "3.4.4", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.4.tgz", + "integrity": "sha512-zobTr7akeGHnv7eBOXcRgMeCP6+uyYsczwmeRCauvpvaAltgNyTbLH/+VaEAPUeWBT+1GuNmz4wC/6jtQzbbVA==", + "engines": { + "node": ">=12" + } + }, "node_modules/magic-string": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", @@ -15373,6 +15805,14 @@ } } }, + "node_modules/react-scripts/node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "engines": { + "node": ">=10" + } + }, "node_modules/react-select": { "version": "5.7.4", "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.7.4.tgz", @@ -16375,6 +16815,19 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -16434,6 +16887,11 @@ "node": ">=0.10.0" } }, + "node_modules/sortablejs": { + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.15.2.tgz", + "integrity": "sha512-FJF5jgdfvoKn1MAKSdGs33bIqLi3LmsgVTliuX6iITj834F+JRQZN90Z93yql8h0K2t0RwDPBmxwlbZfDcxNZA==" + }, "node_modules/source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -17095,6 +17553,11 @@ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" }, + "node_modules/tabbable": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" + }, "node_modules/tailwindcss": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", @@ -17292,6 +17755,14 @@ "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" }, + "node_modules/timezone-groups": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/timezone-groups/-/timezone-groups-0.8.0.tgz", + "integrity": "sha512-t7E/9sPfCU0m0ZbS7Cqw52D6CB/UyeaiIBmyJCokI1SyOyOgA/ESiQ/fbreeFaUG9QSenGlZSSk/7rEbkipbOA==", + "bin": { + "timezone-groups": "dist/cli.cjs" + } + }, "node_modules/tinycolor2": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", @@ -18745,6 +19216,26 @@ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" }, + "node_modules/xss": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.13.tgz", + "integrity": "sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==", + "dependencies": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + }, + "bin": { + "xss": "bin/xss" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/xss/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", diff --git a/package.json b/package.json index fcc4aa7a..1793bd1b 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,9 @@ "version": "1.4.2", "private": true, "dependencies": { + "@arcgis/core": "^4.26.5", + "@azure/msal-browser": "^3.7.1", + "@azure/msal-react": "^2.0.10", "@emotion/react": "^11.11.1", "@emotion/styled": "^11.11.0", "@mui/material": "^5.14.4", @@ -65,5 +68,8 @@ "jshintConfig": { "loopfunc": true, "jsx-a11y/anchor-is-valid": true + }, + "devDependencies": { + "dotenv": "^16.4.5" } } diff --git a/public/auth.html b/public/auth.html new file mode 100644 index 00000000..e41f1c04 --- /dev/null +++ b/public/auth.html @@ -0,0 +1 @@ + diff --git a/public/basemap/ESRI_LightGrey.json b/public/basemap/ESRI_LightGrey.json index 7654e242..f878cbdb 100644 --- a/public/basemap/ESRI_LightGrey.json +++ b/public/basemap/ESRI_LightGrey.json @@ -1 +1,5020 @@ -{"version":8,"sprite":"https://www.arcgis.com/sharing/rest/content/items/0baf45ff172d4917b12f3a691bc87553/resources/styles/sprite-1569437124838","glyphs":"https://tiles.arcgis.com/tiles/B6yKvIZqzuOr0jBR/arcgis/rest/services/Canada_Topographic/VectorTileServer/resources/styles/../fonts/{fontstack}/{range}.pbf","sources":{"esri":{"type":"vector","url":"https://tiles.arcgis.com/tiles/B6yKvIZqzuOr0jBR/arcgis/rest/services/Canada_Topographic/VectorTileServer","tiles":["https://tiles.arcgis.com/tiles/B6yKvIZqzuOr0jBR/arcgis/rest/services/Canada_Topographic/VectorTileServer/tile/{z}/{y}/{x}.pbf"]}},"layers":[{"id":"Topo Layers/Landbase","type":"fill","source":"esri","source-layer":"Landbase","minzoom":2,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[0,"#f4f4f4"],[7,"#efefef"]]}}},{"id":"Topo Layers/Owner Parcel","type":"fill","source":"esri","source-layer":"Owner Parcel","minzoom":16,"layout":{},"paint":{"fill-opacity":0.6,"fill-color":{"base":1,"stops":[[0,"#f4f4f4"],[7,"#efefef"]]}}},{"id":"Topo Layers/Urban Area/00000000001111111111111/1","type":"fill","source":"esri","source-layer":"Urban Area","filter":["==","_symbol",0],"minzoom":13,"maxzoom":14,"layout":{},"paint":{"fill-color":"#ecedec"}},{"id":"Topo Layers/Urban Area/00000000001111111111111_5/1","type":"fill","source":"esri","source-layer":"Urban Area","filter":["==","_symbol",0],"minzoom":3,"maxzoom":9,"layout":{},"paint":{"fill-color":"#e5e8e7"}},{"id":"Topo Layers/Urban Area/00000000001111111111111_4/1","type":"fill","source":"esri","source-layer":"Urban Area","filter":["==","_symbol",0],"minzoom":9,"maxzoom":10,"layout":{},"paint":{"fill-color":"#e5e8e7"}},{"id":"Topo Layers/Urban Area/00000000001111111111111_3/1","type":"fill","source":"esri","source-layer":"Urban Area","filter":["==","_symbol",0],"minzoom":10,"maxzoom":11,"layout":{},"paint":{"fill-color":"#ecedec"}},{"id":"Topo Layers/Urban Area/00000000001111111111111_2/1","type":"fill","source":"esri","source-layer":"Urban Area","filter":["==","_symbol",0],"minzoom":11,"maxzoom":12,"layout":{},"paint":{"fill-color":"#ecedec"}},{"id":"Topo Layers/Urban Area/00000000001111111111111_1/1","type":"fill","source":"esri","source-layer":"Urban Area","filter":["==","_symbol",0],"minzoom":12,"maxzoom":13,"layout":{},"paint":{"fill-color":"#ecedec"}},{"id":"Topo Layers/Parcel Outline","type":"line","source":"esri","source-layer":"Parcel Outline","minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e7e7e7","line-width":1.06658}},{"id":"Topo Layers/First Nations/1","type":"line","source":"esri","source-layer":"First Nations","minzoom":10,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-opacity":0.47,"line-color":"#dddedb","line-width":4.66667}},{"id":"Topo Layers/First Nations/0","type":"line","source":"esri","source-layer":"First Nations","minzoom":10,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#9C9C9C","line-dasharray":[6.41026,3.84615],"line-width":1.04,"line-opacity":0.47}},{"id":"Topo Layers/International / Provincial Boundaries:2/","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:2","filter":["==","_symbol",0],"minzoom":10,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dddedb","line-width":{"stops":[[10,1.33333],[18,2.66667]]}},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:2/3","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:2","filter":["==","_symbol",1],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#9c9c9c","line-width":0.933333,"line-dasharray":[9.71429,6.85714]}},{"id":"Topo Layers/International / Provincial Boundaries:2/4","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:2","filter":["==","_symbol",2],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#9C9C9C","line-dasharray":[7.14286,4.28571],"line-width":0.933333}},{"id":"Topo Layers/International / Provincial Boundaries:2/13","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:2","filter":["==","_symbol",3],"minzoom":10,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dddedb","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Small Scale Landuse/825 - Park: Territorial; 823 - Park: National; 824 - Park: Provincial/1","type":"fill","source":"esri","source-layer":"Small Scale Landuse","filter":["==","_symbol",0],"minzoom":5,"maxzoom":8,"layout":{},"paint":{"fill-color":"#eceeea"},"showProperties":false},{"id":"Topo Layers/Small Scale Landuse/825 - Park: Territorial; 823 - Park: National; 824 - Park: Provincial/0","type":"line","source":"esri","source-layer":"Small Scale Landuse","filter":["==","_symbol",0],"minzoom":5,"maxzoom":8,"layout":{"visibility":"none","line-cap":"round","line-join":"round"},"paint":{"line-opacity":0.36,"line-color":"#e7eae6","line-width":2},"showProperties":false},{"id":"Topo Layers/Landuse/900/1","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",2],"minzoom":8,"layout":{},"paint":{"fill-opacity":0.5,"fill-color":"#e4e8e4"},"showProperties":false},{"id":"Topo Layers/Landuse/1105 - Helipad / Heliport / Helistop","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",27],"minzoom":8,"layout":{},"paint":{"fill-opacity":0.5,"fill-color":"#e4e8e4"}},{"id":"Topo Layers/Landuse/1100 - Airport Facility","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",25],"minzoom":8,"layout":{},"paint":{"fill-opacity":0.5,"fill-color":"#e4e8e4"}},{"id":"Topo Layers/Landuse/1102 - Airport Runway / Airfield/1","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",26],"minzoom":8,"layout":{},"paint":{"fill-color":"#D1D1D1","fill-opacity":0.5},"showProperties":false},{"id":"Topo Layers/Landuse/849 - Zoo","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",24],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/831 - Playground","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",19],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/830 - Picnic Area","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",18],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/828 - Park: Municipal","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",17],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/827 - Park: Upper Municipal","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",16],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/826 - Park: Municipal Region Area","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",15],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/825 - Park: Territorial","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",14],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[18,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/824 - Park: Provincial","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",13],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/823 - Park: National","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",12],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/821 - Open Space","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",11],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/807 - Campground","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",6],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/800 - General Recreation","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",1],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/815 - Golf Course Facility","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",10],"minzoom":8,"layout":{},"paint":{"fill-color":{"base":1,"stops":[[6,"#eceeea"],[11,"#e4e8e4"]]},"fill-outline-color":"#e7eae6"},"showProperties":false},{"id":"Topo Layers/Landuse/836 - Racetrack (Track and Field)","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",21],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"rgba(91,113,91,0.88)"},"showProperties":false},{"id":"Topo Layers/Landuse/845 - Tennis Courts","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",23],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/842 - Soccer Field","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",22],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/838 - Rugby Field","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",20],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/814 - Football Facility","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",9],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/813 - Fair / Exhibition / Rodeo Grounds","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",8],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)"},"showProperties":false},{"id":"Topo Layers/Landuse/809 - Cricket Facility","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",7],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/806 - Basketball Courts","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",5],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/805 - Baseball Facility","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",4],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/803 - Athletic / Sports Field","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",3],"minzoom":14,"layout":{},"paint":{"fill-opacity":0.1,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Landuse/720 - Cemetery","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",0],"minzoom":8,"layout":{},"paint":{"fill-color":"#e4e8e4"},"showProperties":false},{"id":"Topo Layers/Landuse/","type":"fill","source":"esri","source-layer":"Landuse","filter":["==","_symbol",28],"minzoom":8,"layout":{},"paint":{"fill-color":"#828282","fill-opacity":0.5,"fill-outline-color":"#6E6E6E"},"showProperties":false},{"id":"Topo Layers/Bathymetry/1/1","type":"fill","source":"esri","source-layer":"Bathymetry","filter":["==","_symbol",0],"minzoom":7,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Bathymetry/1_1/1","type":"fill","source":"esri","source-layer":"Bathymetry","filter":["==","_symbol",0],"maxzoom":7,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Bathymetry/2/1","type":"fill","source":"esri","source-layer":"Bathymetry","filter":["==","_symbol",1],"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Bathymetry/3/1","type":"fill","source":"esri","source-layer":"Bathymetry","filter":["==","_symbol",2],"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Bathymetry/4/1","type":"fill","source":"esri","source-layer":"Bathymetry","filter":["==","_symbol",3],"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Bathymetry/5/1","type":"fill","source":"esri","source-layer":"Bathymetry","filter":["==","_symbol",4],"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Waterline_9M/","type":"line","source":"esri","source-layer":"Waterline_9M","filter":["==","_symbol",0],"minzoom":8,"maxzoom":7,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Waterline 9M","type":"line","source":"esri","source-layer":"Waterline 9M","minzoom":5,"maxzoom":6,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Waterline 4M","type":"line","source":"esri","source-layer":"Waterline 4M","minzoom":6,"maxzoom":7,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Waterline 1M","type":"line","source":"esri","source-layer":"Waterline 1M","minzoom":7,"maxzoom":9,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Waterline 577k","type":"line","source":"esri","source-layer":"Waterline 577k","minzoom":9,"maxzoom":11,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Canal","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",0],"minzoom":15,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.06667,"line-dasharray":[3.75,2.5]},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Creek","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",1],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Creek_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",1],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Diversion","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",3],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Diversion_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",3],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Double Line River","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",4],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Double Line River_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",4],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Other","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",5],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Other_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",5],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/River","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",6],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/River_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",6],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Side Channel","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",7],"minzoom":11,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Side Channel_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",7],"minzoom":11,"maxzoom":11,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Stream","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",8],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Stream_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",8],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Tidal River","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",9],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Tidal River_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",9],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Unknown","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",10],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Unknown_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",10],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Watercourse","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",11],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/Watercourse_1","type":"line","source":"esri","source-layer":"RiverSegment_MUN","filter":["==","_symbol",11],"minzoom":11,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Waterbody small scale/1","type":"fill","source":"esri","source-layer":"Waterbody small scale","maxzoom":7,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false,"minzoom":2},{"id":"Topo Layers/Waterbody small scale/0","type":"line","source":"esri","source-layer":"Waterbody small scale","maxzoom":7,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":{"property":"size","default":0.666667,"stops":[[887872000,0],[17578800000,0.666667]]}},"minzoom":2,"showProperties":false},{"id":"Topo Layers/Waterbody 1M/1","type":"fill","source":"esri","source-layer":"Waterbody 1M","minzoom":7,"maxzoom":9,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Water 250k/20: Not Identified / Non identifié/1","type":"fill","source":"esri","source-layer":"Water 250k","filter":["==","_symbol",0],"minzoom":9,"maxzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Water 250k/59: Permanent / Permanent/1","type":"fill","source":"esri","source-layer":"Water 250k","filter":["==","_symbol",1],"minzoom":9,"maxzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Water 250k/60: Intermittent / Intermittent/2","type":"fill","source":"esri","source-layer":"Water 250k","filter":["==","_symbol",2],"minzoom":9,"maxzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Water 250k/60: Intermittent / Intermittent/1","type":"fill","source":"esri","source-layer":"Water 250k","filter":["==","_symbol",2],"minzoom":9,"maxzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Water 250k/60: Intermittent / Intermittent/0","type":"line","source":"esri","source-layer":"Water 250k","filter":["==","_symbol",2],"minzoom":9,"maxzoom":11,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#cfd3d4","line-width":0.666667},"showProperties":false},{"id":"Topo Layers/Water 250k//1","type":"fill","source":"esri","source-layer":"Water 250k","filter":["==","_symbol",3],"minzoom":9,"maxzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Artificial Path","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",0],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Bay Inlet","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",1],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Canal","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",2],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Conduit","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",3],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Connector","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",4],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Creek","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",5],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Ditch","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",6],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Diversion","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",7],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Double Line River","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",8],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Estuary","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",9],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Flume","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",10],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Ford","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",11],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Ice Mass","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",12],"minzoom":11,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Ice Mass"}},{"id":"Topo Layers/Community Waterbodies/Lake","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",13],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Marsh","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",14],"minzoom":11,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Marsh"}},{"id":"Topo Layers/Community Waterbodies/None","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",15],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Ocean","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",16],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Other","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",17],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Playa","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",18],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Pond","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",19],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Rapids/2","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",20],"minzoom":11,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Rapids/2"}},{"id":"Topo Layers/Community Waterbodies/Rapids/1","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",20],"minzoom":11,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Rapids/1"}},{"id":"Topo Layers/Community Waterbodies/Rapids/0","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",20],"minzoom":11,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Rapids/0"}},{"id":"Topo Layers/Community Waterbodies/Reef","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",21],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Reservoir","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",22],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Rise","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",23],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/River","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",24],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Sea","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",25],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Seep","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",26],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Side Channel","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",27],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Stream","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",28],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Swamp","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",29],"minzoom":11,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Swamp"}},{"id":"Topo Layers/Community Waterbodies/Tidal Flat/1","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",30],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Tidal Flat/0","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",30],"minzoom":11,"layout":{"visibility":"visible"},"paint":{"fill-opacity":1,"fill-color":"#cfd3d4","fill-antialias":true,"fill-translate":[0,0],"fill-translate-anchor":"map"}},{"id":"Topo Layers/Community Waterbodies/Tidal River","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",31],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Unknown","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",32],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Watercourse","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",33],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/Waterfall/2","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",34],"minzoom":11,"layout":{},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Waterfall/2"}},{"id":"Topo Layers/Community Waterbodies/Waterfall/1","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",34],"minzoom":11,"layout":{},"paint":{"fill-pattern":"Topo Layers/Community Waterbodies/Waterfall/1"}},{"id":"Topo Layers/Community Waterbodies/Waterfall/0","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",34],"minzoom":11,"layout":{},"paint":{"fill-color":"#cfd3d4"}},{"id":"Topo Layers/Community Waterbodies/Dam","type":"fill","source":"esri","source-layer":"Community Waterbodies","filter":["==","_symbol",35],"minzoom":11,"layout":{},"paint":{"fill-color":"#9C9C9C","fill-outline-color":"#686868"}},{"id":"Topo Layers/Surface/300 - Pool / Water Fountain","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",13],"minzoom":12,"layout":{},"paint":{"fill-color":"#cfd3d4","fill-outline-color":"#cfd3d4"},"showProperties":false},{"id":"Topo Layers/Surface/209 - Walking Path","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",12],"minzoom":12,"layout":{},"paint":{"fill-color":"#f2f2f1"},"showProperties":false},{"id":"Topo Layers/Surface/208 - Street","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",11],"minzoom":12,"layout":{"visibility":"none"},"paint":{"fill-color":"rgba(234,233,231,0.6)"},"showProperties":false},{"id":"Topo Layers/Surface/207 - Sidewalk","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",10],"minzoom":12,"layout":{},"paint":{"fill-color":"#f2f2f1"},"showProperties":false},{"id":"Topo Layers/Surface/206 - Parking Lot","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",9],"minzoom":12,"layout":{"visibility":"none"},"paint":{"fill-color":"#f2f2f1"},"showProperties":false},{"id":"Topo Layers/Surface/201 - Asphalt","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",8],"minzoom":12,"layout":{"visibility":"none"},"paint":{"fill-color":"rgba(225,225,225,0.7)"},"showProperties":false},{"id":"Topo Layers/Surface/112 - Glacier ","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",7],"minzoom":10,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Surface/112 - Glacier "}},{"id":"Topo Layers/Surface/110 - Deck/Patio","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",6],"minzoom":12,"layout":{},"paint":{"fill-color":"#f2f2f1","fill-outline-color":"#f2f2f1"},"showProperties":false},{"id":"Topo Layers/Surface/109 - Turf","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",5],"minzoom":14,"layout":{"visibility":"none"},"paint":{"fill-opacity":0.3,"fill-color":"rgba(91,113,91,0.88)","fill-outline-color":"#FFFFFF"},"showProperties":false},{"id":"Topo Layers/Surface/108 - Sand","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",4],"minzoom":12,"layout":{},"paint":{"fill-color":"#f2f2f1"},"showProperties":false},{"id":"Topo Layers/Surface/103 - Gravel/2","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",3],"minzoom":14,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Surface/103 - Gravel/2"}},{"id":"Topo Layers/Surface/103 - Gravel/1","type":"line","source":"esri","source-layer":"Surface","filter":["==","_symbol",3],"minzoom":14,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"rgba(204,204,204,0.6)","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Surface/103 - Gravel/0","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",3],"minzoom":14,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Surface/103 - Gravel/0"}},{"id":"Topo Layers/Surface/102 - Grass","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",2],"minzoom":12,"layout":{},"paint":{"fill-color":"#e4e8e4"},"showProperties":false},{"id":"Topo Layers/Surface/101 - Dirt/1","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",1],"minzoom":12,"layout":{},"paint":{"fill-color":"#f2f2f1"},"showProperties":false},{"id":"Topo Layers/Surface/100 - Clay/1","type":"fill","source":"esri","source-layer":"Surface","filter":["==","_symbol",0],"minzoom":12,"layout":{},"paint":{"fill-color":"rgba(91,113,91,0.88)"},"showProperties":false},{"id":"Topo Layers/Surface/100 - Clay/0","type":"line","source":"esri","source-layer":"Surface","filter":["==","_symbol",0],"minzoom":12,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"rgba(91,113,91,0.88)","line-width":{"stops":[[12,1.06667],[17,1.06667],[18,1.06667]]}},"showProperties":false},{"id":"Topo Layers/Wetland//1","type":"fill","source":"esri","source-layer":"Wetland","filter":["==","_symbol",0],"minzoom":10,"layout":{"visibility":"none"},"paint":{"fill-pattern":"Topo Layers/Wetland//1"}},{"id":"Topo Layers/Piers/2","type":"fill","source":"esri","source-layer":"Piers","minzoom":13,"layout":{},"paint":{"fill-color":"rgba(204,204,204,0.6)"},"showProperties":false},{"id":"Topo Layers/Piers/1","type":"fill","source":"esri","source-layer":"Piers","minzoom":13,"layout":{},"paint":{"fill-color":"rgba(204,204,204,0.6)"},"showProperties":false},{"id":"Topo Layers/Piers/0","type":"line","source":"esri","source-layer":"Piers","minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"rgba(204,204,204,0.6)","line-width":0.666667},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:1/1/1","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",0],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#dddedb","line-width":6.66667}},{"id":"Topo Layers/International / Provincial Boundaries:1/1/0","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",0],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#9c9c9c","line-width":1.04,"line-dasharray":[8.71795,6.15385]}},{"id":"Topo Layers/International / Provincial Boundaries:1/1_2/1","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",0],"minzoom":1,"maxzoom":2,"layout":{"line-join":"round"},"paint":{"line-color":"#CCCCCC","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:1/1_1/1","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",0],"minzoom":2,"maxzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#dddedb","line-width":3.33333}},{"id":"Topo Layers/International / Provincial Boundaries:1/1_1/0","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",0],"minzoom":2,"maxzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":{"base":1,"stops":[[5,"#cccccc"],[7,"#9c9c9c"]]},"line-width":0.624,"line-dasharray":[8.71795,6.15385]},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:1/2/1","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",1],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#dfe0dd","line-width":{"stops":[[6,5.06667],[10,5.33333],[15,5.33333],[18,5.33333]]}},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:1/2/0","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",1],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":{"base":1,"stops":[[7,"#c8c8c8"],[12,"#9c9c9c"]]},"line-width":{"stops":[[6,0.633333],[10,0.666667],[15,0.666667],[18,0.666667]]},"line-dasharray":[13.6,9.6]},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:1/2_2/1","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",1],"minzoom":3,"maxzoom":7,"layout":{"line-join":"round"},"paint":{"line-color":"rgba(204,204,204,0.8)","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:1/2_1/1","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",1],"minzoom":7,"maxzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#dddedb","line-width":4},"showProperties":false},{"id":"Topo Layers/International / Provincial Boundaries:1/2_1/0","type":"line","source":"esri","source-layer":"International / Provincial Boundaries:1","filter":["==","_symbol",1],"minzoom":7,"maxzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#9c9c9c","line-width":0.266667,"line-dasharray":[25,25]}},{"id":"Topo Layers/Trails/","type":"symbol","source":"esri","source-layer":"Trails","filter":["==","_symbol",0],"minzoom":15,"layout":{"symbol-placement":"line","icon-image":"Topo Layers/Trails/","symbol-spacing":10.6667,"icon-rotation-alignment":"map","icon-allow-overlap":true},"paint":{"icon-color":"#B8B09C","icon-opacity":0.6},"showProperties":false},{"id":"Topo Layers/Road Segment/Ferry","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",9],"minzoom":9,"layout":{"line-join":"round"},"paint":{"line-color":"#ebedeb","line-dasharray":[4.54545,1.81818],"line-width":1.46667},"showProperties":false},{"id":"Topo Layers/Road Segment/Highways/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",0],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[0,2.66667],[5,3.33333],[9,3.33333],[10,3.33333],[11,4],[12,4.26667],[13,6.10667],[14,6.25333],[15,10.5867],[16,18.6667],[18,24]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Arterial/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",1],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[0,1.33333],[9,1.33333],[10,1.33333],[11,1.33333],[12,4],[13,4],[14,4],[15,8],[16,16],[17,24],[18,25.3333]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Collector/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",2],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[12,1.33333],[13,3.33333],[14,4.26667],[15,6.66667],[16,7.6],[17,14.6667],[18,21.3333]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Local Roads/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",3],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[12,1.33333],[13,3.33333],[14,4],[15,6.66667],[16,7.6],[17,14.6667],[18,21.3333]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/HIghway Ramps/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",4],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[0,13.7793],[9,2.84],[10,2.84],[11,2.84],[12,2.84],[13,3.33333],[14,6.05333],[15,6.05333],[16,6.8],[17,7.33333],[18,9.33333]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Arterial Ramps/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",5],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[0,13.7793],[9,2.64],[10,2.64],[11,2.64],[12,2.66667],[13,3.33333],[14,5.33333],[15,5.33333],[16,6.8],[17,7.33333],[18,9.33333]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Local Ramps/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",6],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[12,1.33333],[13,3.77333],[14,4.72],[15,7.18667],[16,7.93333],[17,14.6667],[18,21.6]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Recreation/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",7],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[12,1.33333],[13,2.64],[14,2.64],[15,3.77333],[16,4.53333],[17,9.33333],[18,11.0667]]},"line-dasharray":[0.60241,0.361446]},"showProperties":false},{"id":"Topo Layers/Road Segment/Service/1","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",8],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#e3e5e2","line-width":{"stops":[[12,1.33333],[13,2.64],[14,2.64],[15,3.77333],[16,4.53333],[17,8],[18,11.1129]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Service/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",8],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#FDFDFD","line-width":{"stops":[[12,1.09336],[13,2.16485],[14,2.16485],[15,3.0942],[16,3.71741],[17,6.56014],[18,9.1128]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Recreation/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",7],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#FFFFFF","line-width":{"stops":[[12,1.01205],[13,2.00386],[14,2.00386],[15,2.8641],[16,3.44096],[17,7.08434],[18,8.4]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Local Ramps/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",6],"minzoom":13,"layout":{},"paint":{"line-color":"#FDFDFD","line-width":{"stops":[[12,1.14872],[13,3.25087],[14,4.06645],[15,6.19158],[16,6.83486],[17,12.6359],[18,18.6092]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Arterial Ramps/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",5],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#ffffff","line-width":{"stops":[[0,9.33333],[9,1.78819],[10,1.78819],[11,1.78819],[12,1.80625],[13,2.25781],[14,3.6125],[15,3.6125],[16,4.60593],[17,4.96718],[18,6.32187]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/HIghway Ramps/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",4],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#ffffff","line-width":{"stops":[[0,9.33333],[9,1.92365],[10,1.92365],[11,1.92365],[12,1.92365],[13,2.25781],[14,4.10018],[15,4.10018],[16,4.60593],[17,4.96718],[18,6.32187]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Local Roads/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",3],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#FDFDFD","line-width":{"stops":[[12,1.12821],[13,2.82051],[14,3.38462],[15,5.64103],[16,6.43077],[17,12.4103],[18,18.0513]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Local Roads_1/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",3],"minzoom":12,"maxzoom":13,"layout":{},"paint":{"line-color":"#fafafa","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Road Segment/Collector/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",2],"minzoom":13,"layout":{},"paint":{"line-color":"#FDFDFD","line-width":{"stops":[[12,1.12821],[13,2.82051],[14,3.61026],[15,5.64103],[16,6.43077],[17,12.4103],[18,18.0513]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Collector_1/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",2],"minzoom":12,"maxzoom":13,"layout":{},"paint":{"line-color":"#fafafa","line-width":1.33333},"showProperties":false},{"id":"Topo Layers/Road Segment/Arterial/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",1],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#ffffff","line-width":{"stops":[[0,0.985372],[9,0.985372],[10,0.985372],[11,0.985372],[12,2.95612],[13,2.95612],[14,2.95612],[15,5.91223],[16,11.8245],[17,17.7367],[18,18.7221]]}},"showProperties":false},{"id":"Topo Layers/Road Segment/Highways/0","type":"line","source":"esri","source-layer":"Road Segment","filter":["==","_symbol",0],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#ffffff","line-width":{"stops":[[0,1.48148],[5,1.85185],[9,1.85185],[10,1.85185],[11,2.22222],[12,2.37037],[13,3.39259],[14,3.47407],[15,5.88148],[16,10.3704],[18,13.3333]]}},"showProperties":false},{"id":"Topo Layers/Small scale roads/Major Arterial","type":"line","source":"esri","source-layer":"Small scale roads","filter":["==","_symbol",0],"minzoom":7,"maxzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#fafafa"},"showProperties":false},{"id":"Topo Layers/Small scale roads/Major Arterial_1","type":"line","source":"esri","source-layer":"Small scale roads","filter":["==","_symbol",0],"minzoom":6,"maxzoom":7,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#fafafa"},"showProperties":false},{"id":"Topo Layers/Small scale roads/Freeway; Highway Ramp; Highway","type":"line","source":"esri","source-layer":"Small scale roads","filter":["==","_symbol",1],"minzoom":7,"maxzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#fafafa"},"showProperties":false},{"id":"Topo Layers/Small scale roads/Freeway; Highway Ramp; Highway_1","type":"line","source":"esri","source-layer":"Small scale roads","filter":["==","_symbol",1],"minzoom":6,"maxzoom":7,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#fafafa"},"showProperties":false},{"id":"Topo Layers/Rail/Connecting/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",0],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Connecting/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",0],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Crossover/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",1],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Crossover/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",1],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Ferry Route/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",2],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Ferry Route/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",2],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Main/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",3],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Main/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",3],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Other/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",4],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Other/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",4],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Siding/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",5],"minzoom":12,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Siding/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",5],"minzoom":12,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Spur/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",6],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Spur/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",6],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Spur_1/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",6],"minzoom":12,"maxzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Spur_1/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",6],"minzoom":12,"maxzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Unknown/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",7],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Unknown/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",7],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Wye/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",8],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Wye/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",8],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Yard/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",9],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Yard/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",9],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Rail/Yard_1/1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",9],"minzoom":12,"maxzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail/Yard_1/0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",9],"minzoom":12,"maxzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"rgba(230,230,230,0.5)","line-dasharray":[10.5839,12.3479],"line-width":0.755867},"showProperties":false},{"id":"Topo Layers/Rail//1","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",10],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddda","line-width":1.88973},"showProperties":false},{"id":"Topo Layers/Rail//0","type":"line","source":"esri","source-layer":"Rail","filter":["==","_symbol",10],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#efefef","line-width":0.755867,"line-dasharray":[10.5839,12.3479]}},{"id":"Topo Layers/Ferry Lines","type":"line","source":"esri","source-layer":"Ferry Lines","minzoom":9,"layout":{"line-join":"round"},"paint":{"line-color":"#ebedeb","line-width":1.46667,"line-dasharray":[4.54545,1.81818]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/General/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",0],"minzoom":15,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/General/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",0],"minzoom":15,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/General/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",0],"minzoom":15,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.453333},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/General_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",0],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/General_1/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",0],"minzoom":13,"maxzoom":15,"layout":{},"paint":{"fill-color":"#dfe1e2"}},{"id":"Topo Layers/BuildingFootprint/Government/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",1],"minzoom":16,"layout":{},"paint":{"fill-color":"#efefef","fill-translate":[0.666667,0.666667]}},{"id":"Topo Layers/BuildingFootprint/Government/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",1],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Government/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",1],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddde","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Government_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",1],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Government_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",1],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Medical/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",2],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Medical/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",2],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Medical/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",2],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Medical_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",2],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Medical_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",2],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Education/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",3],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Education/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",3],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Education/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",3],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Education_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",3],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Education_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",3],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Transportation/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",4],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Transportation/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",4],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Transportation/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",4],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddde","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Transportation_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",4],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Transportation_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",4],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Commercial/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",5],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Commercial/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",5],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Commercial/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",5],"minzoom":16,"layout":{"visibility":"none","line-cap":"round","line-join":"round"},"paint":{"line-color":"#dcddde","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Commercial_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",5],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Commercial_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",5],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Religious/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",6],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Religious/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",6],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Religious/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",6],"minzoom":16,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Religious_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",6],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Religious_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",6],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Recreation/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",7],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Recreation/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",7],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Recreation/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",7],"minzoom":16,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Recreation_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",7],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Recreation_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",7],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Cultural/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",8],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Cultural/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",8],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Cultural/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",8],"minzoom":16,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Cultural_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",8],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Cultural_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",8],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Hotel/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",9],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Hotel/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",9],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Hotel/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",9],"minzoom":16,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Hotel_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",9],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Hotel_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",9],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Airport/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",10],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Airport/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",10],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Airport/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",10],"minzoom":16,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Airport_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",10],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Airport_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",10],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Industrial/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",11],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Industrial/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",11],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Industrial/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",11],"minzoom":16,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Industrial_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",11],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Industrial_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",11],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Community Center/2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",12],"minzoom":16,"layout":{},"paint":{"fill-color":"#dcddde","fill-translate":[0.666667,0.666667]},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Community Center/1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",12],"minzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/BuildingFootprint/Community Center/0","type":"line","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",12],"minzoom":16,"layout":{"line-cap":"round","line-join":"round","visibility":"none"},"paint":{"line-color":"#BFBFBF","line-width":0.466667},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Community Center_2","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",12],"minzoom":11,"maxzoom":13,"layout":{},"paint":{"fill-color":"#dcddde"},"showProperties":false},{"id":"Topo Layers/BuildingFootprint/Community Center_1","type":"fill","source":"esri","source-layer":"BuildingFootprint","filter":["==","_symbol",12],"minzoom":13,"maxzoom":16,"layout":{},"paint":{"fill-color":"#dfe1e2","fill-outline-color":"#efefef"}},{"id":"Topo Layers/Tree","type":"symbol","source":"esri","source-layer":"Tree","minzoom":17,"layout":{"icon-image":"Topo Layers/Tree","icon-allow-overlap":true,"visibility":"none"},"paint":{"icon-color":"#D1DCB6"},"showProperties":false},{"id":"Topo Layers/Powerlines/Powerline/1","type":"line","source":"esri","source-layer":"Powerlines","filter":["==","_symbol",0],"minzoom":13,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#9C9C9C","line-width":1.33333,"line-opacity":0.4}},{"id":"Topo Layers/Powerlines/Powerline/0","type":"symbol","source":"esri","source-layer":"Powerlines","filter":["==","_symbol",0],"minzoom":13,"layout":{"symbol-placement":"line","icon-image":"Topo Layers/Powerlines/Powerline/0","symbol-spacing":53.3333,"icon-rotation-alignment":"map","icon-allow-overlap":true},"paint":{"icon-color":"#9C9C9C","icon-opacity":0.4}},{"id":"Provinces/","type":"symbol","source":"esri","source-layer":"Provinces","filter":["==","_symbol",0],"layout":{"icon-image":"Provinces/","icon-allow-overlap":true},"paint":{"icon-color":"rgba(130,130,130,0)"},"showProperties":false},{"id":"Site Address Point","type":"symbol","source":"esri","source-layer":"Site Address Point","minzoom":17,"layout":{"icon-image":"Site Address Point","icon-allow-overlap":true},"paint":{"icon-color":"rgba(118,138,63,0)"},"showProperties":false},{"id":"Topo Layers/Landforms/label/Long 9pt","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",4],["==","$type","LineString"]],"minzoom":9,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":12,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Long 9pt/point","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",4],["==","$type","Point"]],"minzoom":9,"layout":{"text-font":["Arial Italic"],"text-size":12,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Oblong 9pt","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",2],["==","$type","LineString"]],"minzoom":9,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":12,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Oblong 9pt/point","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",2],["==","$type","Point"]],"minzoom":9,"layout":{"text-font":["Arial Italic"],"text-size":12,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Point of Interest/label/First Nations Reserve / Hamlet","type":"symbol","source":"esri","source-layer":"Point of Interest","minzoom":13,"layout":{"text-font":["Palatino Linotype Bold"],"text-size":10.6667,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E","text-halo-color":"rgba(255,255,255,0.99)","text-halo-width":1.33333},"showProperties":false},{"id":"Topo Layers/Point of Interest/label/General Water Feature","type":"symbol","source":"esri","source-layer":"Point of Interest","minzoom":13,"layout":{"text-size":10.6667,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Landuse/label/Airport","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",0],"minzoom":12,"layout":{"text-font":["Arial Regular"],"text-size":11.3333,"text-letter-spacing":0.09,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/BuildingFootprint/label/BuildingFootprint","type":"symbol","source":"esri","source-layer":"BuildingFootprint/label","minzoom":11,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":0.7},"showProperties":false},{"id":"Topo Layers/Point of Interest/label/General Feature","type":"symbol","source":"esri","source-layer":"Point of Interest","minzoom":13,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-field":"{_name}"},"paint":{"text-color":"#939d8c","text-halo-color":"#ebedeb","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Landforms/label/Oblong 10pt","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",0],["==","$type","LineString"]],"minzoom":9,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":13.3333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Oblong 10pt/point","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",0],["==","$type","Point"]],"minzoom":9,"layout":{"text-font":["Arial Italic"],"text-size":13.3333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Roundish 9pt","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["==","_label_class",3],"minzoom":9,"layout":{"text-font":["Arial Italic"],"text-size":12,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Roundish 10pt","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["==","_label_class",1],"minzoom":9,"layout":{"text-font":["Arial Italic"],"text-size":13.3333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Long 10pt","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",5],["==","$type","LineString"]],"minzoom":9,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":13.3333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landforms/label/Long 10pt/point","type":"symbol","source":"esri","source-layer":"Landforms/label","filter":["all",["==","_label_class",5],["==","$type","Point"]],"minzoom":9,"layout":{"text-font":["Arial Italic"],"text-size":13.3333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Trails/label/Trail","type":"symbol","source":"esri","source-layer":"Trails/label","filter":["==","_label_class",0],"minzoom":15,"layout":{"text-size":9,"text-font":["Arial Regular"],"text-letter-spacing":0.08,"text-optional":true,"symbol-placement":"line","symbol-spacing":288,"text-anchor":"bottom","text-offset":[0,0.05],"text-field":"{_name}"},"paint":{"text-color":"#666666","text-halo-color":"#ffffff","text-halo-width":1},"showProperties":false},{"id":"Topo Layers/First Nations/label/SmallReserves","type":"symbol","source":"esri","source-layer":"First Nations/label","filter":["==","_label_class",1],"minzoom":11,"layout":{"text-size":13.3333,"text-font":["Arial Regular"],"text-letter-spacing":0.06,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#595959","text-halo-color":"#efefef","text-halo-width":1.33333}},{"id":"Topo Layers/First Nations/label/Class 1","type":"symbol","source":"esri","source-layer":"First Nations/label","filter":["==","_label_class",0],"minzoom":10,"layout":{"text-size":13.3333,"text-font":["Arial Regular"],"text-letter-spacing":0.06,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#595959","text-halo-color":"#efefef","text-halo-width":1}},{"id":"Topo Layers/Small Scale Landuse/label/National Parks","type":"symbol","source":"esri","source-layer":"Small Scale Landuse/label","filter":["==","_label_class",5],"minzoom":5,"maxzoom":8,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Small Scale Landuse/label/Nat/Prov Park - QC","type":"symbol","source":"esri","source-layer":"Small Scale Landuse/label","filter":["==","_label_class",4],"minzoom":5,"maxzoom":8,"layout":{"text-font":["Tahoma Regular"],"text-size":10.6667,"text-field":"{_name}","text-optional":true},"paint":{}},{"id":"Topo Layers/Small Scale Landuse/label/Provincial Park","type":"symbol","source":"esri","source-layer":"Small Scale Landuse/label","filter":["==","_label_class",1],"minzoom":5,"maxzoom":8,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landuse/label/NatPark - Victoria Islands","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",10],"minzoom":10,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-letter-spacing":0.06,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landuse/label/Provincial Park - QC","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",9],"minzoom":8,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landuse/label/Provincial Park","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",8],"minzoom":8,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-allow-overlap":true,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#939d8c","text-halo-color":"#ebedeb","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Landuse/label/MedScaleParks","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",7],"minzoom":13,"maxzoom":14,"layout":{"text-size":9.33333,"text-font":["Arial Regular"],"text-letter-spacing":0.06,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#939d8c","text-halo-color":"#ebedeb","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Landuse/label/SmallScaleParks","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",6],"minzoom":12,"maxzoom":13,"layout":{"text-size":12,"text-font":["Arial Regular"],"text-letter-spacing":0.06,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#939d8c","text-halo-color":"#ebedeb","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Landuse/label/SmallScaleGolf","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",5],"minzoom":12,"maxzoom":14,"layout":{"text-font":["Arial Regular"],"text-size":11.3333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landuse/label/SmallScaleCemetery","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",4],"minzoom":13,"maxzoom":14,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Landuse/label/Landuse","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",3],"minzoom":14,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#939d8c","text-halo-color":"#ebedeb","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Landuse/label/Parks","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",2],"minzoom":14,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-letter-spacing":0.06,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#939d8c","text-halo-color":"#ebedeb","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Landuse/label/National Park","type":"symbol","source":"esri","source-layer":"Landuse/label","filter":["==","_label_class",1],"minzoom":8,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-letter-spacing":0.06,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#4E4E4E"}},{"id":"Topo Layers/Waterline 4M/label/Class 1","type":"symbol","source":"esri","source-layer":"Waterline 4M/label","minzoom":6,"maxzoom":7,"layout":{"text-size":12,"text-font":["Arial Italic"],"text-letter-spacing":0.1,"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-anchor":"bottom","text-offset":[0,0.188889],"text-field":"{_name}"},"paint":{"text-color":"#cfd3d4","text-halo-color":"#efefef"},"showProperties":false},{"id":"Topo Layers/Waterline 1M/label/Water 1M-288k","type":"symbol","source":"esri","source-layer":"Waterline 1M/label","filter":["==","_label_class",1],"minzoom":8,"maxzoom":9,"layout":{"visibility":"none","text-size":10.6667,"text-font":["Arial Italic"],"text-letter-spacing":0.1,"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-anchor":"bottom","text-offset":[0,0.175],"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Waterline 1M/label/Class 1","type":"symbol","source":"esri","source-layer":"Waterline 1M/label","filter":["==","_label_class",0],"minzoom":7,"maxzoom":8,"layout":{"visibility":"none","text-size":10.6667,"text-font":["Arial Italic"],"text-letter-spacing":0.1,"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-anchor":"bottom","text-offset":[0,0.175],"text-field":"{_name}"},"paint":{"text-color":"#cfd3d4","text-halo-color":"#efefef"},"showProperties":false},{"id":"Topo Layers/Waterline Labels/label/Water 1M-288k","type":"symbol","source":"esri","source-layer":"Waterline Labels/label","filter":["==","_label_class",1],"minzoom":9,"maxzoom":11,"layout":{"visibility":"none","text-size":10.6667,"text-font":["Arial Italic"],"text-letter-spacing":0.1,"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-anchor":"bottom","text-offset":[0,0.175],"text-field":"{_name}"},"paint":{"text-color":"#cfd3d4","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/RiverSegment_MUN/label/Stream or River","type":"symbol","source":"esri","source-layer":"RiverSegment_MUN/label","filter":["==","_label_class",1],"minzoom":11,"layout":{"text-size":10.6667,"text-font":["Arial Italic"],"text-letter-spacing":0.1,"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-anchor":"bottom","text-offset":[0,0.175],"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1},"showProperties":false},{"id":"Topo Layers/Waterbody_CANVEC1M/label/Rivers","type":"symbol","source":"esri","source-layer":"Waterbody_CANVEC1M/label","filter":["all",["==","_label_class",3],["==","$type","LineString"]],"minzoom":9,"maxzoom":11,"layout":{"text-size":10.6667,"text-font":["Arial Italic"],"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Waterbody_CANVEC1M/label/Rivers/point","type":"symbol","source":"esri","source-layer":"Waterbody_CANVEC1M/label","filter":["all",["==","_label_class",3],["==","$type","Point"]],"minzoom":9,"maxzoom":11,"layout":{"text-size":10.6667,"text-font":["Palatino Linotype Bold Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Waterbody_CANVEC1M/label/All lakes","type":"symbol","source":"esri","source-layer":"Waterbody_CANVEC1M/label","filter":["==","_label_class",2],"minzoom":9,"maxzoom":11,"layout":{"text-size":10,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Waterbody_CANVEC1M/label/Lakes","type":"symbol","source":"esri","source-layer":"Waterbody_CANVEC1M/label","filter":["==","_label_class",1],"minzoom":6,"maxzoom":9,"layout":{"text-size":10,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Waterbody_CANVEC1M/label/Class 1","type":"symbol","source":"esri","source-layer":"Waterbody_CANVEC1M/label","filter":["==","_label_class",0],"minzoom":4.62,"maxzoom":9,"layout":{"text-size":10,"text-font":["Arial Italic"],"text-letter-spacing":0.1,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Community Waterbodies/label/SmallLake/Ponds","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["==","_label_class",7],"minzoom":12,"layout":{"text-size":11.3333,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/label/Lake/Ponds","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["==","_label_class",6],"minzoom":12,"layout":{"text-size":11.3333,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/label/Ponds","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["==","_label_class",5],"minzoom":14,"layout":{"text-size":9.33333,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Community Waterbodies/label/Bays","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["==","_label_class",4],"minzoom":11,"layout":{"text-size":10.6667,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Community Waterbodies/label/Sea/Ocean","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["==","_label_class",3],"minzoom":11,"layout":{"text-size":13.3333,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Community Waterbodies/label/LargeLakes","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["==","_label_class",2],"minzoom":11,"layout":{"text-size":12,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Community Waterbodies/label/Rivers","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["all",["==","_label_class",1],["==","$type","LineString"]],"minzoom":11,"layout":{"text-size":12,"text-font":["Arial Italic"],"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Community Waterbodies/label/Rivers/point","type":"symbol","source":"esri","source-layer":"Community Waterbodies/label","filter":["all",["==","_label_class",1],["==","$type","Point"]],"minzoom":11,"layout":{"text-size":12,"text-font":["Arial Italic"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Island/label/LargeIslands - LargeScale","type":"symbol","source":"esri","source-layer":"Island/label","filter":["==","_label_class",2],"minzoom":11,"layout":{"text-size":18.6667,"text-font":["Arial Italic"],"text-letter-spacing":0.11,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":2},"showProperties":false},{"id":"Topo Layers/Island/label/Islands - Large","type":"symbol","source":"esri","source-layer":"Island/label","filter":["==","_label_class",1],"minzoom":5,"maxzoom":11,"layout":{"text-size":13.3333,"text-font":["Arial Italic"],"text-letter-spacing":0.09,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":2,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Island/label/Class 1","type":"symbol","source":"esri","source-layer":"Island/label","filter":["==","_label_class",0],"minzoom":12,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":2,"text-halo-blur":1}},{"id":"Topo Layers/Road Segment/label/Ferry","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",7],"minzoom":9,"layout":{"text-size":10,"text-font":["Arial Regular"],"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-anchor":"bottom","text-offset":[0,0.166667],"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Road Segment/label/Service/Rec/Resource","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",6],"minzoom":13,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-field":"{_name}"},"paint":{"text-color":"#666666","text-halo-color":"#FFFFFF","text-halo-width":1.33333},"showProperties":false},{"id":"Topo Layers/Road Segment/label/Collector/Local","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",5],"minzoom":13,"layout":{"text-size":10,"text-font":["Arial Regular"],"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-field":"{_name}"},"paint":{"text-color":"#666666","text-halo-color":"#FFFFFF","text-halo-width":1},"showProperties":false},{"id":"Topo Layers/Road Segment/label/Arterial","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",4],"minzoom":12,"layout":{"text-size":{"base":1,"stops":[[0,10],[18,10]]},"text-font":["Arial Regular"],"text-letter-spacing":0.01,"text-optional":true,"symbol-placement":"line","symbol-spacing":576,"text-field":"{_name}"},"paint":{"text-color":"#666666","text-halo-color":"#FFFFFF","text-halo-width":1},"showProperties":false},{"id":"Topo Layers/Road Segment/label/Freeway/Highway","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",3],"minzoom":12,"layout":{"text-size":10,"text-font":["Arial Regular"],"text-optional":true,"symbol-placement":"line","symbol-spacing":576,"text-field":"{_name}"},"paint":{"text-color":"#666666","text-halo-color":"#FFFFFF","text-halo-width":1},"showProperties":false},{"id":"Topo Layers/Road Segment/label/Regional Hwy","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",2],"minzoom":12,"layout":{"text-size":10.6667,"text-font":["Arial Bold"],"text-letter-spacing":0.013,"text-rotation-alignment":"viewport","icon-rotation-alignment":"viewport","symbol-placement":"line","symbol-spacing":576,"text-offset":[0,0.125],"text-field":"{_name}","icon-image":"Topo Layers/Road Segment/Regional Hwy"},"paint":{"icon-opacity":0.85,"text-color":"#4E4E4E"}},{"id":"Topo Layers/Road Segment/label/LocalHwy","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",1],"minzoom":9,"layout":{"text-size":9.33333,"text-font":["Arial Regular"],"text-padding":30,"text-letter-spacing":0.01,"text-rotation-alignment":"viewport","icon-rotation-alignment":"viewport","symbol-placement":"line","symbol-spacing":672,"text-field":"{_name}","icon-image":"Topo Layers/Road Segment/LocalHwy"},"paint":{"icon-opacity":0.7}},{"id":"Topo Layers/Road Segment/label/Class 1","type":"symbol","source":"esri","source-layer":"Road Segment/label","filter":["==","_label_class",0],"minzoom":9,"layout":{"text-size":9.33333,"text-font":["Arial Regular"],"text-padding":30,"text-letter-spacing":0.01,"text-rotation-alignment":"viewport","icon-rotation-alignment":"viewport","symbol-placement":"line","symbol-spacing":480,"text-offset":[0,0.142857],"text-field":"{_name}","icon-image":"Topo Layers/Road Segment/Class 1"},"paint":{"text-halo-color":"#FFFFFF","text-halo-width":0.666667},"showProperties":false},{"id":"Topo Layers/Rail/label/Class 1","type":"symbol","source":"esri","source-layer":"Rail/label","minzoom":15,"layout":{"text-size":8,"text-font":["Arial Regular"],"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-anchor":"bottom","text-offset":[0,0.133333],"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1},"showProperties":false},{"id":"Topo Layers/Ferry Lines/label/Class 1","type":"symbol","source":"esri","source-layer":"Ferry Lines/label","minzoom":11,"layout":{"text-size":9.33333,"text-font":["Arial Regular"],"text-optional":true,"symbol-placement":"line","symbol-spacing":1000,"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Spot Elevation","type":"symbol","source":"esri","source-layer":"Spot Elevation","minzoom":8,"layout":{"icon-image":"Topo Layers/Spot Elevation","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-size":10.6667,"text-anchor":"bottom-left","text-offset":[0.213388,0.0866117],"text-field":"{_name}","text-optional":true},"paint":{"icon-color":"#7D7368","icon-opacity":0.79,"text-color":"#828282","text-halo-color":"#FFFFFF","text-halo-width":1.33333},"showProperties":false},{"id":"Topo Layers/Water Label/label/General Water Feature","type":"symbol","source":"esri","source-layer":"Water Label","minzoom":13,"layout":{"text-size":10.6667,"text-font":["Arial Italic"],"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Water Label/label/Bays","type":"symbol","source":"esri","source-layer":"Water Label","minzoom":12,"layout":{"text-size":10.6667,"text-font":["Arial Italic"],"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-field":"{_name}"},"paint":{"text-color":"#888f91","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Topo Layers/Water Label/label/Islands","type":"symbol","source":"esri","source-layer":"Water Label","minzoom":12,"layout":{"text-size":10.6667,"text-font":["Arial Italic"],"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-field":"{_name}"},"paint":{"text-color":"#808080","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Topo Layers/Point of Interest/label/General Feature - QC","type":"symbol","source":"esri","source-layer":"Point of Interest","minzoom":13,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-letter-spacing":0.09,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#343434"}},{"id":"Topo Layers/Point of Interest/label/General Feature - NS","type":"symbol","source":"esri","source-layer":"Point of Interest","minzoom":14,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-letter-spacing":0.09,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#343434"}},{"id":"Topo Layers/Landform_ESRI/label/288k Labels","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",11],["==","$type","LineString"]],"minzoom":10,"maxzoom":13,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.27,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/288k Labels/point","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",11],["==","$type","Point"]],"minzoom":10,"maxzoom":13,"layout":{"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.27,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/577k Labels","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",10],["==","$type","LineString"]],"minzoom":9,"maxzoom":12,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.27,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/577k Labels/point","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",10],["==","$type","Point"]],"minzoom":9,"maxzoom":12,"layout":{"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.27,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/1mLabels","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",9],["==","$type","LineString"]],"minzoom":8,"maxzoom":12,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.1,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/1mLabels/point","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",9],["==","$type","Point"]],"minzoom":8,"maxzoom":12,"layout":{"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.1,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/Mountains - 4m","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",8],["==","$type","LineString"]],"minzoom":6,"maxzoom":8,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":9.33333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/Mountains - 4m/point","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",8],["==","$type","Point"]],"minzoom":6,"maxzoom":8,"layout":{"text-font":["Arial Italic"],"text-size":9.33333,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/2mlabels","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["==","_label_class",7],"minzoom":7,"maxzoom":9,"layout":{"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.27,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/9mlabels","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["==","_label_class",5],"minzoom":5,"maxzoom":8,"layout":{"text-font":["Arial Italic"],"text-size":9.33333,"text-letter-spacing":0.27,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/ArcticLarge","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["==","_label_class",4],"minzoom":4,"maxzoom":6,"layout":{"text-font":["Arial Italic"],"text-size":13.3333,"text-letter-spacing":0.5,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/Ranges","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",2],["==","$type","LineString"]],"minzoom":4,"maxzoom":8,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":10.6667,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/Ranges/point","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",2],["==","$type","Point"]],"minzoom":4,"maxzoom":8,"layout":{"text-font":["Arial Italic"],"text-size":10.6667,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/IslandsLarge","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",1],["==","$type","LineString"]],"minzoom":4,"maxzoom":6,"layout":{"symbol-placement":"line","symbol-spacing":1000,"text-font":["Arial Italic"],"text-letter-spacing":0.5,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/IslandsLarge/point","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["all",["==","_label_class",1],["==","$type","Point"]],"minzoom":4,"maxzoom":6,"layout":{"text-font":["Arial Italic"],"text-letter-spacing":0.5,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Topo Layers/Landform_ESRI/label/SmallScaleIslands","type":"symbol","source":"esri","source-layer":"Landform_ESRI/label","filter":["==","_label_class",0],"minzoom":4,"maxzoom":7,"layout":{"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.27,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#686868","text-halo-color":"#E1E1E1","text-halo-width":0.266667},"showProperties":false},{"id":"Cities - largest scale/label/Pclass0","type":"symbol","source":"esri","source-layer":"Cities - largest scale","minzoom":12,"layout":{"text-size":{"base":1,"stops":[[10,10],[16,13]]},"text-font":["Arial Regular"],"text-letter-spacing":0.05,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.083189,0.216811],"text-field":"{_name3}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1},"showProperties":false},{"id":"Cities - largest scale/label/Neighbourhoods","type":"symbol","source":"esri","source-layer":"Cities - largest scale","minzoom":11,"layout":{"text-size":{"base":1,"stops":[[10,9.5],[16,15]]},"text-font":["Arial Regular"],"text-letter-spacing":0.05,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-field":"{_name2}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities - largest scale/label/Pclass467","type":"symbol","source":"esri","source-layer":"Cities - largest scale","minzoom":11,"layout":{"text-size":14.6667,"text-font":["Arial Regular"],"text-letter-spacing":0.11,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0642824,0.235718],"text-field":"{_name1}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities - largest scale/label/Pclass8","type":"symbol","source":"esri","source-layer":"Cities - largest scale","minzoom":11,"layout":{"text-size":17.3333,"text-font":["Arial Regular"],"text-letter-spacing":0.11,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0543928,0.245607],"text-field":"{_name}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities -mid scale/label/pclass6","type":"symbol","source":"esri","source-layer":"Cities -mid scale","minzoom":6,"maxzoom":8,"layout":{"text-size":11,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.083189,0.216811],"text-field":"{_name2}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities -mid scale/label/Pclass7","type":"symbol","source":"esri","source-layer":"Cities -mid scale","minzoom":6,"maxzoom":8,"layout":{"text-size":12.6667,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0744323,0.225568],"text-field":"{_name1}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities -mid scale/label/Pclass8","type":"symbol","source":"esri","source-layer":"Cities -mid scale","minzoom":6,"maxzoom":8,"layout":{"text-size":13.3333,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0707107,0.229289],"text-field":"{_name}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities - large scale/label/Under500k","type":"symbol","source":"esri","source-layer":"Cities - large scale","minzoom":10,"maxzoom":11,"layout":{"text-size":11.3333,"text-font":["Arial Regular"],"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.083189,0.216811],"text-field":"{_name3}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities - large scale/label/Under1M","type":"symbol","source":"esri","source-layer":"Cities - large scale","minzoom":9,"maxzoom":11,"layout":{"text-font":["Arial Regular"],"text-size":11.3333,"text-anchor":"bottom-left","text-offset":[0.083189,0.216811],"text-field":"{_name2}","text-optional":true},"paint":{"text-color":"#343434","text-halo-color":"#FFFFFF","text-halo-width":2},"showProperties":false},{"id":"Cities - large scale/label/Under2M - Smaller","type":"symbol","source":"esri","source-layer":"Cities - large scale","minzoom":8,"maxzoom":11,"layout":{"text-font":["Arial Regular"],"text-size":13.3333,"text-anchor":"bottom-left","text-offset":[0.0707107,0.229289],"text-field":"{_name1}","text-optional":true},"paint":{"text-color":"#343434","text-halo-color":"#FFFFFF","text-halo-width":2},"showProperties":false},{"id":"Cities - large scale/label/Under 2M-LargeCities","type":"symbol","source":"esri","source-layer":"Cities - large scale","minzoom":8,"maxzoom":11,"layout":{"text-size":13.3333,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"text-anchor":"bottom-left","text-offset":[0.0707107,0.229289],"text-field":"{_name}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Major Cities - small scale","type":"symbol","source":"esri","source-layer":"Major Cities - small scale","minzoom":4,"maxzoom":5,"layout":{"text-size":10.6667,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"icon-allow-overlap":true,"text-anchor":"bottom-left","text-offset":[0.369638,-0.0696383],"text-field":"{_name}"},"paint":{"text-color":"#343434","text-halo-color":"#FFFFFF","text-halo-width":2},"showProperties":false},{"id":"Capital Cities - small scale","type":"symbol","source":"esri","source-layer":"Capital Cities - small scale","minzoom":3,"maxzoom":6,"layout":{"text-size":11,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"icon-allow-overlap":true,"text-anchor":"bottom-left","text-offset":[0.463388,-0.163388],"text-field":"{_name}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Cities - small scale ","type":"symbol","source":"esri","source-layer":"Cities - small scale ","minzoom":5,"maxzoom":6,"layout":{"text-size":11,"text-font":["Arial Regular"],"text-letter-spacing":0.09,"text-optional":true,"icon-allow-overlap":true,"text-anchor":"bottom-left","text-offset":[0.369638,-0.0696383],"text-field":"{_name}"},"paint":{"text-color":"#353635","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Site Address Point/label/GeneralBuildings","type":"symbol","source":"esri","source-layer":"Site Address Point","minzoom":17,"layout":{"text-font":["Tahoma Regular"],"text-size":9.33333,"text-anchor":"bottom-left","text-offset":[0.101015,0.198985],"text-field":"{_name1}","text-optional":true},"paint":{"text-color":"#9C9C9C"}},{"id":"Site Address Point/label/Units","type":"symbol","source":"esri","source-layer":"Site Address Point","minzoom":17,"layout":{"text-font":["Tahoma Regular"],"text-size":9.33333,"text-anchor":"bottom-left","text-offset":[0.101015,0.198985],"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#9C9C9C"}},{"id":"Province Label small scale/label/Canada","type":"symbol","source":"esri","source-layer":"Province Label small scale","minzoom":2,"maxzoom":5,"layout":{"text-size":14.6667,"text-font":["Arial Bold"],"text-letter-spacing":0.3,"text-optional":true,"text-field":"{_name3}"},"paint":{"text-color":"#aaafac","text-halo-color":"#f7f7f7","text-halo-width":1,"text-halo-blur":1},"showProperties":false},{"id":"Province Label small scale/label/PEI","type":"symbol","source":"esri","source-layer":"Province Label small scale","minzoom":5,"maxzoom":6,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-letter-spacing":0.1,"text-field":"{_name2}","text-optional":true},"paint":{"text-color":"#797B7D","text-halo-color":"#FFFFFF","text-halo-width":1.33333},"showProperties":false},{"id":"Province Label small scale/label/NS","type":"symbol","source":"esri","source-layer":"Province Label small scale","minzoom":4,"maxzoom":6,"layout":{"text-font":["Arial Regular"],"text-size":10.6667,"text-anchor":"bottom-left","text-offset":[0.0883883,0.211612],"text-letter-spacing":0.1,"text-field":"{_name1}","text-optional":true},"paint":{"text-color":"#797B7D","text-halo-color":"#FFFFFF","text-halo-width":1.33333},"showProperties":false},{"id":"Province Label small scale/label/Class 1","type":"symbol","source":"esri","source-layer":"Province Label small scale","minzoom":4,"maxzoom":6,"layout":{"text-size":12,"text-font":["Arial Regular"],"text-letter-spacing":0.1,"text-optional":true,"text-field":"{_name}"},"paint":{"text-color":"#b4b4b4","text-halo-color":"#efefef","text-halo-width":1,"text-halo-blur":1}},{"id":"Province Label/label/PEI","type":"symbol","source":"esri","source-layer":"Province Label","minzoom":6,"maxzoom":8,"layout":{"text-font":["Arial Bold"],"text-size":12.6667,"text-anchor":"bottom-left","text-offset":[0.0744323,0.225568],"text-letter-spacing":0.1,"text-field":"{_name2}","text-optional":true},"paint":{"text-color":"#797B7D","text-halo-color":"#FFFFFF","text-halo-width":1.33333},"showProperties":false},{"id":"Province Label/label/NS","type":"symbol","source":"esri","source-layer":"Province Label","minzoom":6,"maxzoom":8,"layout":{"text-font":["Arial Bold"],"text-size":12.6667,"text-anchor":"bottom-left","text-offset":[0.0744323,0.225568],"text-letter-spacing":0.1,"text-field":"{_name1}","text-optional":true},"paint":{"text-color":"#797B7D","text-halo-color":"#FFFFFF","text-halo-width":1.33333},"showProperties":false},{"id":"Province Label/label/Class 1","type":"symbol","source":"esri","source-layer":"Province Label","minzoom":6,"maxzoom":8,"layout":{"text-font":["Arial Regular"],"text-size":14.6667,"text-letter-spacing":0.1,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#797B7D","text-halo-color":"#FFFFFF","text-halo-width":1.33333},"showProperties":false}],"metadata":{"arcgisStyleUrl":"https://www.arcgis.com/sharing/rest/content/items/0baf45ff172d4917b12f3a691bc87553/resources/styles/root.json","arcgisOriginalItemTitle":"Light Grey Community Map","arcgisQuickEditorWarning":true,"arcgisEditorExtents":[{"spatialReference":{"wkid":102100},"xmin":-7913441.505121151,"ymin":5899440.250227741,"xmax":-7901631.984251108,"ymax":5907198.6085986765},{"spatialReference":{"latestWkid":3857,"wkid":102100},"xmin":-19322061.05146325,"ymin":4451995.507110002,"xmax":-2111480.984136753,"ymax":18986540.259090003},{"spatialReference":{"latestWkid":3857,"wkid":102100},"xmin":-19322061.05146325,"ymin":4451995.507110002,"xmax":-2111480.984136753,"ymax":18986540.259090003},{"spatialReference":{"latestWkid":3857,"wkid":102100},"xmin":-19322061.05146325,"ymin":4451995.507110002,"xmax":-2111480.984136753,"ymax":18986540.259090003}],"arcgisMinimapVisibility":false}} \ No newline at end of file +{ + "version": 8, + "sprite": "https://www.arcgis.com/sharing/rest/content/items/0baf45ff172d4917b12f3a691bc87553/resources/styles/sprite-1569437124838", + "glyphs": "https://tiles.arcgis.com/tiles/B6yKvIZqzuOr0jBR/arcgis/rest/services/Canada_Topographic/VectorTileServer/resources/styles/../fonts/{fontstack}/{range}.pbf", + "sources": { + "esri": { + "type": "vector", + "url": "https://tiles.arcgis.com/tiles/B6yKvIZqzuOr0jBR/arcgis/rest/services/Canada_Topographic/VectorTileServer", + "tiles": ["https://tiles.arcgis.com/tiles/B6yKvIZqzuOr0jBR/arcgis/rest/services/Canada_Topographic/VectorTileServer/tile/{z}/{y}/{x}.pbf"] + } + }, + "layers": [ + { + "id": "Topo Layers/Landbase", + "type": "fill", + "source": "esri", + "source-layer": "Landbase", + "minzoom": 2, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [0, "#f4f4f4"], + [7, "#efefef"] + ] + } + } + }, + { + "id": "Topo Layers/Owner Parcel", + "type": "fill", + "source": "esri", + "source-layer": "Owner Parcel", + "minzoom": 16, + "layout": {}, + "paint": { + "fill-opacity": 0.6, + "fill-color": { + "base": 1, + "stops": [ + [0, "#f4f4f4"], + [7, "#efefef"] + ] + } + } + }, + { + "id": "Topo Layers/Urban Area/00000000001111111111111/1", + "type": "fill", + "source": "esri", + "source-layer": "Urban Area", + "filter": ["==", "_symbol", 0], + "minzoom": 13, + "maxzoom": 14, + "layout": {}, + "paint": { "fill-color": "#ecedec" } + }, + { + "id": "Topo Layers/Urban Area/00000000001111111111111_5/1", + "type": "fill", + "source": "esri", + "source-layer": "Urban Area", + "filter": ["==", "_symbol", 0], + "minzoom": 3, + "maxzoom": 9, + "layout": {}, + "paint": { "fill-color": "#e5e8e7" } + }, + { + "id": "Topo Layers/Urban Area/00000000001111111111111_4/1", + "type": "fill", + "source": "esri", + "source-layer": "Urban Area", + "filter": ["==", "_symbol", 0], + "minzoom": 9, + "maxzoom": 10, + "layout": {}, + "paint": { "fill-color": "#e5e8e7" } + }, + { + "id": "Topo Layers/Urban Area/00000000001111111111111_3/1", + "type": "fill", + "source": "esri", + "source-layer": "Urban Area", + "filter": ["==", "_symbol", 0], + "minzoom": 10, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-color": "#ecedec" } + }, + { + "id": "Topo Layers/Urban Area/00000000001111111111111_2/1", + "type": "fill", + "source": "esri", + "source-layer": "Urban Area", + "filter": ["==", "_symbol", 0], + "minzoom": 11, + "maxzoom": 12, + "layout": {}, + "paint": { "fill-color": "#ecedec" } + }, + { + "id": "Topo Layers/Urban Area/00000000001111111111111_1/1", + "type": "fill", + "source": "esri", + "source-layer": "Urban Area", + "filter": ["==", "_symbol", 0], + "minzoom": 12, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#ecedec" } + }, + { + "id": "Topo Layers/Parcel Outline", + "type": "line", + "source": "esri", + "source-layer": "Parcel Outline", + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#e7e7e7", "line-width": 1.06658 } + }, + { + "id": "Topo Layers/First Nations/1", + "type": "line", + "source": "esri", + "source-layer": "First Nations", + "minzoom": 10, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-opacity": 0.47, "line-color": "#dddedb", "line-width": 4.66667 } + }, + { + "id": "Topo Layers/First Nations/0", + "type": "line", + "source": "esri", + "source-layer": "First Nations", + "minzoom": 10, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#9C9C9C", "line-dasharray": [6.41026, 3.84615], "line-width": 1.04, "line-opacity": 0.47 } + }, + { + "id": "Topo Layers/International / Provincial Boundaries:2/", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:2", + "filter": ["==", "_symbol", 0], + "minzoom": 10, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#dddedb", + "line-width": { + "stops": [ + [10, 1.33333], + [18, 2.66667] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:2/3", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:2", + "filter": ["==", "_symbol", 1], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#9c9c9c", "line-width": 0.933333, "line-dasharray": [9.71429, 6.85714] } + }, + { + "id": "Topo Layers/International / Provincial Boundaries:2/4", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:2", + "filter": ["==", "_symbol", 2], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#9C9C9C", "line-dasharray": [7.14286, 4.28571], "line-width": 0.933333 } + }, + { + "id": "Topo Layers/International / Provincial Boundaries:2/13", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:2", + "filter": ["==", "_symbol", 3], + "minzoom": 10, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dddedb", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Small Scale Landuse/825 - Park: Territorial; 823 - Park: National; 824 - Park: Provincial/1", + "type": "fill", + "source": "esri", + "source-layer": "Small Scale Landuse", + "filter": ["==", "_symbol", 0], + "minzoom": 5, + "maxzoom": 8, + "layout": {}, + "paint": { "fill-color": "#eceeea" }, + "showProperties": false + }, + { + "id": "Topo Layers/Small Scale Landuse/825 - Park: Territorial; 823 - Park: National; 824 - Park: Provincial/0", + "type": "line", + "source": "esri", + "source-layer": "Small Scale Landuse", + "filter": ["==", "_symbol", 0], + "minzoom": 5, + "maxzoom": 8, + "layout": { "visibility": "none", "line-cap": "round", "line-join": "round" }, + "paint": { "line-opacity": 0.36, "line-color": "#e7eae6", "line-width": 2 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/900/1", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 2], + "minzoom": 8, + "layout": {}, + "paint": { "fill-opacity": 0.5, "fill-color": "#e4e8e4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/1105 - Helipad / Heliport / Helistop", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 27], + "minzoom": 8, + "layout": {}, + "paint": { "fill-opacity": 0.5, "fill-color": "#e4e8e4" } + }, + { + "id": "Topo Layers/Landuse/1100 - Airport Facility", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 25], + "minzoom": 8, + "layout": {}, + "paint": { "fill-opacity": 0.5, "fill-color": "#e4e8e4" } + }, + { + "id": "Topo Layers/Landuse/1102 - Airport Runway / Airfield/1", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 26], + "minzoom": 8, + "layout": {}, + "paint": { "fill-color": "#D1D1D1", "fill-opacity": 0.5 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/849 - Zoo", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 24], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/831 - Playground", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 19], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/830 - Picnic Area", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 18], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/828 - Park: Municipal", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 17], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/827 - Park: Upper Municipal", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 16], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/826 - Park: Municipal Region Area", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 15], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/825 - Park: Territorial", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 14], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [18, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/824 - Park: Provincial", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 13], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/823 - Park: National", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 12], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/821 - Open Space", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 11], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/807 - Campground", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 6], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/800 - General Recreation", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 1], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/815 - Golf Course Facility", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 10], + "minzoom": 8, + "layout": {}, + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [6, "#eceeea"], + [11, "#e4e8e4"] + ] + }, + "fill-outline-color": "#e7eae6" + }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/836 - Racetrack (Track and Field)", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 21], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "rgba(91,113,91,0.88)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/845 - Tennis Courts", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 23], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/842 - Soccer Field", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 22], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/838 - Rugby Field", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 20], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/814 - Football Facility", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 9], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/813 - Fair / Exhibition / Rodeo Grounds", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 8], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/809 - Cricket Facility", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 7], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/806 - Basketball Courts", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 5], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/805 - Baseball Facility", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 4], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/803 - Athletic / Sports Field", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 3], + "minzoom": 14, + "layout": {}, + "paint": { "fill-opacity": 0.1, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/720 - Cemetery", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 0], + "minzoom": 8, + "layout": {}, + "paint": { "fill-color": "#e4e8e4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/", + "type": "fill", + "source": "esri", + "source-layer": "Landuse", + "filter": ["==", "_symbol", 28], + "minzoom": 8, + "layout": {}, + "paint": { "fill-color": "#828282", "fill-opacity": 0.5, "fill-outline-color": "#6E6E6E" }, + "showProperties": false + }, + { + "id": "Topo Layers/Bathymetry/1/1", + "type": "fill", + "source": "esri", + "source-layer": "Bathymetry", + "filter": ["==", "_symbol", 0], + "minzoom": 7, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Bathymetry/1_1/1", + "type": "fill", + "source": "esri", + "source-layer": "Bathymetry", + "filter": ["==", "_symbol", 0], + "maxzoom": 7, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Bathymetry/2/1", + "type": "fill", + "source": "esri", + "source-layer": "Bathymetry", + "filter": ["==", "_symbol", 1], + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Bathymetry/3/1", + "type": "fill", + "source": "esri", + "source-layer": "Bathymetry", + "filter": ["==", "_symbol", 2], + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Bathymetry/4/1", + "type": "fill", + "source": "esri", + "source-layer": "Bathymetry", + "filter": ["==", "_symbol", 3], + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Bathymetry/5/1", + "type": "fill", + "source": "esri", + "source-layer": "Bathymetry", + "filter": ["==", "_symbol", 4], + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline_9M/", + "type": "line", + "source": "esri", + "source-layer": "Waterline_9M", + "filter": ["==", "_symbol", 0], + "minzoom": 8, + "maxzoom": 7, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline 9M", + "type": "line", + "source": "esri", + "source-layer": "Waterline 9M", + "minzoom": 5, + "maxzoom": 6, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline 4M", + "type": "line", + "source": "esri", + "source-layer": "Waterline 4M", + "minzoom": 6, + "maxzoom": 7, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline 1M", + "type": "line", + "source": "esri", + "source-layer": "Waterline 1M", + "minzoom": 7, + "maxzoom": 9, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline 577k", + "type": "line", + "source": "esri", + "source-layer": "Waterline 577k", + "minzoom": 9, + "maxzoom": 11, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Canal", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 0], + "minzoom": 15, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.06667, "line-dasharray": [3.75, 2.5] }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Creek", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 1], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Creek_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 1], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Diversion", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 3], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Diversion_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 3], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Double Line River", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 4], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Double Line River_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 4], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Other", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 5], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Other_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 5], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/River", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 6], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/River_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 6], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Side Channel", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 7], + "minzoom": 11, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Side Channel_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 7], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Stream", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 8], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Stream_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 8], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Tidal River", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 9], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Tidal River_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 9], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Unknown", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 10], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Unknown_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 10], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Watercourse", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 11], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/Watercourse_1", + "type": "line", + "source": "esri", + "source-layer": "RiverSegment_MUN", + "filter": ["==", "_symbol", 11], + "minzoom": 11, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterbody small scale/1", + "type": "fill", + "source": "esri", + "source-layer": "Waterbody small scale", + "maxzoom": 7, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false, + "minzoom": 2 + }, + { + "id": "Topo Layers/Waterbody small scale/0", + "type": "line", + "source": "esri", + "source-layer": "Waterbody small scale", + "maxzoom": 7, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#cfd3d4", + "line-width": { + "property": "size", + "default": 0.666667, + "stops": [ + [887872000, 0], + [17578800000, 0.666667] + ] + } + }, + "minzoom": 2, + "showProperties": false + }, + { + "id": "Topo Layers/Waterbody 1M/1", + "type": "fill", + "source": "esri", + "source-layer": "Waterbody 1M", + "minzoom": 7, + "maxzoom": 9, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Water 250k/20: Not Identified / Non identifié/1", + "type": "fill", + "source": "esri", + "source-layer": "Water 250k", + "filter": ["==", "_symbol", 0], + "minzoom": 9, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Water 250k/59: Permanent / Permanent/1", + "type": "fill", + "source": "esri", + "source-layer": "Water 250k", + "filter": ["==", "_symbol", 1], + "minzoom": 9, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Water 250k/60: Intermittent / Intermittent/2", + "type": "fill", + "source": "esri", + "source-layer": "Water 250k", + "filter": ["==", "_symbol", 2], + "minzoom": 9, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Water 250k/60: Intermittent / Intermittent/1", + "type": "fill", + "source": "esri", + "source-layer": "Water 250k", + "filter": ["==", "_symbol", 2], + "minzoom": 9, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Water 250k/60: Intermittent / Intermittent/0", + "type": "line", + "source": "esri", + "source-layer": "Water 250k", + "filter": ["==", "_symbol", 2], + "minzoom": 9, + "maxzoom": 11, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#cfd3d4", "line-width": 0.666667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Water 250k//1", + "type": "fill", + "source": "esri", + "source-layer": "Water 250k", + "filter": ["==", "_symbol", 3], + "minzoom": 9, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Artificial Path", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 0], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Bay Inlet", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 1], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Canal", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 2], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Conduit", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 3], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Connector", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 4], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Creek", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 5], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Ditch", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 6], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Diversion", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 7], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Double Line River", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 8], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Estuary", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 9], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Flume", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 10], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Ford", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 11], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Ice Mass", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 12], + "minzoom": 11, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Ice Mass" } + }, + { + "id": "Topo Layers/Community Waterbodies/Lake", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 13], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Marsh", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 14], + "minzoom": 11, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Marsh" } + }, + { + "id": "Topo Layers/Community Waterbodies/None", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 15], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Ocean", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 16], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Other", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 17], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Playa", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 18], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Pond", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 19], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Rapids/2", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 20], + "minzoom": 11, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Rapids/2" } + }, + { + "id": "Topo Layers/Community Waterbodies/Rapids/1", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 20], + "minzoom": 11, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Rapids/1" } + }, + { + "id": "Topo Layers/Community Waterbodies/Rapids/0", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 20], + "minzoom": 11, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Rapids/0" } + }, + { + "id": "Topo Layers/Community Waterbodies/Reef", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 21], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Reservoir", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 22], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Rise", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 23], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/River", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 24], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Sea", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 25], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Seep", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 26], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Side Channel", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 27], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Stream", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 28], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Swamp", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 29], + "minzoom": 11, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Swamp" } + }, + { + "id": "Topo Layers/Community Waterbodies/Tidal Flat/1", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 30], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Tidal Flat/0", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 30], + "minzoom": 11, + "layout": { "visibility": "visible" }, + "paint": { "fill-opacity": 1, "fill-color": "#cfd3d4", "fill-antialias": true, "fill-translate": [0, 0], "fill-translate-anchor": "map" } + }, + { + "id": "Topo Layers/Community Waterbodies/Tidal River", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 31], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Unknown", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 32], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Watercourse", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 33], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/Waterfall/2", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 34], + "minzoom": 11, + "layout": {}, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Waterfall/2" } + }, + { + "id": "Topo Layers/Community Waterbodies/Waterfall/1", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 34], + "minzoom": 11, + "layout": {}, + "paint": { "fill-pattern": "Topo Layers/Community Waterbodies/Waterfall/1" } + }, + { + "id": "Topo Layers/Community Waterbodies/Waterfall/0", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 34], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#cfd3d4" } + }, + { + "id": "Topo Layers/Community Waterbodies/Dam", + "type": "fill", + "source": "esri", + "source-layer": "Community Waterbodies", + "filter": ["==", "_symbol", 35], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#9C9C9C", "fill-outline-color": "#686868" } + }, + { + "id": "Topo Layers/Surface/300 - Pool / Water Fountain", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 13], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "#cfd3d4", "fill-outline-color": "#cfd3d4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/209 - Walking Path", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 12], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "#f2f2f1" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/208 - Street", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 11], + "minzoom": 12, + "layout": { "visibility": "none" }, + "paint": { "fill-color": "rgba(234,233,231,0.6)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/207 - Sidewalk", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 10], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "#f2f2f1" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/206 - Parking Lot", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 9], + "minzoom": 12, + "layout": { "visibility": "none" }, + "paint": { "fill-color": "#f2f2f1" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/201 - Asphalt", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 8], + "minzoom": 12, + "layout": { "visibility": "none" }, + "paint": { "fill-color": "rgba(225,225,225,0.7)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/112 - Glacier ", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 7], + "minzoom": 10, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Surface/112 - Glacier " } + }, + { + "id": "Topo Layers/Surface/110 - Deck/Patio", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 6], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "#f2f2f1", "fill-outline-color": "#f2f2f1" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/109 - Turf", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 5], + "minzoom": 14, + "layout": { "visibility": "none" }, + "paint": { "fill-opacity": 0.3, "fill-color": "rgba(91,113,91,0.88)", "fill-outline-color": "#FFFFFF" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/108 - Sand", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 4], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "#f2f2f1" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/103 - Gravel/2", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 3], + "minzoom": 14, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Surface/103 - Gravel/2" } + }, + { + "id": "Topo Layers/Surface/103 - Gravel/1", + "type": "line", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 3], + "minzoom": 14, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "rgba(204,204,204,0.6)", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/103 - Gravel/0", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 3], + "minzoom": 14, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Surface/103 - Gravel/0" } + }, + { + "id": "Topo Layers/Surface/102 - Grass", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 2], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "#e4e8e4" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/101 - Dirt/1", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 1], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "#f2f2f1" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/100 - Clay/1", + "type": "fill", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 0], + "minzoom": 12, + "layout": {}, + "paint": { "fill-color": "rgba(91,113,91,0.88)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Surface/100 - Clay/0", + "type": "line", + "source": "esri", + "source-layer": "Surface", + "filter": ["==", "_symbol", 0], + "minzoom": 12, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "rgba(91,113,91,0.88)", + "line-width": { + "stops": [ + [12, 1.06667], + [17, 1.06667], + [18, 1.06667] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Wetland//1", + "type": "fill", + "source": "esri", + "source-layer": "Wetland", + "filter": ["==", "_symbol", 0], + "minzoom": 10, + "layout": { "visibility": "none" }, + "paint": { "fill-pattern": "Topo Layers/Wetland//1" } + }, + { + "id": "Topo Layers/Piers/2", + "type": "fill", + "source": "esri", + "source-layer": "Piers", + "minzoom": 13, + "layout": {}, + "paint": { "fill-color": "rgba(204,204,204,0.6)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Piers/1", + "type": "fill", + "source": "esri", + "source-layer": "Piers", + "minzoom": 13, + "layout": {}, + "paint": { "fill-color": "rgba(204,204,204,0.6)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Piers/0", + "type": "line", + "source": "esri", + "source-layer": "Piers", + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "rgba(204,204,204,0.6)", "line-width": 0.666667 }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/1/1", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 0], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#dddedb", "line-width": 6.66667 } + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/1/0", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 0], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#9c9c9c", "line-width": 1.04, "line-dasharray": [8.71795, 6.15385] } + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/1_2/1", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 0], + "minzoom": 1, + "maxzoom": 2, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#CCCCCC", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/1_1/1", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 0], + "minzoom": 2, + "maxzoom": 10, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#dddedb", "line-width": 3.33333 } + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/1_1/0", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 0], + "minzoom": 2, + "maxzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": { + "base": 1, + "stops": [ + [5, "#cccccc"], + [7, "#9c9c9c"] + ] + }, + "line-width": 0.624, + "line-dasharray": [8.71795, 6.15385] + }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/2/1", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 1], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#dfe0dd", + "line-width": { + "stops": [ + [6, 5.06667], + [10, 5.33333], + [15, 5.33333], + [18, 5.33333] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/2/0", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 1], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": { + "base": 1, + "stops": [ + [7, "#c8c8c8"], + [12, "#9c9c9c"] + ] + }, + "line-width": { + "stops": [ + [6, 0.633333], + [10, 0.666667], + [15, 0.666667], + [18, 0.666667] + ] + }, + "line-dasharray": [13.6, 9.6] + }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/2_2/1", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 1], + "minzoom": 3, + "maxzoom": 7, + "layout": { "line-join": "round" }, + "paint": { "line-color": "rgba(204,204,204,0.8)", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/2_1/1", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 1], + "minzoom": 7, + "maxzoom": 10, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#dddedb", "line-width": 4 }, + "showProperties": false + }, + { + "id": "Topo Layers/International / Provincial Boundaries:1/2_1/0", + "type": "line", + "source": "esri", + "source-layer": "International / Provincial Boundaries:1", + "filter": ["==", "_symbol", 1], + "minzoom": 7, + "maxzoom": 10, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#9c9c9c", "line-width": 0.266667, "line-dasharray": [25, 25] } + }, + { + "id": "Topo Layers/Trails/", + "type": "symbol", + "source": "esri", + "source-layer": "Trails", + "filter": ["==", "_symbol", 0], + "minzoom": 15, + "layout": { "symbol-placement": "line", "icon-image": "Topo Layers/Trails/", "symbol-spacing": 10.6667, "icon-rotation-alignment": "map", "icon-allow-overlap": true }, + "paint": { "icon-color": "#B8B09C", "icon-opacity": 0.6 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Ferry", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 9], + "minzoom": 9, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#ebedeb", "line-dasharray": [4.54545, 1.81818], "line-width": 1.46667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Highways/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 0], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [0, 2.66667], + [5, 3.33333], + [9, 3.33333], + [10, 3.33333], + [11, 4], + [12, 4.26667], + [13, 6.10667], + [14, 6.25333], + [15, 10.5867], + [16, 18.6667], + [18, 24] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Arterial/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 1], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [0, 1.33333], + [9, 1.33333], + [10, 1.33333], + [11, 1.33333], + [12, 4], + [13, 4], + [14, 4], + [15, 8], + [16, 16], + [17, 24], + [18, 25.3333] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Collector/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 2], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [12, 1.33333], + [13, 3.33333], + [14, 4.26667], + [15, 6.66667], + [16, 7.6], + [17, 14.6667], + [18, 21.3333] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Local Roads/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 3], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [12, 1.33333], + [13, 3.33333], + [14, 4], + [15, 6.66667], + [16, 7.6], + [17, 14.6667], + [18, 21.3333] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/HIghway Ramps/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 4], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [0, 13.7793], + [9, 2.84], + [10, 2.84], + [11, 2.84], + [12, 2.84], + [13, 3.33333], + [14, 6.05333], + [15, 6.05333], + [16, 6.8], + [17, 7.33333], + [18, 9.33333] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Arterial Ramps/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 5], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [0, 13.7793], + [9, 2.64], + [10, 2.64], + [11, 2.64], + [12, 2.66667], + [13, 3.33333], + [14, 5.33333], + [15, 5.33333], + [16, 6.8], + [17, 7.33333], + [18, 9.33333] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Local Ramps/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 6], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [12, 1.33333], + [13, 3.77333], + [14, 4.72], + [15, 7.18667], + [16, 7.93333], + [17, 14.6667], + [18, 21.6] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Recreation/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 7], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [12, 1.33333], + [13, 2.64], + [14, 2.64], + [15, 3.77333], + [16, 4.53333], + [17, 9.33333], + [18, 11.0667] + ] + }, + "line-dasharray": [0.60241, 0.361446] + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Service/1", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 8], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#e3e5e2", + "line-width": { + "stops": [ + [12, 1.33333], + [13, 2.64], + [14, 2.64], + [15, 3.77333], + [16, 4.53333], + [17, 8], + [18, 11.1129] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Service/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 8], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#FDFDFD", + "line-width": { + "stops": [ + [12, 1.09336], + [13, 2.16485], + [14, 2.16485], + [15, 3.0942], + [16, 3.71741], + [17, 6.56014], + [18, 9.1128] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Recreation/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 7], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#FFFFFF", + "line-width": { + "stops": [ + [12, 1.01205], + [13, 2.00386], + [14, 2.00386], + [15, 2.8641], + [16, 3.44096], + [17, 7.08434], + [18, 8.4] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Local Ramps/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 6], + "minzoom": 13, + "layout": {}, + "paint": { + "line-color": "#FDFDFD", + "line-width": { + "stops": [ + [12, 1.14872], + [13, 3.25087], + [14, 4.06645], + [15, 6.19158], + [16, 6.83486], + [17, 12.6359], + [18, 18.6092] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Arterial Ramps/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 5], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#ffffff", + "line-width": { + "stops": [ + [0, 9.33333], + [9, 1.78819], + [10, 1.78819], + [11, 1.78819], + [12, 1.80625], + [13, 2.25781], + [14, 3.6125], + [15, 3.6125], + [16, 4.60593], + [17, 4.96718], + [18, 6.32187] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/HIghway Ramps/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 4], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#ffffff", + "line-width": { + "stops": [ + [0, 9.33333], + [9, 1.92365], + [10, 1.92365], + [11, 1.92365], + [12, 1.92365], + [13, 2.25781], + [14, 4.10018], + [15, 4.10018], + [16, 4.60593], + [17, 4.96718], + [18, 6.32187] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Local Roads/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 3], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#FDFDFD", + "line-width": { + "stops": [ + [12, 1.12821], + [13, 2.82051], + [14, 3.38462], + [15, 5.64103], + [16, 6.43077], + [17, 12.4103], + [18, 18.0513] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Local Roads_1/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 3], + "minzoom": 12, + "maxzoom": 13, + "layout": {}, + "paint": { "line-color": "#fafafa", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Collector/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 2], + "minzoom": 13, + "layout": {}, + "paint": { + "line-color": "#FDFDFD", + "line-width": { + "stops": [ + [12, 1.12821], + [13, 2.82051], + [14, 3.61026], + [15, 5.64103], + [16, 6.43077], + [17, 12.4103], + [18, 18.0513] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Collector_1/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 2], + "minzoom": 12, + "maxzoom": 13, + "layout": {}, + "paint": { "line-color": "#fafafa", "line-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Arterial/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 1], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#ffffff", + "line-width": { + "stops": [ + [0, 0.985372], + [9, 0.985372], + [10, 0.985372], + [11, 0.985372], + [12, 2.95612], + [13, 2.95612], + [14, 2.95612], + [15, 5.91223], + [16, 11.8245], + [17, 17.7367], + [18, 18.7221] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/Highways/0", + "type": "line", + "source": "esri", + "source-layer": "Road Segment", + "filter": ["==", "_symbol", 0], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#ffffff", + "line-width": { + "stops": [ + [0, 1.48148], + [5, 1.85185], + [9, 1.85185], + [10, 1.85185], + [11, 2.22222], + [12, 2.37037], + [13, 3.39259], + [14, 3.47407], + [15, 5.88148], + [16, 10.3704], + [18, 13.3333] + ] + } + }, + "showProperties": false + }, + { + "id": "Topo Layers/Small scale roads/Major Arterial", + "type": "line", + "source": "esri", + "source-layer": "Small scale roads", + "filter": ["==", "_symbol", 0], + "minzoom": 7, + "maxzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#fafafa" }, + "showProperties": false + }, + { + "id": "Topo Layers/Small scale roads/Major Arterial_1", + "type": "line", + "source": "esri", + "source-layer": "Small scale roads", + "filter": ["==", "_symbol", 0], + "minzoom": 6, + "maxzoom": 7, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#fafafa" }, + "showProperties": false + }, + { + "id": "Topo Layers/Small scale roads/Freeway; Highway Ramp; Highway", + "type": "line", + "source": "esri", + "source-layer": "Small scale roads", + "filter": ["==", "_symbol", 1], + "minzoom": 7, + "maxzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#fafafa" }, + "showProperties": false + }, + { + "id": "Topo Layers/Small scale roads/Freeway; Highway Ramp; Highway_1", + "type": "line", + "source": "esri", + "source-layer": "Small scale roads", + "filter": ["==", "_symbol", 1], + "minzoom": 6, + "maxzoom": 7, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#fafafa" }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Connecting/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 0], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Connecting/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 0], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Crossover/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 1], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Crossover/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 1], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Ferry Route/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 2], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Ferry Route/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 2], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Main/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 3], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Main/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 3], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Other/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 4], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Other/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 4], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Siding/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 5], + "minzoom": 12, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Siding/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 5], + "minzoom": 12, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Spur/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 6], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Spur/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 6], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Spur_1/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 6], + "minzoom": 12, + "maxzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Spur_1/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 6], + "minzoom": 12, + "maxzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Unknown/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 7], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Unknown/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 7], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Wye/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 8], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Wye/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 8], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Yard/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 9], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Yard/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 9], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Rail/Yard_1/1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 9], + "minzoom": 12, + "maxzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/Yard_1/0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 9], + "minzoom": 12, + "maxzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "rgba(230,230,230,0.5)", "line-dasharray": [10.5839, 12.3479], "line-width": 0.755867 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail//1", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 10], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddda", "line-width": 1.88973 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail//0", + "type": "line", + "source": "esri", + "source-layer": "Rail", + "filter": ["==", "_symbol", 10], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#efefef", "line-width": 0.755867, "line-dasharray": [10.5839, 12.3479] } + }, + { + "id": "Topo Layers/Ferry Lines", + "type": "line", + "source": "esri", + "source-layer": "Ferry Lines", + "minzoom": 9, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#ebedeb", "line-width": 1.46667, "line-dasharray": [4.54545, 1.81818] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/General/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 0], + "minzoom": 15, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/General/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 0], + "minzoom": 15, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/General/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 0], + "minzoom": 15, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.453333 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/General_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 0], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/General_1/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 0], + "minzoom": 13, + "maxzoom": 15, + "layout": {}, + "paint": { "fill-color": "#dfe1e2" } + }, + { + "id": "Topo Layers/BuildingFootprint/Government/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 1], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#efefef", "fill-translate": [0.666667, 0.666667] } + }, + { + "id": "Topo Layers/BuildingFootprint/Government/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 1], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Government/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 1], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddde", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Government_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 1], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Government_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 1], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Medical/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 2], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Medical/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 2], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Medical/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 2], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Medical_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 2], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Medical_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 2], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Education/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 3], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Education/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 3], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Education/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 3], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Education_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 3], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Education_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 3], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Transportation/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 4], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Transportation/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 4], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Transportation/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 4], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddde", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Transportation_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 4], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Transportation_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 4], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Commercial/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 5], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Commercial/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 5], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Commercial/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 5], + "minzoom": 16, + "layout": { "visibility": "none", "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#dcddde", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Commercial_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 5], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Commercial_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 5], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Religious/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 6], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Religious/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 6], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Religious/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 6], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Religious_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 6], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Religious_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 6], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Recreation/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 7], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Recreation/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 7], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Recreation/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 7], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Recreation_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 7], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Recreation_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 7], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Cultural/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 8], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Cultural/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 8], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Cultural/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 8], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Cultural_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 8], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Cultural_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 8], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Hotel/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 9], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Hotel/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 9], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Hotel/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 9], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Hotel_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 9], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Hotel_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 9], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Airport/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 10], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Airport/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 10], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Airport/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 10], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Airport_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 10], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Airport_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 10], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Industrial/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 11], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Industrial/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 11], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Industrial/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 11], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Industrial_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 11], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Industrial_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 11], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Community Center/2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 12], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dcddde", "fill-translate": [0.666667, 0.666667] }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Community Center/1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 12], + "minzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/BuildingFootprint/Community Center/0", + "type": "line", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 12], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round", "visibility": "none" }, + "paint": { "line-color": "#BFBFBF", "line-width": 0.466667 }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Community Center_2", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 12], + "minzoom": 11, + "maxzoom": 13, + "layout": {}, + "paint": { "fill-color": "#dcddde" }, + "showProperties": false + }, + { + "id": "Topo Layers/BuildingFootprint/Community Center_1", + "type": "fill", + "source": "esri", + "source-layer": "BuildingFootprint", + "filter": ["==", "_symbol", 12], + "minzoom": 13, + "maxzoom": 16, + "layout": {}, + "paint": { "fill-color": "#dfe1e2", "fill-outline-color": "#efefef" } + }, + { + "id": "Topo Layers/Tree", + "type": "symbol", + "source": "esri", + "source-layer": "Tree", + "minzoom": 17, + "layout": { "icon-image": "Topo Layers/Tree", "icon-allow-overlap": true, "visibility": "none" }, + "paint": { "icon-color": "#D1DCB6" }, + "showProperties": false + }, + { + "id": "Topo Layers/Powerlines/Powerline/1", + "type": "line", + "source": "esri", + "source-layer": "Powerlines", + "filter": ["==", "_symbol", 0], + "minzoom": 13, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#9C9C9C", "line-width": 1.33333, "line-opacity": 0.4 } + }, + { + "id": "Topo Layers/Powerlines/Powerline/0", + "type": "symbol", + "source": "esri", + "source-layer": "Powerlines", + "filter": ["==", "_symbol", 0], + "minzoom": 13, + "layout": { "symbol-placement": "line", "icon-image": "Topo Layers/Powerlines/Powerline/0", "symbol-spacing": 53.3333, "icon-rotation-alignment": "map", "icon-allow-overlap": true }, + "paint": { "icon-color": "#9C9C9C", "icon-opacity": 0.4 } + }, + { + "id": "Provinces/", + "type": "symbol", + "source": "esri", + "source-layer": "Provinces", + "filter": ["==", "_symbol", 0], + "layout": { "icon-image": "Provinces/", "icon-allow-overlap": true }, + "paint": { "icon-color": "rgba(130,130,130,0)" }, + "showProperties": false + }, + { + "id": "Site Address Point", + "type": "symbol", + "source": "esri", + "source-layer": "Site Address Point", + "minzoom": 17, + "layout": { "icon-image": "Site Address Point", "icon-allow-overlap": true }, + "paint": { "icon-color": "rgba(118,138,63,0)" }, + "showProperties": false + }, + { + "id": "Topo Layers/Landforms/label/Long 9pt", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 4], ["==", "$type", "LineString"]], + "minzoom": 9, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 12, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Long 9pt/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 4], ["==", "$type", "Point"]], + "minzoom": 9, + "layout": { "text-font": ["Arial Italic"], "text-size": 12, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Oblong 9pt", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 2], ["==", "$type", "LineString"]], + "minzoom": 9, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 12, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Oblong 9pt/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 2], ["==", "$type", "Point"]], + "minzoom": 9, + "layout": { "text-font": ["Arial Italic"], "text-size": 12, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Point of Interest/label/First Nations Reserve / Hamlet", + "type": "symbol", + "source": "esri", + "source-layer": "Point of Interest", + "minzoom": 13, + "layout": { "text-font": ["Palatino Linotype Bold"], "text-size": 10.6667, "text-anchor": "bottom-left", "text-offset": [0.0883883, 0.211612], "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E", "text-halo-color": "rgba(255,255,255,0.99)", "text-halo-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Point of Interest/label/General Water Feature", + "type": "symbol", + "source": "esri", + "source-layer": "Point of Interest", + "minzoom": 13, + "layout": { "text-size": 10.6667, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/label/Airport", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 0], + "minzoom": 12, + "layout": { "text-font": ["Arial Regular"], "text-size": 11.3333, "text-letter-spacing": 0.09, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/BuildingFootprint/label/BuildingFootprint", + "type": "symbol", + "source": "esri", + "source-layer": "BuildingFootprint/label", + "minzoom": 11, + "layout": { "text-size": 10.6667, "text-font": ["Arial Regular"], "text-letter-spacing": 0.09, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 0.7 }, + "showProperties": false + }, + { + "id": "Topo Layers/Point of Interest/label/General Feature", + "type": "symbol", + "source": "esri", + "source-layer": "Point of Interest", + "minzoom": 13, + "layout": { + "text-size": 10.6667, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.0883883, 0.211612], + "text-field": "{_name}" + }, + "paint": { "text-color": "#939d8c", "text-halo-color": "#ebedeb", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landforms/label/Oblong 10pt", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 0], ["==", "$type", "LineString"]], + "minzoom": 9, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 13.3333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Oblong 10pt/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 0], ["==", "$type", "Point"]], + "minzoom": 9, + "layout": { "text-font": ["Arial Italic"], "text-size": 13.3333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Roundish 9pt", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["==", "_label_class", 3], + "minzoom": 9, + "layout": { "text-font": ["Arial Italic"], "text-size": 12, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Roundish 10pt", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["==", "_label_class", 1], + "minzoom": 9, + "layout": { "text-font": ["Arial Italic"], "text-size": 13.3333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Long 10pt", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 5], ["==", "$type", "LineString"]], + "minzoom": 9, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 13.3333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landforms/label/Long 10pt/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landforms/label", + "filter": ["all", ["==", "_label_class", 5], ["==", "$type", "Point"]], + "minzoom": 9, + "layout": { "text-font": ["Arial Italic"], "text-size": 13.3333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Trails/label/Trail", + "type": "symbol", + "source": "esri", + "source-layer": "Trails/label", + "filter": ["==", "_label_class", 0], + "minzoom": 15, + "layout": { + "text-size": 9, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.08, + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 288, + "text-anchor": "bottom", + "text-offset": [0, 0.05], + "text-field": "{_name}" + }, + "paint": { "text-color": "#666666", "text-halo-color": "#ffffff", "text-halo-width": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/First Nations/label/SmallReserves", + "type": "symbol", + "source": "esri", + "source-layer": "First Nations/label", + "filter": ["==", "_label_class", 1], + "minzoom": 11, + "layout": { "text-size": 13.3333, "text-font": ["Arial Regular"], "text-letter-spacing": 0.06, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#595959", "text-halo-color": "#efefef", "text-halo-width": 1.33333 } + }, + { + "id": "Topo Layers/First Nations/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "First Nations/label", + "filter": ["==", "_label_class", 0], + "minzoom": 10, + "layout": { "text-size": 13.3333, "text-font": ["Arial Regular"], "text-letter-spacing": 0.06, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#595959", "text-halo-color": "#efefef", "text-halo-width": 1 } + }, + { + "id": "Topo Layers/Small Scale Landuse/label/National Parks", + "type": "symbol", + "source": "esri", + "source-layer": "Small Scale Landuse/label", + "filter": ["==", "_label_class", 5], + "minzoom": 5, + "maxzoom": 8, + "layout": { "text-font": ["Arial Regular"], "text-size": 10.6667, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Small Scale Landuse/label/Nat/Prov Park - QC", + "type": "symbol", + "source": "esri", + "source-layer": "Small Scale Landuse/label", + "filter": ["==", "_label_class", 4], + "minzoom": 5, + "maxzoom": 8, + "layout": { "text-font": ["Tahoma Regular"], "text-size": 10.6667, "text-field": "{_name}", "text-optional": true }, + "paint": {} + }, + { + "id": "Topo Layers/Small Scale Landuse/label/Provincial Park", + "type": "symbol", + "source": "esri", + "source-layer": "Small Scale Landuse/label", + "filter": ["==", "_label_class", 1], + "minzoom": 5, + "maxzoom": 8, + "layout": { "text-font": ["Arial Regular"], "text-size": 10.6667, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landuse/label/NatPark - Victoria Islands", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 10], + "minzoom": 10, + "layout": { "text-font": ["Arial Regular"], "text-size": 10.6667, "text-letter-spacing": 0.06, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landuse/label/Provincial Park - QC", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 9], + "minzoom": 8, + "layout": { "text-font": ["Arial Regular"], "text-size": 10.6667, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landuse/label/Provincial Park", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 8], + "minzoom": 8, + "layout": { "text-size": 10.6667, "text-font": ["Arial Regular"], "text-allow-overlap": true, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#939d8c", "text-halo-color": "#ebedeb", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/label/MedScaleParks", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 7], + "minzoom": 13, + "maxzoom": 14, + "layout": { "text-size": 9.33333, "text-font": ["Arial Regular"], "text-letter-spacing": 0.06, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#939d8c", "text-halo-color": "#ebedeb", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/label/SmallScaleParks", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 6], + "minzoom": 12, + "maxzoom": 13, + "layout": { "text-size": 12, "text-font": ["Arial Regular"], "text-letter-spacing": 0.06, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#939d8c", "text-halo-color": "#ebedeb", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/label/SmallScaleGolf", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 5], + "minzoom": 12, + "maxzoom": 14, + "layout": { "text-font": ["Arial Regular"], "text-size": 11.3333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landuse/label/SmallScaleCemetery", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 4], + "minzoom": 13, + "maxzoom": 14, + "layout": { "text-font": ["Arial Regular"], "text-size": 10.6667, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Landuse/label/Landuse", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 3], + "minzoom": 14, + "layout": { "text-size": 10.6667, "text-font": ["Arial Regular"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#939d8c", "text-halo-color": "#ebedeb", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/label/Parks", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 2], + "minzoom": 14, + "layout": { "text-size": 10.6667, "text-font": ["Arial Regular"], "text-letter-spacing": 0.06, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#939d8c", "text-halo-color": "#ebedeb", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landuse/label/National Park", + "type": "symbol", + "source": "esri", + "source-layer": "Landuse/label", + "filter": ["==", "_label_class", 1], + "minzoom": 8, + "layout": { "text-font": ["Arial Regular"], "text-size": 10.6667, "text-letter-spacing": 0.06, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Waterline 4M/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Waterline 4M/label", + "minzoom": 6, + "maxzoom": 7, + "layout": { + "text-size": 12, + "text-font": ["Arial Italic"], + "text-letter-spacing": 0.1, + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 1000, + "text-anchor": "bottom", + "text-offset": [0, 0.188889], + "text-field": "{_name}" + }, + "paint": { "text-color": "#cfd3d4", "text-halo-color": "#efefef" }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline 1M/label/Water 1M-288k", + "type": "symbol", + "source": "esri", + "source-layer": "Waterline 1M/label", + "filter": ["==", "_label_class", 1], + "minzoom": 8, + "maxzoom": 9, + "layout": { + "visibility": "none", + "text-size": 10.6667, + "text-font": ["Arial Italic"], + "text-letter-spacing": 0.1, + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 1000, + "text-anchor": "bottom", + "text-offset": [0, 0.175], + "text-field": "{_name}" + }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline 1M/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Waterline 1M/label", + "filter": ["==", "_label_class", 0], + "minzoom": 7, + "maxzoom": 8, + "layout": { + "visibility": "none", + "text-size": 10.6667, + "text-font": ["Arial Italic"], + "text-letter-spacing": 0.1, + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 1000, + "text-anchor": "bottom", + "text-offset": [0, 0.175], + "text-field": "{_name}" + }, + "paint": { "text-color": "#cfd3d4", "text-halo-color": "#efefef" }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterline Labels/label/Water 1M-288k", + "type": "symbol", + "source": "esri", + "source-layer": "Waterline Labels/label", + "filter": ["==", "_label_class", 1], + "minzoom": 9, + "maxzoom": 11, + "layout": { + "visibility": "none", + "text-size": 10.6667, + "text-font": ["Arial Italic"], + "text-letter-spacing": 0.1, + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 1000, + "text-anchor": "bottom", + "text-offset": [0, 0.175], + "text-field": "{_name}" + }, + "paint": { "text-color": "#cfd3d4", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/RiverSegment_MUN/label/Stream or River", + "type": "symbol", + "source": "esri", + "source-layer": "RiverSegment_MUN/label", + "filter": ["==", "_label_class", 1], + "minzoom": 11, + "layout": { + "text-size": 10.6667, + "text-font": ["Arial Italic"], + "text-letter-spacing": 0.1, + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 1000, + "text-anchor": "bottom", + "text-offset": [0, 0.175], + "text-field": "{_name}" + }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterbody_CANVEC1M/label/Rivers", + "type": "symbol", + "source": "esri", + "source-layer": "Waterbody_CANVEC1M/label", + "filter": ["all", ["==", "_label_class", 3], ["==", "$type", "LineString"]], + "minzoom": 9, + "maxzoom": 11, + "layout": { "text-size": 10.6667, "text-font": ["Arial Italic"], "text-optional": true, "symbol-placement": "line", "symbol-spacing": 1000, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterbody_CANVEC1M/label/Rivers/point", + "type": "symbol", + "source": "esri", + "source-layer": "Waterbody_CANVEC1M/label", + "filter": ["all", ["==", "_label_class", 3], ["==", "$type", "Point"]], + "minzoom": 9, + "maxzoom": 11, + "layout": { "text-size": 10.6667, "text-font": ["Palatino Linotype Bold Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Waterbody_CANVEC1M/label/All lakes", + "type": "symbol", + "source": "esri", + "source-layer": "Waterbody_CANVEC1M/label", + "filter": ["==", "_label_class", 2], + "minzoom": 9, + "maxzoom": 11, + "layout": { "text-size": 10, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Waterbody_CANVEC1M/label/Lakes", + "type": "symbol", + "source": "esri", + "source-layer": "Waterbody_CANVEC1M/label", + "filter": ["==", "_label_class", 1], + "minzoom": 6, + "maxzoom": 9, + "layout": { "text-size": 10, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Waterbody_CANVEC1M/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Waterbody_CANVEC1M/label", + "filter": ["==", "_label_class", 0], + "minzoom": 4.62, + "maxzoom": 9, + "layout": { "text-size": 10, "text-font": ["Arial Italic"], "text-letter-spacing": 0.1, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Community Waterbodies/label/SmallLake/Ponds", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["==", "_label_class", 7], + "minzoom": 12, + "layout": { "text-size": 11.3333, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/label/Lake/Ponds", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["==", "_label_class", 6], + "minzoom": 12, + "layout": { "text-size": 11.3333, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/label/Ponds", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["==", "_label_class", 5], + "minzoom": 14, + "layout": { "text-size": 9.33333, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Community Waterbodies/label/Bays", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["==", "_label_class", 4], + "minzoom": 11, + "layout": { "text-size": 10.6667, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Community Waterbodies/label/Sea/Ocean", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["==", "_label_class", 3], + "minzoom": 11, + "layout": { "text-size": 13.3333, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Community Waterbodies/label/LargeLakes", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["==", "_label_class", 2], + "minzoom": 11, + "layout": { "text-size": 12, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Community Waterbodies/label/Rivers", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["all", ["==", "_label_class", 1], ["==", "$type", "LineString"]], + "minzoom": 11, + "layout": { "text-size": 12, "text-font": ["Arial Italic"], "text-optional": true, "symbol-placement": "line", "symbol-spacing": 1000, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Community Waterbodies/label/Rivers/point", + "type": "symbol", + "source": "esri", + "source-layer": "Community Waterbodies/label", + "filter": ["all", ["==", "_label_class", 1], ["==", "$type", "Point"]], + "minzoom": 11, + "layout": { "text-size": 12, "text-font": ["Arial Italic"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Island/label/LargeIslands - LargeScale", + "type": "symbol", + "source": "esri", + "source-layer": "Island/label", + "filter": ["==", "_label_class", 2], + "minzoom": 11, + "layout": { "text-size": 18.6667, "text-font": ["Arial Italic"], "text-letter-spacing": 0.11, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 2 }, + "showProperties": false + }, + { + "id": "Topo Layers/Island/label/Islands - Large", + "type": "symbol", + "source": "esri", + "source-layer": "Island/label", + "filter": ["==", "_label_class", 1], + "minzoom": 5, + "maxzoom": 11, + "layout": { "text-size": 13.3333, "text-font": ["Arial Italic"], "text-letter-spacing": 0.09, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 2, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Island/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Island/label", + "filter": ["==", "_label_class", 0], + "minzoom": 12, + "layout": { "text-size": 10.6667, "text-font": ["Arial Regular"], "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 2, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Road Segment/label/Ferry", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 7], + "minzoom": 9, + "layout": { + "text-size": 10, + "text-font": ["Arial Regular"], + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 1000, + "text-anchor": "bottom", + "text-offset": [0, 0.166667], + "text-field": "{_name}" + }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/label/Service/Rec/Resource", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 6], + "minzoom": 13, + "layout": { "text-size": 10.6667, "text-font": ["Arial Regular"], "text-optional": true, "symbol-placement": "line", "symbol-spacing": 1000, "text-field": "{_name}" }, + "paint": { "text-color": "#666666", "text-halo-color": "#FFFFFF", "text-halo-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/label/Collector/Local", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 5], + "minzoom": 13, + "layout": { "text-size": 10, "text-font": ["Arial Regular"], "text-optional": true, "symbol-placement": "line", "symbol-spacing": 1000, "text-field": "{_name}" }, + "paint": { "text-color": "#666666", "text-halo-color": "#FFFFFF", "text-halo-width": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/label/Arterial", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 4], + "minzoom": 12, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [0, 10], + [18, 10] + ] + }, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.01, + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 576, + "text-field": "{_name}" + }, + "paint": { "text-color": "#666666", "text-halo-color": "#FFFFFF", "text-halo-width": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/label/Freeway/Highway", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 3], + "minzoom": 12, + "layout": { "text-size": 10, "text-font": ["Arial Regular"], "text-optional": true, "symbol-placement": "line", "symbol-spacing": 576, "text-field": "{_name}" }, + "paint": { "text-color": "#666666", "text-halo-color": "#FFFFFF", "text-halo-width": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Road Segment/label/Regional Hwy", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 2], + "minzoom": 12, + "layout": { + "text-size": 10.6667, + "text-font": ["Arial Bold"], + "text-letter-spacing": 0.013, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport", + "symbol-placement": "line", + "symbol-spacing": 576, + "text-offset": [0, 0.125], + "text-field": "{_name}", + "icon-image": "Topo Layers/Road Segment/Regional Hwy" + }, + "paint": { "icon-opacity": 0.85, "text-color": "#4E4E4E" } + }, + { + "id": "Topo Layers/Road Segment/label/LocalHwy", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 1], + "minzoom": 9, + "layout": { + "text-size": 9.33333, + "text-font": ["Arial Regular"], + "text-padding": 30, + "text-letter-spacing": 0.01, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport", + "symbol-placement": "line", + "symbol-spacing": 672, + "text-field": "{_name}", + "icon-image": "Topo Layers/Road Segment/LocalHwy" + }, + "paint": { "icon-opacity": 0.7 } + }, + { + "id": "Topo Layers/Road Segment/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Road Segment/label", + "filter": ["==", "_label_class", 0], + "minzoom": 9, + "layout": { + "text-size": 9.33333, + "text-font": ["Arial Regular"], + "text-padding": 30, + "text-letter-spacing": 0.01, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport", + "symbol-placement": "line", + "symbol-spacing": 480, + "text-offset": [0, 0.142857], + "text-field": "{_name}", + "icon-image": "Topo Layers/Road Segment/Class 1" + }, + "paint": { "text-halo-color": "#FFFFFF", "text-halo-width": 0.666667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Rail/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Rail/label", + "minzoom": 15, + "layout": { + "text-size": 8, + "text-font": ["Arial Regular"], + "text-optional": true, + "symbol-placement": "line", + "symbol-spacing": 1000, + "text-anchor": "bottom", + "text-offset": [0, 0.133333], + "text-field": "{_name}" + }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Ferry Lines/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Ferry Lines/label", + "minzoom": 11, + "layout": { "text-size": 9.33333, "text-font": ["Arial Regular"], "text-optional": true, "symbol-placement": "line", "symbol-spacing": 1000, "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Spot Elevation", + "type": "symbol", + "source": "esri", + "source-layer": "Spot Elevation", + "minzoom": 8, + "layout": { + "icon-image": "Topo Layers/Spot Elevation", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-size": 10.6667, + "text-anchor": "bottom-left", + "text-offset": [0.213388, 0.0866117], + "text-field": "{_name}", + "text-optional": true + }, + "paint": { "icon-color": "#7D7368", "icon-opacity": 0.79, "text-color": "#828282", "text-halo-color": "#FFFFFF", "text-halo-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Topo Layers/Water Label/label/General Water Feature", + "type": "symbol", + "source": "esri", + "source-layer": "Water Label", + "minzoom": 13, + "layout": { "text-size": 10.6667, "text-font": ["Arial Italic"], "text-optional": true, "text-anchor": "bottom-left", "text-offset": [0.0883883, 0.211612], "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Water Label/label/Bays", + "type": "symbol", + "source": "esri", + "source-layer": "Water Label", + "minzoom": 12, + "layout": { "text-size": 10.6667, "text-font": ["Arial Italic"], "text-optional": true, "text-anchor": "bottom-left", "text-offset": [0.0883883, 0.211612], "text-field": "{_name}" }, + "paint": { "text-color": "#888f91", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Topo Layers/Water Label/label/Islands", + "type": "symbol", + "source": "esri", + "source-layer": "Water Label", + "minzoom": 12, + "layout": { "text-size": 10.6667, "text-font": ["Arial Italic"], "text-optional": true, "text-anchor": "bottom-left", "text-offset": [0.0883883, 0.211612], "text-field": "{_name}" }, + "paint": { "text-color": "#808080", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Topo Layers/Point of Interest/label/General Feature - QC", + "type": "symbol", + "source": "esri", + "source-layer": "Point of Interest", + "minzoom": 13, + "layout": { + "text-font": ["Arial Regular"], + "text-size": 10.6667, + "text-anchor": "bottom-left", + "text-offset": [0.0883883, 0.211612], + "text-letter-spacing": 0.09, + "text-field": "{_name}", + "text-optional": true + }, + "paint": { "text-color": "#343434" } + }, + { + "id": "Topo Layers/Point of Interest/label/General Feature - NS", + "type": "symbol", + "source": "esri", + "source-layer": "Point of Interest", + "minzoom": 14, + "layout": { + "text-font": ["Arial Regular"], + "text-size": 10.6667, + "text-anchor": "bottom-left", + "text-offset": [0.0883883, 0.211612], + "text-letter-spacing": 0.09, + "text-field": "{_name}", + "text-optional": true + }, + "paint": { "text-color": "#343434" } + }, + { + "id": "Topo Layers/Landform_ESRI/label/288k Labels", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 11], ["==", "$type", "LineString"]], + "minzoom": 10, + "maxzoom": 13, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.27, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/288k Labels/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 11], ["==", "$type", "Point"]], + "minzoom": 10, + "maxzoom": 13, + "layout": { "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.27, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/577k Labels", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 10], ["==", "$type", "LineString"]], + "minzoom": 9, + "maxzoom": 12, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.27, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/577k Labels/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 10], ["==", "$type", "Point"]], + "minzoom": 9, + "maxzoom": 12, + "layout": { "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.27, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/1mLabels", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 9], ["==", "$type", "LineString"]], + "minzoom": 8, + "maxzoom": 12, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.1, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/1mLabels/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 9], ["==", "$type", "Point"]], + "minzoom": 8, + "maxzoom": 12, + "layout": { "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.1, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/Mountains - 4m", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 8], ["==", "$type", "LineString"]], + "minzoom": 6, + "maxzoom": 8, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 9.33333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/Mountains - 4m/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 8], ["==", "$type", "Point"]], + "minzoom": 6, + "maxzoom": 8, + "layout": { "text-font": ["Arial Italic"], "text-size": 9.33333, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/2mlabels", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["==", "_label_class", 7], + "minzoom": 7, + "maxzoom": 9, + "layout": { "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.27, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/9mlabels", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["==", "_label_class", 5], + "minzoom": 5, + "maxzoom": 8, + "layout": { "text-font": ["Arial Italic"], "text-size": 9.33333, "text-letter-spacing": 0.27, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/ArcticLarge", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["==", "_label_class", 4], + "minzoom": 4, + "maxzoom": 6, + "layout": { "text-font": ["Arial Italic"], "text-size": 13.3333, "text-letter-spacing": 0.5, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/Ranges", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 2], ["==", "$type", "LineString"]], + "minzoom": 4, + "maxzoom": 8, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-size": 10.6667, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/Ranges/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 2], ["==", "$type", "Point"]], + "minzoom": 4, + "maxzoom": 8, + "layout": { "text-font": ["Arial Italic"], "text-size": 10.6667, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/IslandsLarge", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 1], ["==", "$type", "LineString"]], + "minzoom": 4, + "maxzoom": 6, + "layout": { "symbol-placement": "line", "symbol-spacing": 1000, "text-font": ["Arial Italic"], "text-letter-spacing": 0.5, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/IslandsLarge/point", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["all", ["==", "_label_class", 1], ["==", "$type", "Point"]], + "minzoom": 4, + "maxzoom": 6, + "layout": { "text-font": ["Arial Italic"], "text-letter-spacing": 0.5, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Topo Layers/Landform_ESRI/label/SmallScaleIslands", + "type": "symbol", + "source": "esri", + "source-layer": "Landform_ESRI/label", + "filter": ["==", "_label_class", 0], + "minzoom": 4, + "maxzoom": 7, + "layout": { "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.27, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#686868", "text-halo-color": "#E1E1E1", "text-halo-width": 0.266667 }, + "showProperties": false + }, + { + "id": "Cities - largest scale/label/Pclass0", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - largest scale", + "minzoom": 12, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [10, 10], + [16, 13] + ] + }, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.05, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.083189, 0.216811], + "text-field": "{_name3}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1 }, + "showProperties": false + }, + { + "id": "Cities - largest scale/label/Neighbourhoods", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - largest scale", + "minzoom": 11, + "layout": { + "text-size": { + "base": 1, + "stops": [ + [10, 9.5], + [16, 15] + ] + }, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.05, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.0883883, 0.211612], + "text-field": "{_name2}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities - largest scale/label/Pclass467", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - largest scale", + "minzoom": 11, + "layout": { + "text-size": 14.6667, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.11, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.0642824, 0.235718], + "text-field": "{_name1}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities - largest scale/label/Pclass8", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - largest scale", + "minzoom": 11, + "layout": { + "text-size": 17.3333, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.11, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.0543928, 0.245607], + "text-field": "{_name}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities -mid scale/label/pclass6", + "type": "symbol", + "source": "esri", + "source-layer": "Cities -mid scale", + "minzoom": 6, + "maxzoom": 8, + "layout": { + "text-size": 11, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.083189, 0.216811], + "text-field": "{_name2}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities -mid scale/label/Pclass7", + "type": "symbol", + "source": "esri", + "source-layer": "Cities -mid scale", + "minzoom": 6, + "maxzoom": 8, + "layout": { + "text-size": 12.6667, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.0744323, 0.225568], + "text-field": "{_name1}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities -mid scale/label/Pclass8", + "type": "symbol", + "source": "esri", + "source-layer": "Cities -mid scale", + "minzoom": 6, + "maxzoom": 8, + "layout": { + "text-size": 13.3333, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.0707107, 0.229289], + "text-field": "{_name}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities - large scale/label/Under500k", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - large scale", + "minzoom": 10, + "maxzoom": 11, + "layout": { "text-size": 11.3333, "text-font": ["Arial Regular"], "text-optional": true, "text-anchor": "bottom-left", "text-offset": [0.083189, 0.216811], "text-field": "{_name3}" }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities - large scale/label/Under1M", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - large scale", + "minzoom": 9, + "maxzoom": 11, + "layout": { "text-font": ["Arial Regular"], "text-size": 11.3333, "text-anchor": "bottom-left", "text-offset": [0.083189, 0.216811], "text-field": "{_name2}", "text-optional": true }, + "paint": { "text-color": "#343434", "text-halo-color": "#FFFFFF", "text-halo-width": 2 }, + "showProperties": false + }, + { + "id": "Cities - large scale/label/Under2M - Smaller", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - large scale", + "minzoom": 8, + "maxzoom": 11, + "layout": { "text-font": ["Arial Regular"], "text-size": 13.3333, "text-anchor": "bottom-left", "text-offset": [0.0707107, 0.229289], "text-field": "{_name1}", "text-optional": true }, + "paint": { "text-color": "#343434", "text-halo-color": "#FFFFFF", "text-halo-width": 2 }, + "showProperties": false + }, + { + "id": "Cities - large scale/label/Under 2M-LargeCities", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - large scale", + "minzoom": 8, + "maxzoom": 11, + "layout": { + "text-size": 13.3333, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "text-anchor": "bottom-left", + "text-offset": [0.0707107, 0.229289], + "text-field": "{_name}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Major Cities - small scale", + "type": "symbol", + "source": "esri", + "source-layer": "Major Cities - small scale", + "minzoom": 4, + "maxzoom": 5, + "layout": { + "text-size": 10.6667, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "icon-allow-overlap": true, + "text-anchor": "bottom-left", + "text-offset": [0.369638, -0.0696383], + "text-field": "{_name}" + }, + "paint": { "text-color": "#343434", "text-halo-color": "#FFFFFF", "text-halo-width": 2 }, + "showProperties": false + }, + { + "id": "Capital Cities - small scale", + "type": "symbol", + "source": "esri", + "source-layer": "Capital Cities - small scale", + "minzoom": 3, + "maxzoom": 6, + "layout": { + "text-size": 11, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "icon-allow-overlap": true, + "text-anchor": "bottom-left", + "text-offset": [0.463388, -0.163388], + "text-field": "{_name}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Cities - small scale ", + "type": "symbol", + "source": "esri", + "source-layer": "Cities - small scale ", + "minzoom": 5, + "maxzoom": 6, + "layout": { + "text-size": 11, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.09, + "text-optional": true, + "icon-allow-overlap": true, + "text-anchor": "bottom-left", + "text-offset": [0.369638, -0.0696383], + "text-field": "{_name}" + }, + "paint": { "text-color": "#353635", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Site Address Point/label/GeneralBuildings", + "type": "symbol", + "source": "esri", + "source-layer": "Site Address Point", + "minzoom": 17, + "layout": { "text-font": ["Tahoma Regular"], "text-size": 9.33333, "text-anchor": "bottom-left", "text-offset": [0.101015, 0.198985], "text-field": "{_name1}", "text-optional": true }, + "paint": { "text-color": "#9C9C9C" } + }, + { + "id": "Site Address Point/label/Units", + "type": "symbol", + "source": "esri", + "source-layer": "Site Address Point", + "minzoom": 17, + "layout": { "text-font": ["Tahoma Regular"], "text-size": 9.33333, "text-anchor": "bottom-left", "text-offset": [0.101015, 0.198985], "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#9C9C9C" } + }, + { + "id": "Province Label small scale/label/Canada", + "type": "symbol", + "source": "esri", + "source-layer": "Province Label small scale", + "minzoom": 2, + "maxzoom": 5, + "layout": { "text-size": 14.6667, "text-font": ["Arial Bold"], "text-letter-spacing": 0.3, "text-optional": true, "text-field": "{_name3}" }, + "paint": { "text-color": "#aaafac", "text-halo-color": "#f7f7f7", "text-halo-width": 1, "text-halo-blur": 1 }, + "showProperties": false + }, + { + "id": "Province Label small scale/label/PEI", + "type": "symbol", + "source": "esri", + "source-layer": "Province Label small scale", + "minzoom": 5, + "maxzoom": 6, + "layout": { + "text-font": ["Arial Regular"], + "text-size": 10.6667, + "text-anchor": "bottom-left", + "text-offset": [0.0883883, 0.211612], + "text-letter-spacing": 0.1, + "text-field": "{_name2}", + "text-optional": true + }, + "paint": { "text-color": "#797B7D", "text-halo-color": "#FFFFFF", "text-halo-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Province Label small scale/label/NS", + "type": "symbol", + "source": "esri", + "source-layer": "Province Label small scale", + "minzoom": 4, + "maxzoom": 6, + "layout": { + "text-font": ["Arial Regular"], + "text-size": 10.6667, + "text-anchor": "bottom-left", + "text-offset": [0.0883883, 0.211612], + "text-letter-spacing": 0.1, + "text-field": "{_name1}", + "text-optional": true + }, + "paint": { "text-color": "#797B7D", "text-halo-color": "#FFFFFF", "text-halo-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Province Label small scale/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Province Label small scale", + "minzoom": 4, + "maxzoom": 6, + "layout": { "text-size": 12, "text-font": ["Arial Regular"], "text-letter-spacing": 0.1, "text-optional": true, "text-field": "{_name}" }, + "paint": { "text-color": "#b4b4b4", "text-halo-color": "#efefef", "text-halo-width": 1, "text-halo-blur": 1 } + }, + { + "id": "Province Label/label/PEI", + "type": "symbol", + "source": "esri", + "source-layer": "Province Label", + "minzoom": 6, + "maxzoom": 8, + "layout": { + "text-font": ["Arial Bold"], + "text-size": 12.6667, + "text-anchor": "bottom-left", + "text-offset": [0.0744323, 0.225568], + "text-letter-spacing": 0.1, + "text-field": "{_name2}", + "text-optional": true + }, + "paint": { "text-color": "#797B7D", "text-halo-color": "#FFFFFF", "text-halo-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Province Label/label/NS", + "type": "symbol", + "source": "esri", + "source-layer": "Province Label", + "minzoom": 6, + "maxzoom": 8, + "layout": { + "text-font": ["Arial Bold"], + "text-size": 12.6667, + "text-anchor": "bottom-left", + "text-offset": [0.0744323, 0.225568], + "text-letter-spacing": 0.1, + "text-field": "{_name1}", + "text-optional": true + }, + "paint": { "text-color": "#797B7D", "text-halo-color": "#FFFFFF", "text-halo-width": 1.33333 }, + "showProperties": false + }, + { + "id": "Province Label/label/Class 1", + "type": "symbol", + "source": "esri", + "source-layer": "Province Label", + "minzoom": 6, + "maxzoom": 8, + "layout": { "text-font": ["Arial Regular"], "text-size": 14.6667, "text-letter-spacing": 0.1, "text-field": "{_name}", "text-optional": true }, + "paint": { "text-color": "#797B7D", "text-halo-color": "#FFFFFF", "text-halo-width": 1.33333 }, + "showProperties": false + } + ], + "metadata": { + "arcgisStyleUrl": "https://www.arcgis.com/sharing/rest/content/items/0baf45ff172d4917b12f3a691bc87553/resources/styles/root.json", + "arcgisOriginalItemTitle": "Light Grey Community Map", + "arcgisQuickEditorWarning": true, + "arcgisEditorExtents": [ + { "spatialReference": { "wkid": 102100 }, "xmin": -7913441.505121151, "ymin": 5899440.250227741, "xmax": -7901631.984251108, "ymax": 5907198.6085986765 }, + { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": -19322061.05146325, "ymin": 4451995.507110002, "xmax": -2111480.984136753, "ymax": 18986540.259090003 }, + { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": -19322061.05146325, "ymin": 4451995.507110002, "xmax": -2111480.984136753, "ymax": 18986540.259090003 }, + { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": -19322061.05146325, "ymin": 4451995.507110002, "xmax": -2111480.984136753, "ymax": 18986540.259090003 } + ], + "arcgisMinimapVisibility": false + } +} diff --git a/public/basemap/ESRI_Streets_Night_Background.json b/public/basemap/ESRI_Streets_Night_Background.json index 02489976..9756ea5a 100644 --- a/public/basemap/ESRI_Streets_Night_Background.json +++ b/public/basemap/ESRI_Streets_Night_Background.json @@ -1 +1,5459 @@ -{"version":8,"sprite":"https://cdn.arcgis.com/sharing/rest/content/items/86f556a2d1fd468181855a35e344567f/resources/styles/../sprites/sprite","glyphs":"https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer/resources/fonts/{fontstack}/{range}.pbf","sources":{"esri":{"type":"vector","url":"https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer"}},"layers":[{"id":"background","type":"background","paint":{"background-color":"#000f1a"},"layout":{}},{"id":"Land/Not ice","type":"fill","source":"esri","source-layer":"Land","filter":["==","_symbol",0],"minzoom":0,"layout":{},"paint":{"fill-color":"#2a2a28"}},{"id":"Land/Ice","type":"fill","source":"esri","source-layer":"Land","filter":["==","_symbol",1],"minzoom":0,"layout":{},"paint":{"fill-color":"#20262e"}},{"id":"Urban area","type":"fill","source":"esri","source-layer":"Urban area","minzoom":5,"maxzoom":12,"layout":{},"paint":{"fill-color":"#323230"}},{"id":"Openspace or forest","type":"fill","source":"esri","source-layer":"Openspace or forest","minzoom":9,"layout":{},"paint":{"fill-color":"#263323"}},{"id":"Admin0 forest or park","type":"fill","source":"esri","source-layer":"Admin0 forest or park","minzoom":5,"layout":{},"paint":{"fill-color":{"stops":[[5,"#282f26"],[6,"#263323"]]}}},{"id":"Admin1 forest or park","type":"fill","source":"esri","source-layer":"Admin1 forest or park","minzoom":6,"layout":{},"paint":{"fill-color":"#263323"}},{"id":"Zoo","type":"fill","source":"esri","source-layer":"Zoo","minzoom":11,"layout":{},"paint":{"fill-color":"#263323"}},{"id":"Military","type":"fill","source":"esri","source-layer":"Military","minzoom":6,"layout":{},"paint":{"fill-color":"#2F3238","fill-outline-color":"#2F3238"}},{"id":"Port","type":"fill","source":"esri","source-layer":"Port","minzoom":13,"layout":{},"paint":{"fill-color":"#3A3C45"}},{"id":"Transportation","type":"fill","source":"esri","source-layer":"Transportation","minzoom":13,"layout":{},"paint":{"fill-color":"#3A3C45"}},{"id":"Industry","type":"fill","source":"esri","source-layer":"Industry","minzoom":13,"layout":{},"paint":{"fill-color":"#3A3C45"}},{"id":"Indigenous","type":"fill","source":"esri","source-layer":"Indigenous","minzoom":7,"layout":{},"paint":{"fill-color":"#302D25"}},{"id":"Golf course","type":"fill","source":"esri","source-layer":"Golf course","minzoom":11,"layout":{},"paint":{"fill-color":"#263323"}},{"id":"Airport/Airport property","type":"fill","source":"esri","source-layer":"Airport","filter":["==","_symbol",1],"minzoom":9,"layout":{},"paint":{"fill-color":"#2F3238"}},{"id":"Airport/Airport runway","type":"fill","source":"esri","source-layer":"Airport","filter":["==","_symbol",0],"minzoom":11,"layout":{},"paint":{"fill-color":"#3A3C45"}},{"id":"Retail","type":"fill","source":"esri","source-layer":"Retail","minzoom":13,"layout":{},"paint":{"fill-color":"#38324D"}},{"id":"Education","type":"fill","source":"esri","source-layer":"Education","minzoom":11,"layout":{},"paint":{"fill-color":"#402C2E"}},{"id":"Medical","type":"fill","source":"esri","source-layer":"Medical","minzoom":11,"layout":{},"paint":{"fill-color":"#453108"}},{"id":"Park or farming","type":"fill","source":"esri","source-layer":"Park or farming","minzoom":11,"layout":{},"paint":{"fill-color":"#263323"}},{"id":"Water and wastewater","type":"fill","source":"esri","source-layer":"Water and wastewater","minzoom":13,"layout":{},"paint":{"fill-color":"#000F1A"}},{"id":"Freight","type":"fill","source":"esri","source-layer":"Freight","minzoom":13,"layout":{},"paint":{"fill-color":"#3A3C45"}},{"id":"Cemetery","type":"fill","source":"esri","source-layer":"Cemetery","minzoom":13,"layout":{},"paint":{"fill-color":"#283827"}},{"id":"Landmark","type":"fill","source":"esri","source-layer":"Landmark","minzoom":13,"layout":{},"paint":{"fill-color":"#243021"}},{"id":"Finance","type":"fill","source":"esri","source-layer":"Finance","minzoom":13,"layout":{},"paint":{"fill-color":"#38324D"}},{"id":"Government","type":"fill","source":"esri","source-layer":"Government","minzoom":13,"layout":{},"paint":{"fill-color":"#453108"}},{"id":"Emergency","type":"fill","source":"esri","source-layer":"Emergency","minzoom":13,"layout":{},"paint":{"fill-color":"#453108"}},{"id":"Pedestrian","type":"fill","source":"esri","source-layer":"Pedestrian","minzoom":13,"layout":{},"paint":{"fill-color":"#403e38"}},{"id":"Special area of interest/Green openspace","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",11],"minzoom":14,"layout":{},"paint":{"fill-color":"#283827"}},{"id":"Special area of interest/Grass","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",8],"minzoom":14,"layout":{},"paint":{"fill-color":"#283827"}},{"id":"Marine area/1","type":"fill","source":"esri","source-layer":"Marine area","minzoom":0,"layout":{},"paint":{"fill-color":"#000F1A"}},{"id":"Bathymetry","type":"fill","source":"esri","source-layer":"Bathymetry","filter":["in","_symbol",0,1,2,3,4,5],"maxzoom":11,"layout":{"visibility":"visible"},"paint":{"fill-color":"#000F1A"}},{"id":"Water line small scale","type":"line","source":"esri","source-layer":"Water line small scale","minzoom":1,"maxzoom":5,"layout":{"line-join":"round"},"paint":{"line-color":"#000F23","line-width":{"base":1.2,"stops":[[1,0.5],[5,1.33]]}}},{"id":"Water line medium scale","type":"line","source":"esri","source-layer":"Water line medium scale","minzoom":5,"maxzoom":7,"layout":{"line-join":"round"},"paint":{"line-color":"#000F23","line-width":{"base":1.2,"stops":[[5,0.5],[7,1.33]]}}},{"id":"Water line large scale","type":"line","source":"esri","source-layer":"Water line large scale","minzoom":7,"maxzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#000F23","line-width":{"base":1.2,"stops":[[7,1],[11,1.33]]}}},{"id":"Water line/Canal or ditch","type":"line","source":"esri","source-layer":"Water line","filter":["==","_symbol",1],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#000F23","line-width":{"base":1.2,"stops":[[11,1],[14,1.33],[17,2.67]]},"line-dasharray":[7.5,2.5]}},{"id":"Water line/Stream or river intermittent","type":"line","source":"esri","source-layer":"Water line","filter":["==","_symbol",4],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#000F23","line-dasharray":[10.5,1.75],"line-width":{"base":1.2,"stops":[[11,1],[14,1.33],[17,2]]}}},{"id":"Water line/Stream or river","type":"line","source":"esri","source-layer":"Water line","filter":["==","_symbol",0],"minzoom":11,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#000F23","line-width":{"base":1.2,"stops":[[11,1],[14,1.33],[17,2.67]]}}},{"id":"Water area small scale","type":"fill","source":"esri","source-layer":"Water area small scale","minzoom":1,"maxzoom":5,"layout":{},"paint":{"fill-color":"#000F1A"}},{"id":"Water area medium scale/Lake intermittent","type":"fill","source":"esri","source-layer":"Water area medium scale","filter":["==","_symbol",1],"minzoom":5,"maxzoom":7,"layout":{},"paint":{"fill-pattern":"Water area/Lake or river intermittent"}},{"id":"Water area medium scale/Lake or river","type":"fill","source":"esri","source-layer":"Water area medium scale","filter":["==","_symbol",0],"minzoom":5,"maxzoom":7,"layout":{},"paint":{"fill-color":"#000F1A"}},{"id":"Water area large scale/Lake intermittent","type":"fill","source":"esri","source-layer":"Water area large scale","filter":["==","_symbol",1],"minzoom":7,"maxzoom":11,"layout":{},"paint":{"fill-pattern":"Water area/Lake or river intermittent"}},{"id":"Water area large scale/Lake or river","type":"fill","source":"esri","source-layer":"Water area large scale","filter":["==","_symbol",0],"minzoom":7,"maxzoom":11,"layout":{},"paint":{"fill-color":"#000F1A"}},{"id":"Water area/Lake, river or bay","type":"fill","source":"esri","source-layer":"Water area","filter":["==","_symbol",7],"minzoom":11,"layout":{},"paint":{"fill-color":"#000F1A"}},{"id":"Water area/Lake or river intermittent","type":"fill","source":"esri","source-layer":"Water area","filter":["==","_symbol",6],"minzoom":11,"layout":{},"paint":{"fill-pattern":"Water area/Lake or river intermittent"}},{"id":"Water area/Swamp or marsh","type":"fill","source":"esri","source-layer":"Water area","filter":["==","_symbol",3],"minzoom":11,"layout":{},"paint":{"fill-pattern":"Water area/Swamp or marsh"}},{"id":"Water area/Playa","type":"fill","source":"esri","source-layer":"Water area","filter":["==","_symbol",1],"minzoom":12,"layout":{},"paint":{"fill-pattern":"Water area/Playa"}},{"id":"Water area/Ice mass","type":"fill","source":"esri","source-layer":"Water area","filter":["==","_symbol",2],"minzoom":11,"layout":{},"paint":{"fill-pattern":"Water area/Ice mass"}},{"id":"Special area of interest/Mulch or dirt","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",14],"minzoom":14,"layout":{},"paint":{"fill-color":"#2a2a28"}},{"id":"Special area of interest/Water","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",7],"minzoom":14,"layout":{},"paint":{"fill-color":"#000F1A"}},{"id":"Special area of interest/Football field or court","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",4],"minzoom":14,"layout":{},"paint":{"fill-color":"#47443c"}},{"id":"Special area of interest/Baseball field or other grounds","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",1],"minzoom":14,"layout":{},"paint":{"fill-color":"#47443c"}},{"id":"Special area of interest/Athletic track","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",0],"minzoom":14,"layout":{},"paint":{"fill-color":"#47443c"}},{"id":"Special area of interest/Hardcourt","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",10],"minzoom":14,"layout":{},"paint":{"fill-color":"#47443c"}},{"id":"Special area of interest/Parking","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",15],"minzoom":15,"layout":{},"paint":{"fill-color":"#44464F"}},{"id":"Special area of interest/Bike, walk or pedestrian","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",2],"minzoom":15,"layout":{},"paint":{"fill-color":"#403e38"}},{"id":"Special area of interest/Curb","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",3],"minzoom":14,"layout":{},"paint":{"fill-color":"#403e38"}},{"id":"Special area of interest/Garden path","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",12],"minzoom":14,"layout":{},"paint":{"fill-color":"#403e38"}},{"id":"Special area of interest/Groundcover","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",13],"minzoom":17,"layout":{},"paint":{"fill-color":"#263323"}},{"id":"Special area of interest/Sand","type":"fill","source":"esri","source-layer":"Special area of interest","filter":["==","_symbol",6],"minzoom":15,"layout":{},"paint":{"fill-color":"#2a2a28"}},{"id":"Special area of interest line/Dock or pier","type":"line","source":"esri","source-layer":"Special area of interest line","filter":["==","_symbol",0],"minzoom":17,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#626153","line-width":0.75}},{"id":"Special area of interest line/Parking lot","type":"line","source":"esri","source-layer":"Special area of interest line","filter":["==","_symbol",5],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#333440","line-width":0.67}},{"id":"Special area of interest line/Sports field","type":"line","source":"esri","source-layer":"Special area of interest line","filter":["==","_symbol",6],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#403e38","line-width":0.67}},{"id":"Railroad/casing","type":"line","source":"esri","source-layer":"Railroad","minzoom":12,"layout":{"line-join":"round"},"paint":{"line-color":"#506880","line-width":3.33}},{"id":"Railroad/line","type":"line","source":"esri","source-layer":"Railroad","minzoom":12,"layout":{"line-join":"round"},"paint":{"line-color":"#28282A","line-width":1.33}},{"id":"Ferry/Rail ferry/casing","type":"line","source":"esri","source-layer":"Ferry","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#506880","line-width":3.33}},{"id":"Ferry/Rail ferry/line","type":"line","source":"esri","source-layer":"Ferry","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#28282A","line-width":1.33}},{"id":"Ferry/Ferry","type":"line","source":"esri","source-layer":"Ferry","filter":["all",["==","_symbol",0],["!in","Viz",3]],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#1D4391","line-width":{"base":1.2,"stops":[[11,1.33],[14,1.5],[17,1.5]]},"line-dasharray":[6,3]}},{"id":"Building","type":"fill","source":"esri","source-layer":"Building","minzoom":15,"layout":{},"paint":{"fill-color":"#373845","fill-outline-color":"#515461"}},{"id":"Trail or path","type":"line","source":"esri","source-layer":"Trail or path","minzoom":15,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#403e38","line-width":{"base":1.2,"stops":[[14,1.6],[18,2.6]]}}},{"id":"Road/4WD/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",10],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#3161a0","line-dasharray":[3,1],"line-width":{"base":1.2,"stops":[[12,1.33],[14,2],[17,4]]}}},{"id":"Road/Service/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",8],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#30588d","line-width":{"base":1.2,"stops":[[13,2.25],[14,2.83],[17,4.5]]}}},{"id":"Road/Local/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",7],["!in","Viz",3]],"minzoom":12,"layout":{"line-join":"round"},"paint":{"line-color":{"stops":[[12,"#324154"],[13,"#30588D"],[14,"#3161a0"]]},"line-width":{"base":1.2,"stops":[[12,1.5],[13,2.25],[14,4.5],[17,8.5]]}}},{"id":"Road/Minor/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",5],["!in","Viz",3]],"minzoom":12,"layout":{"line-join":"round"},"paint":{"line-color":"#316ab3","line-width":{"base":1.2,"stops":[[12,3.5],[14,4.5],[17,8.5]]}}},{"id":"Road/Minor, ramp or traffic circle/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",6],["!in","Viz",3]],"minzoom":12,"layout":{"line-join":"round"},"paint":{"line-color":"#316ab3","line-width":{"base":1.2,"stops":[[12,3.5],[14,4.5],[17,8.5]]}}},{"id":"Road/Major/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",3],["!in","Viz",3]],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#4697ff","line-width":{"base":1.2,"stops":[[10,2],[11,3],[14,7.3],[17,14.3]]}}},{"id":"Road/Major, ramp or traffic circle/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",4],["!in","Viz",3]],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#4697ff","line-width":{"base":1.2,"stops":[[12,2.5],[14,4.7],[17,7.7]]}}},{"id":"Road/Highway/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":9,"layout":{"line-join":"round"},"paint":{"line-color":"#66a8ff","line-width":{"base":1.2,"stops":[[9,1],[14,6.8],[17,14.3]]}}},{"id":"Road/Freeway Motorway/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",0],["!in","Viz",3]],"minzoom":9,"layout":{"line-join":"round"},"paint":{"line-color":"#66a8ff","line-width":{"base":1.2,"stops":[[9,1.5],[14,7.33],[17,14.3]]}}},{"id":"Road/Freeway Motorway Highway, ramp or traffic circle/casing","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",2],["!in","Viz",3]],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#4697ff","line-width":{"base":1.2,"stops":[[9,1.5],[14,4.7],[17,8.2]]}}},{"id":"Road/Pedestrian","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",9],["!in","Viz",3]],"minzoom":15,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#403e38","line-width":{"base":1.2,"stops":[[14,1.6],[18,2.6]]}}},{"id":"Road/4WD/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",10],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#152d4d","line-width":{"base":1.2,"stops":[[12,0.85],[14,1],[17,2]]}}},{"id":"Road/Service/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",8],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#404759","line-width":{"base":1.2,"stops":[[13,0.75],[14,1.33],[17,2.33]]}}},{"id":"Road/Local/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",7],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#152d4d","line-width":{"base":1.2,"stops":[[13,0.75],[14,2.5],[17,4.5]]}}},{"id":"Road/Minor/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",5],["!in","Viz",3]],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#1e4678","line-width":{"base":1.2,"stops":[[9,0.5],[11,2],[14,2.5],[17,4.5]]}}},{"id":"Road/Minor, ramp or traffic circle/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",6],["!in","Viz",3]],"minzoom":10,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#1e4678","line-width":{"base":1.2,"stops":[[9,0.5],[11,2],[14,2.5],[17,4.5]]}}},{"id":"Road/Major/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",3],["!in","Viz",3]],"minzoom":8,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#26528c","line-width":{"base":1.2,"stops":[[8,0.75],[14,5.33],[17,10.33]]}}},{"id":"Road/Major, ramp or traffic circle/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",4],["!in","Viz",3]],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#26528c","line-width":{"base":1.2,"stops":[[9,0.75],[14,2.7],[17,4.7]]}}},{"id":"Road/Highway/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":7,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":{"stops":[[6,"#234b80"],[8,"#2c5ea0"],[9,"#3470bf"]]},"line-width":{"base":1.2,"stops":[[6,0.75],[14,4.8],[17,10.33]]}}},{"id":"Road/Freeway Motorway/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",0],["!in","Viz",3]],"minzoom":7,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":{"stops":[[5,"#2a4b61"],[8,"#3470bf"]]},"line-width":{"base":1.2,"stops":[[4,0.75],[14,5.33],[17,10.33]]}}},{"id":"Road/Freeway Motorway Highway, ramp or traffic circle/line","type":"line","source":"esri","source-layer":"Road","filter":["all",["==","_symbol",2],["!in","Viz",3]],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#26528c","line-width":{"base":1.2,"stops":[[9,0.75],[14,2.7],[17,4.7]]}}},{"id":"Road tunnel/4WD/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",10],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#3161a0","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[12,1.33],[14,2],[17,4]]}}},{"id":"Road tunnel/Service/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",8],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#30588d","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[14,1.5],[17,4.5]]}}},{"id":"Road tunnel/Local/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",7],["!in","Viz",3]],"minzoom":12,"layout":{"line-join":"round"},"paint":{"line-opacity":0.3,"line-color":"#30588D","line-width":{"base":1.2,"stops":[[12,1.5],[14,4.5],[17,8.5]]}}},{"id":"Road tunnel/Minor/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",5],["!in","Viz",3]],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#316ab3","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[10,1.5],[14,4.5],[17,8.5]]}}},{"id":"Road tunnel/Minor, ramp or traffic circle/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",6],["!in","Viz",3]],"minzoom":11,"layout":{"line-join":"round"},"paint":{"line-color":"#4697ff","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[9,1.5],[14,4.7],[17,7.7]]}}},{"id":"Road tunnel/Major/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",3],["!in","Viz",3]],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#4697ff","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[11,3],[14,7.33],[17,14.33]]}}},{"id":"Road tunnel/Major, ramp or traffic circle/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",4],["!in","Viz",3]],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#4697ff","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[9,1.5],[14,4.7],[17,7.7]]}}},{"id":"Road tunnel/Highway/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":9,"layout":{"line-join":"round"},"paint":{"line-color":"#58b9ff","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[9,1.5],[14,4.7],[17,7.7]]}}},{"id":"Road tunnel/Freeway Motorway/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",0],["!in","Viz",3]],"minzoom":9,"layout":{"line-join":"round"},"paint":{"line-color":"#58b9ff","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[9,1.5],[14,7.3],[17,14.3]]}}},{"id":"Road tunnel/Freeway Motorway Highway, ramp or traffic circle/casing","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",2],["!in","Viz",3]],"minzoom":9,"layout":{"line-join":"round"},"paint":{"line-color":"#58b9ff","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[9,1.5],[14,4.7],[17,8.7]]}}},{"id":"Road tunnel/Pedestrian","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",9],["!in","Viz",3]],"minzoom":15,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#403e38","line-opacity":0.3,"line-width":{"base":1.2,"stops":[[14,1.6],[17,2.6]]}}},{"id":"Road tunnel/4WD/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",10],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#152d4d","line-opacity":0.5,"line-width":{"base":1.2,"stops":[[11,0.75],[14,1],[17,2]]}}},{"id":"Road tunnel/Service/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",8],["!in","Viz",3]],"minzoom":13,"layout":{"line-join":"round"},"paint":{"line-color":"#404759","line-opacity":0.5,"line-width":{"base":1.2,"stops":[[11,0.75],[14,1.33],[17,2.33]]}}},{"id":"Road tunnel/Local/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",7],["!in","Viz",3]],"minzoom":12,"layout":{"line-join":"round"},"paint":{"line-opacity":0.5,"line-color":"#152d4d","line-width":{"base":1.2,"stops":[[11,0.75],[14,2.5],[17,4.5]]}}},{"id":"Road tunnel/Minor/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",5],["!in","Viz",3]],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-opacity":0.5,"line-color":"#1e4678","line-width":{"base":1.2,"stops":[[9,0.5],[11,2],[14,2.5],[17,4.5]]}}},{"id":"Road tunnel/Minor, ramp or traffic circle/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",6],["!in","Viz",3]],"minzoom":10,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-opacity":0.5,"line-color":"#1e4678","line-width":{"base":1.2,"stops":[[9,0.5],[11,2],[14,2.5],[17,4.5]]}}},{"id":"Road tunnel/Major/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",3],["!in","Viz",3]],"minzoom":8,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#26528c","line-opacity":0.5,"line-width":{"base":1.2,"stops":[[8,0.75],[14,5.33],[17,10.33]]}}},{"id":"Road tunnel/Major, ramp or traffic circle/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",4],["!in","Viz",3]],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#26528c","line-opacity":0.5,"line-width":{"base":1.2,"stops":[[9,0.75],[14,2.7],[17,4.7]]}}},{"id":"Road tunnel/Highway/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":6,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-opacity":0.5,"line-color":"#2a6b99","line-width":{"base":1.2,"stops":[[6,0.75],[14,5.33],[17,10.33]]}}},{"id":"Road tunnel/Freeway Motorway/line","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",0],["!in","Viz",3]],"minzoom":4,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#2a6b99","line-opacity":0.5,"line-width":{"base":1.2,"stops":[[4,0.75],[14,5.33],[17,10.33]]}}},{"id":"Road tunnel/Freeway Motorway Highway, ramp or traffic circle/0","type":"line","source":"esri","source-layer":"Road tunnel","filter":["all",["==","_symbol",2],["!in","Viz",3]],"minzoom":9,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#2a6b99","line-opacity":0.5,"line-width":{"base":1.2,"stops":[[9,0.75],[14,2.7],[17,4.7]]}}},{"id":"Boundary line/Disputed admin5","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",11],["!in","Viz",3]],"minzoom":16,"layout":{"line-join":"round"},"paint":{"line-color":"#847689","line-width":1.2,"line-dasharray":[6,3]}},{"id":"Boundary line/Disputed admin4","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",10],["!in","Viz",3]],"minzoom":16,"layout":{"line-join":"round"},"paint":{"line-color":"#847689","line-width":1.2,"line-dasharray":[6,3]}},{"id":"Boundary line/Disputed admin3","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",9],["!in","Viz",3]],"minzoom":16,"layout":{"line-join":"round"},"paint":{"line-color":"#847689","line-width":1.2,"line-dasharray":[6,3]}},{"id":"Boundary line/Disputed admin2","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",8],["!in","Viz",3]],"minzoom":10,"layout":{"line-join":"round"},"paint":{"line-color":"#847689","line-width":{"base":1.2,"stops":[[10,1.33],[14,1.6]]},"line-dasharray":[6,3]}},{"id":"Boundary line/Disputed admin1","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",7],["!in","Viz",3]],"minzoom":3,"layout":{"line-join":"round"},"paint":{"line-color":{"stops":[[1,"#625866"],[8,"#847689"]]},"line-dasharray":[6,3],"line-width":{"base":1.2,"stops":[[3,0.75],[10,1.33],[14,1.6]]}}},{"id":"Boundary line/Disputed admin0","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",6],["!in","Viz",3],["!in","DisputeID",8,16,90,96,0]],"minzoom":1,"layout":{"line-join":"round"},"paint":{"line-color":{"stops":[[1,"#625866"],[5,"#847689"]]},"line-width":{"base":1.2,"stops":[[4,0.75],[8,1.5],[14,1.6]]},"line-dasharray":[6,3]}},{"id":"Boundary line/Admin2/casing","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",2],["!in","Viz",3]],"minzoom":8,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#2a2a28","line-width":{"base":1.2,"stops":[[8,1.33],[14,2.7]]}}},{"id":"Boundary line/Admin1/casing","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":10,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#13111A","line-width":{"base":1.2,"stops":[[8,5],[14,8]]}}},{"id":"Boundary line/Admin0/casing","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",0],["!in","Viz",3]],"minzoom":4,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-width":{"base":1.2,"stops":[[4,4.33],[14,9.33],[17,9.33]]}}},{"id":"Boundary line/Admin5","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",5],["!in","Viz",3]],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#7e5c8c","line-width":1.33,"line-dasharray":[6.5,4]}},{"id":"Boundary line/Admin4","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",4],["!in","Viz",3]],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#7e5c8c","line-width":1.33,"line-dasharray":[6.5,4]}},{"id":"Boundary line/Admin3","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",3],["!in","Viz",3]],"minzoom":16,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":"#7e5c8c","line-width":1.33,"line-dasharray":[6.5,4]}},{"id":"Boundary line/Admin2/line","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",2],["!in","Viz",3]],"minzoom":8,"layout":{"line-join":"round"},"paint":{"line-color":"#7E5C8C","line-dasharray":[8,7],"line-width":{"base":1.2,"stops":[[8,0.5],[14,1.33],[18,1.5]]}}},{"id":"Boundary line/Admin1/line","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",1],["!in","Viz",3]],"minzoom":3,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":{"stops":[[3,"#383240"],[4,"#5a5066"],[8,"#726480"]]},"line-width":{"base":1.2,"stops":[[6,0.75],[14,1.33],[17,1.33]]}}},{"id":"Boundary line/Admin0/line","type":"line","source":"esri","source-layer":"Boundary line","filter":["all",["==","_symbol",0],["!in","Viz",3]],"minzoom":1,"layout":{"line-cap":"round","line-join":"round"},"paint":{"line-color":{"stops":[[1,"#716480"],[5,"#887899"],[8,"#9f8cb3"]]},"line-width":{"base":1.2,"stops":[[1,0.75],[8,1.5],[17,2]]}}},{"id":"Ferry/label/Ferry","type":"symbol","source":"esri","source-layer":"Ferry/label","filter":["all",["==","_label_class",0],["!in","Viz",3]],"minzoom":12,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.5,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","text-padding":30},"paint":{"text-color":"#5785B3","text-halo-color":"#2A2A28","text-halo-width":1}},{"id":"Water point/Stream or river","type":"symbol","source":"esri","source-layer":"Water point","filter":["==","_label_class",3],"minzoom":9,"layout":{"icon-image":"Water point","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-size":11.3,"text-letter-spacing":0.01,"text-max-width":5,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":"#5C9BD9","text-halo-blur":1,"text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Water point/Lake or reservoir","type":"symbol","source":"esri","source-layer":"Water point","filter":["==","_label_class",2],"minzoom":9,"layout":{"icon-image":"Water point","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-size":11.3,"text-letter-spacing":0.01,"text-max-width":5,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":"#5C9BD9","text-halo-blur":1,"text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Water point/Bay or inlet","type":"symbol","source":"esri","source-layer":"Water point","filter":["==","_label_class",1],"minzoom":9,"layout":{"icon-image":"Water point","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-size":12,"text-letter-spacing":0.15,"text-max-width":8,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":"#5C9BD9","text-halo-blur":1,"text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Water point/Sea or ocean","type":"symbol","source":"esri","source-layer":"Water point","filter":["==","_label_class",0],"minzoom":9,"layout":{"icon-image":"Water point","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-letter-spacing":0.1,"text-max-width":7,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":"#5C9BD9"}},{"id":"Water point/Canal or ditch","type":"symbol","source":"esri","source-layer":"Water point","filter":["==","_label_class",4],"minzoom":11,"layout":{"icon-image":"Water point","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.01,"text-max-width":5,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":"#5C9BD9","text-halo-blur":1,"text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Water point/Island","type":"symbol","source":"esri","source-layer":"Water point","filter":["==","_label_class",7],"minzoom":11,"layout":{"icon-image":"Water point","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-size":10.67,"text-letter-spacing":0.05,"text-max-width":5,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":"#96968C","text-halo-blur":1,"text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Water line/label/Default","type":"symbol","source":"esri","source-layer":"Water line/label","minzoom":12,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.07,"text-max-width":8,"text-max-angle":30,"text-field":"{_name_global}","text-offset":[0,-0.5]},"paint":{"text-color":"#5C9BD9"}},{"id":"Marine park/label/Default","type":"symbol","source":"esri","source-layer":"Marine park/label","minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#5C9BAA"}},{"id":"Water area/label/Canal or ditch","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",2],"minzoom":11,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.01,"text-max-width":5,"text-field":"{_name_global}"},"paint":{"text-color":"#5C9BD9","text-halo-color":"#000f1a","text-halo-width":1}},{"id":"Water area/label/Small river","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",7],"minzoom":11,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":11.33,"text-letter-spacing":0.01,"text-max-width":5,"text-field":"{_name_global}"},"paint":{"text-color":"#5C9BD9","text-halo-color":"#000f1a","text-halo-width":1}},{"id":"Water area/label/Large river","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",4],"minzoom":11,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":13.33,"text-letter-spacing":0.01,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#5C9BD9","text-halo-color":"#000f1a","text-halo-width":1}},{"id":"Water area/label/Small lake or reservoir","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",6],"minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":11.33,"text-letter-spacing":0.01,"text-max-width":5,"text-field":"{_name_global}"},"paint":{"text-color":"#5C9BD9"}},{"id":"Water area/label/Large lake or reservoir","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",3],"minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":13.33,"text-letter-spacing":0.01,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#5C9BD9"}},{"id":"Water area/label/Bay or inlet","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",1],"minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":12,"text-letter-spacing":0.15,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#5C9BD9"}},{"id":"Water area/label/Small island","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",0],"minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":10.67,"text-letter-spacing":0.05,"text-max-width":5,"text-field":"{_name_global}"},"paint":{"text-color":"#96968C"}},{"id":"Water area/label/Large island","type":"symbol","source":"esri","source-layer":"Water area/label","filter":["==","_label_class",5],"minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":13.33,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#96968C"}},{"id":"Water area large scale/label/River","type":"symbol","source":"esri","source-layer":"Water area large scale/label","filter":["==","_label_class",1],"minzoom":7,"maxzoom":11,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Italic"],"text-size":9.33,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#5C9BD9","text-halo-color":"#000f1a","text-halo-width":1}},{"id":"Water area large scale/label/Lake or lake intermittent","type":"symbol","source":"esri","source-layer":"Water area large scale/label","filter":["==","_label_class",0],"minzoom":7,"maxzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":9.33,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#5C9BD9","text-halo-color":"#000f1a","text-halo-width":1}},{"id":"Water area medium scale/label/Default","type":"symbol","source":"esri","source-layer":"Water area medium scale/label","minzoom":5,"maxzoom":7,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":9.33,"text-max-width":5,"text-field":"{_name}","text-letter-spacing":0.05,"visibility":"none"},"paint":{"text-color":"#5C9BD9","text-halo-color":"#000f1a","text-halo-width":1}},{"id":"Water area small scale/label/Default","type":"symbol","source":"esri","source-layer":"Water area small scale/label","minzoom":1,"maxzoom":5,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":9.33,"text-letter-spacing":0.05,"text-max-width":5,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#5C9BD9","text-halo-color":"#000f1a","text-halo-width":1}},{"id":"Marine area/label/Default","type":"symbol","source":"esri","source-layer":"Marine area/label","minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":10,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#497AAB"}},{"id":"Marine waterbody/label/small","type":"symbol","source":"esri","source-layer":"Marine waterbody/label","filter":["==","_label_class",4],"minzoom":1,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.1,"text-max-width":6,"text-field":"{_name}","text-padding":15},"paint":{"text-color":"#5C9BD9"}},{"id":"Marine waterbody/label/medium","type":"symbol","source":"esri","source-layer":"Marine waterbody/label","filter":["==","_label_class",3],"minzoom":1,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":10,"text-letter-spacing":0.1,"text-max-width":6,"text-field":"{_name}","text-padding":15},"paint":{"text-color":"#5C9BD9"}},{"id":"Marine waterbody/label/large","type":"symbol","source":"esri","source-layer":"Marine waterbody/label","filter":["==","_label_class",2],"minzoom":1,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":11,"text-letter-spacing":0.1,"text-max-width":6,"text-field":"{_name}","text-padding":15},"paint":{"text-color":"#5C9BD9"}},{"id":"Marine waterbody/label/x large","type":"symbol","source":"esri","source-layer":"Marine waterbody/label","filter":["==","_label_class",1],"minzoom":1,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":11,"text-letter-spacing":0.1,"text-max-width":6,"text-field":"{_name}","text-padding":15,"visibility":"none"},"paint":{"text-color":"#5C9BD9"}},{"id":"Marine waterbody/label/2x large","type":"symbol","source":"esri","source-layer":"Marine waterbody/label","filter":["==","_label_class",0],"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Italic"],"text-size":{"stops":[[0,10],[1,12]]},"text-letter-spacing":0.1,"text-max-width":6,"text-field":"{_name}","text-padding":15},"paint":{"text-color":"#5C9BD9"}},{"id":"Ferry/label/Rail ferry","type":"symbol","source":"esri","source-layer":"Ferry/label","filter":["all",["==","_label_class",1],["!in","Viz",3]],"minzoom":12,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name_global}","text-offset":[0,-0.6]},"paint":{"text-color":"#95BDE6","text-halo-color":"#2A2A28","text-halo-width":1}},{"id":"Railroad/label/Default","type":"symbol","source":"esri","source-layer":"Railroad/label","minzoom":14,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name_global}","text-offset":[0,-0.6]},"paint":{"text-color":"#95BDE6","text-halo-color":"#2A2A28","text-halo-width":1.5}},{"id":"Trail or path/label/Default","type":"symbol","source":"esri","source-layer":"Trail or path/label","minzoom":15,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":9.33,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#2A2A28","text-halo-width":1}},{"id":"Road tunnel/label/Pedestrian","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",6],["!in","Viz",3]],"minzoom":15,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#bfbdbb","text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Road tunnel/label/Local","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",5],["!in","Viz",3]],"minzoom":12,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Regular"],"text-size":{"stops":[[12,9],[14,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Road tunnel/label/Minor","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",4],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#262624","text-halo-width":1}},{"id":"Road tunnel/label/Major, alt name","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",3],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#262624","text-halo-width":1}},{"id":"Road tunnel/label/Major","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",2],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#262624","text-halo-width":1}},{"id":"Road tunnel/label/Freeway Motorway, alt name","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",1],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#262624","text-halo-width":1}},{"id":"Road tunnel/label/Highway","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",7],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#262624","text-halo-width":1}},{"id":"Road tunnel/label/Freeway Motorway","type":"symbol","source":"esri","source-layer":"Road tunnel/label","filter":["all",["==","_label_class",0],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9DC5F2","text-halo-color":"#262624"}},{"id":"Road/label/Rectangle hexagon brown white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",72],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon brown white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle hexagon green white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",70],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon green white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle hexagon red white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",68],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon red white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle hexagon blue white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",66],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon blue white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle hexagon brown white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",71],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon brown white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle hexagon green white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",69],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon green white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle hexagon red white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",67],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon red white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle hexagon blue white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",65],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle hexagon blue white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Octagon green white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",74],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Octagon green white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon orange black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",64],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon orange black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon green white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",62],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon green white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon red white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",60],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon red white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",56],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon green yellow (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",54],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon green yellow (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffff00"}},{"id":"Road/label/Pentagon green white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",52],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon green white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon yellow black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",50],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon yellow black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon blue white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",48],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon blue white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",46],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.3],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon inverse white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",44],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon inverse white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.3],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle green yellow (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",42],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle green yellow (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffff00"}},{"id":"Road/label/Rectangle green white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",40],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle green white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle yellow black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",38],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle yellow black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon blue white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",58],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon blue white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle red white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",36],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle red white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle blue white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",34],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle blue white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",32],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30,"visibility":"none"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/V-shaped white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",30],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/V-shaped white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped blue white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",28],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped blue white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped red white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",26],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped red white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped yellow black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",24],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped yellow black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped green leaf (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",22],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped green leaf (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped white green (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",20],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped white green (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30,"visibility":"none"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",18],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Secondary Hwy red white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",16],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Secondary Hwy red white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Secondary Hwy green white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",14],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Secondary Hwy green white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Secondary Hwy white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",12],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Secondary Hwy white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30,"visibility":"none"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Shield white black (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",10],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Shield white black (Alt)/{_len}","icon-rotation-alignment":"viewport","text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Shield blue white (Alt)","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",8],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Shield blue white (Alt)/{_len}","icon-rotation-alignment":"viewport","text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Octagon green white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",73],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Octagon green white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon orange black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",63],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon orange black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon green white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",61],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon green white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon red white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",59],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon red white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",55],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon white black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon green yellow","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",53],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon green yellow/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffff00"}},{"id":"Road/label/Pentagon green white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",51],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon green white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon yellow black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",49],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon yellow black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon blue white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",47],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon blue white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",45],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon white black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.3],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Pentagon inverse white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",43],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Pentagon inverse white black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.3],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle green yellow","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",41],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle green yellow/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffff00"}},{"id":"Road/label/Rectangle green white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",39],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle green white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle yellow black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",37],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle yellow black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Hexagon blue white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",57],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.3,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Hexagon blue white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle red white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",35],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle red white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle blue white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",33],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle blue white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Rectangle white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",31],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Rectangle white black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.2],"text-rotation-alignment":"viewport","text-padding":30,"visibility":"none"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/V-shaped white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",29],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/V-shaped white black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped blue white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",27],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped blue white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped red white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",25],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped red white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped yellow black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",23],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.02,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped yellow black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped green leaf","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",21],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped green leaf/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped white green","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",19],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped white green/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30,"visibility":"none"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/U-shaped white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",17],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/U-shaped white black/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Secondary Hwy red white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",15],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":8.67,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Secondary Hwy red white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Secondary Hwy green white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",13],["!in","Viz",3]],"minzoom":6,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-max-width":8,"text-field":"{_name}","icon-image":"Road/Secondary Hwy green white/{_len}","icon-rotation-alignment":"viewport","text-offset":[0,0.1],"text-rotation-alignment":"viewport","text-padding":30,"visibility":"none"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Secondary Hwy white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",11],["!in","Viz",3]],"minzoom":11,"layout":{"text-size":8.67,"text-font":["Arial Regular"],"text-max-width":8,"text-padding":30,"text-rotation-alignment":"viewport","icon-rotation-alignment":"viewport","symbol-placement":"line","symbol-avoid-edges":true,"text-offset":[0,0.1],"text-field":"{_name}","icon-image":"Road/Secondary Hwy white black/{_len}"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Shield white black","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",9],["!in","Viz",3]],"minzoom":11,"layout":{"text-size":9.33,"text-font":["Arial Regular"],"text-max-width":8,"text-padding":30,"text-rotation-alignment":"viewport","icon-rotation-alignment":"viewport","symbol-placement":"line","symbol-avoid-edges":true,"text-field":"{_name}","icon-image":"Road/Shield white black/{_len}"},"paint":{"text-color":"#ffffff"}},{"id":"Road/label/Shield blue white","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",7],["!in","Viz",3]],"minzoom":11,"layout":{"text-size":8.67,"text-font":["Arial Regular"],"text-max-width":8,"text-padding":30,"text-rotation-alignment":"viewport","icon-rotation-alignment":"viewport","symbol-placement":"line","symbol-avoid-edges":true,"text-field":"{_name}","icon-image":"Road/Shield blue white/{_len}"},"paint":{"text-color":"#ffffff"}},{"id":"Pedestrian/label/Default","type":"symbol","source":"esri","source-layer":"Pedestrian/label","minzoom":15,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#bfbdbb","text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Road/label/Pedestrian","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",6],["!in","Viz",3]],"minzoom":15,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#bfbdbb","text-halo-color":"#2a2a28","text-halo-width":1}},{"id":"Road/label/Local","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",5],["!in","Viz",3]],"minzoom":12,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Regular"],"text-size":{"stops":[[12,9],[14,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":{"stops":[[12,"#9dc5f2"],[13,"#a5d0ff"]]},"text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Road/label/Minor","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",4],["!in","Viz",3]],"minzoom":11,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9dc5f2","text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Road/label/Major, alt name","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",3],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name}"},"paint":{"text-color":"#9dc5f2","text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Road/label/Major","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",2],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9dc5f2","text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Road/label/Freeway Motorway, alt name","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",1],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name}"},"paint":{"text-color":"#9dc5f2","text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Road/label/Highway","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",75],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9dc5f2","text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Road/label/Freeway Motorway","type":"symbol","source":"esri","source-layer":"Road/label","filter":["all",["==","_label_class",0],["!in","Viz",3]],"minzoom":10,"layout":{"symbol-placement":"line","symbol-avoid-edges":true,"symbol-spacing":1000,"text-font":["Arial Bold"],"text-size":{"stops":[[10,9],[12,10.67]]},"text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#9dc5f2","text-halo-color":"#262624","text-halo-width":1.5}},{"id":"Cemetery/label/Default","type":"symbol","source":"esri","source-layer":"Cemetery/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Freight/label/Default","type":"symbol","source":"esri","source-layer":"Freight/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Water and wastewater/label/Default","type":"symbol","source":"esri","source-layer":"Water and wastewater/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Port/label/Default","type":"symbol","source":"esri","source-layer":"Port/label","minzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-transform":"uppercase","text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Industry/label/Default","type":"symbol","source":"esri","source-layer":"Industry/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Government/label/Default","type":"symbol","source":"esri","source-layer":"Government/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Finance/label/Default","type":"symbol","source":"esri","source-layer":"Finance/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Emergency/label/Default","type":"symbol","source":"esri","source-layer":"Emergency/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Indigenous/label/Default","type":"symbol","source":"esri","source-layer":"Indigenous/label","minzoom":7,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","visibility":"none"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Military/label/Default","type":"symbol","source":"esri","source-layer":"Military/label","minzoom":6,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","text-padding":25,"visibility":"none"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Transportation/label/Default","type":"symbol","source":"esri","source-layer":"Transportation/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Beach/label/Default","type":"symbol","source":"esri","source-layer":"Beach/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.33,"text-letter-spacing":0.08,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Golf course/label/Default","type":"symbol","source":"esri","source-layer":"Golf course/label","minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Zoo/label/Default","type":"symbol","source":"esri","source-layer":"Zoo/label","minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Retail/label/Default","type":"symbol","source":"esri","source-layer":"Retail/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Landmark/label/Default","type":"symbol","source":"esri","source-layer":"Landmark/label","minzoom":13,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Openspace or forest/label/Default","type":"symbol","source":"esri","source-layer":"Openspace or forest/label","minzoom":9,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","visibility":"none"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Park or farming/label/Default","type":"symbol","source":"esri","source-layer":"Park or farming/label","minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","text-padding":25},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Point of interest/Park","type":"symbol","source":"esri","source-layer":"Point of interest","filter":["==","_label_class",1],"minzoom":9,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.08,"text-max-width":8,"text-field":"{_name_global}","visibility":"none"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Education/label/Default","type":"symbol","source":"esri","source-layer":"Education/label","minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Medical/label/Default","type":"symbol","source":"esri","source-layer":"Medical/label","minzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}"},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin1 forest or park/label/Default","type":"symbol","source":"esri","source-layer":"Admin1 forest or park/label","minzoom":9,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","text-padding":25,"visibility":"none"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin0 forest or park/label/Default","type":"symbol","source":"esri","source-layer":"Admin0 forest or park/label","minzoom":6,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","text-padding":25,"visibility":"none"},"paint":{"text-color":"#6a9963","text-halo-color":"#262624","text-halo-width":1}},{"id":"Airport/label/Airport property","type":"symbol","source":"esri","source-layer":"Airport/label","minzoom":9,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10.67,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":"#a6a664","text-halo-color":"#262624","text-halo-width":1}},{"id":"Exit/Default","type":"symbol","source":"esri","source-layer":"Exit","minzoom":15,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Bold"],"text-size":12,"text-letter-spacing":0.05,"text-max-width":8,"text-field":"{_name_global}","text-rotation-alignment":"viewport"},"paint":{"text-color":"#6eff24","text-halo-blur":1.3,"text-halo-color":"#000000","text-halo-width":1}},{"id":"Point of interest/Bus station","type":"symbol","source":"esri","source-layer":"Point of interest","filter":["==","_symbol",2],"minzoom":9,"layout":{"symbol-avoid-edges":true,"icon-image":"Point of interest/Bus station","icon-allow-overlap":true,"icon-padding":1,"icon-size":{"stops":[[13,0.85],[16,1.3]]},"text-font":["Arial Regular"],"text-size":10.67,"text-anchor":"bottom","text-letter-spacing":0.04,"text-max-width":8,"text-field":"{_name_global}","text-offset":[0,-0.9]},"paint":{"text-color":{"stops":[[11,"#80804d"],[12,"#a6a664"]]},"text-halo-color":"#262624","text-halo-width":1}},{"id":"Point of interest/Rail station","type":"symbol","source":"esri","source-layer":"Point of interest","filter":["==","_symbol",3],"minzoom":9,"layout":{"symbol-avoid-edges":true,"icon-image":"Point of interest/Rail station","icon-allow-overlap":true,"icon-padding":1,"icon-size":{"stops":[[13,0.85],[16,1.3]]},"text-font":["Arial Regular"],"text-size":10.67,"text-anchor":"bottom","text-letter-spacing":0.04,"text-max-width":8,"text-field":"{_name_global}","text-offset":[0,-0.9]},"paint":{"text-color":{"stops":[[11,"#80804d"],[12,"#a6a664"]]},"text-halo-color":"#262624","text-halo-width":1}},{"id":"Point of interest/General","type":"symbol","source":"esri","source-layer":"Point of interest","filter":["==","_label_class",0],"minzoom":9,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":10,"text-letter-spacing":0.08,"text-max-width":8,"text-field":"{_name_global}","text-padding":15},"paint":{"text-color":{"stops":[[11,"#80804d"],[12,"#a6a664"]]},"text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin2 area/label/small","type":"symbol","source":"esri","source-layer":"Admin2 area/label","filter":["==","_label_class",1],"minzoom":8,"maxzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":{"stops":[[8,10],[10,12]]},"text-max-width":9,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#716480","text-halo-width":1,"text-halo-color":"#262624"}},{"id":"Admin2 area/label/large","type":"symbol","source":"esri","source-layer":"Admin2 area/label","filter":["==","_label_class",0],"minzoom":8,"maxzoom":11,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":12,"text-max-width":8,"text-field":"{_name}"},"paint":{"text-color":"#716480","text-halo-width":1,"text-halo-color":"#262624"}},{"id":"Admin1 area/label/x small","type":"symbol","source":"esri","source-layer":"Admin1 area/label","filter":["==","_label_class",5],"minzoom":6,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[6,9],[9,11]]}},"paint":{"text-color":"#9378a6","text-halo-width":1,"text-halo-color":"#262624"}},{"id":"Admin1 area/label/small","type":"symbol","source":"esri","source-layer":"Admin1 area/label","filter":["==","_label_class",4],"minzoom":6,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[6,10],[9,12]]}},"paint":{"text-color":"#9378a6","text-halo-width":1,"text-halo-color":"#262624"}},{"id":"Admin1 area/label/medium","type":"symbol","source":"esri","source-layer":"Admin1 area/label","filter":["==","_label_class",3],"minzoom":6,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[6,12],[9,14]]}},"paint":{"text-color":"#9378a6","text-halo-width":1,"text-halo-color":"#262624"}},{"id":"Admin1 area/label/large","type":"symbol","source":"esri","source-layer":"Admin1 area/label","filter":["==","_label_class",2],"minzoom":4,"maxzoom":10,"layout":{"text-size":{"stops":[[3,9],[6,12.5],[8,14.5]]},"text-font":["Arial Regular"],"text-max-width":8,"text-letter-spacing":0.1,"symbol-avoid-edges":true,"text-field":"{_name}"},"paint":{"text-color":"#9378a6","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin1 area/label/x large","type":"symbol","source":"esri","source-layer":"Admin1 area/label","filter":["==","_label_class",1],"minzoom":4,"maxzoom":10,"layout":{"text-size":{"stops":[[3,9],[6,12.5],[8,14.5]]},"text-font":["Arial Regular"],"text-max-width":8,"text-letter-spacing":0.1,"symbol-avoid-edges":true,"text-field":"{_name}"},"paint":{"text-color":"#9378a6","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin1 area/label/2x large","type":"symbol","source":"esri","source-layer":"Admin1 area/label","filter":["==","_label_class",0],"minzoom":3,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[3,9],[6,12.5],[8,14.5]]},"text-letter-spacing":0.1},"paint":{"text-color":"#9378a6","text-halo-width":1,"text-halo-color":"#262624"}},{"id":"Admin0 point/x small","type":"symbol","source":"esri","source-layer":"Admin0 point","filter":["==","_label_class",5],"minzoom":5,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-letter-spacing":0.15,"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[5,8],[9,11]]},"text-transform":"uppercase"},"paint":{"text-color":"#bb93d9","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin0 point/small","type":"symbol","source":"esri","source-layer":"Admin0 point","filter":["==","_label_class",4],"minzoom":4,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-letter-spacing":0.15,"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[4,8],[9,11]]},"text-transform":"uppercase"},"paint":{"text-color":"#bb93d9","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin0 point/medium","type":"symbol","source":"esri","source-layer":"Admin0 point","filter":["==","_label_class",3],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-letter-spacing":0.15,"text-max-width":6,"text-field":"{_name}","text-size":{"stops":[[2,9],[9,12]]},"text-transform":"uppercase"},"paint":{"text-color":"#bb93d9","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin0 point/large","type":"symbol","source":"esri","source-layer":"Admin0 point","filter":["==","_label_class",2],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-letter-spacing":0.15,"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[2,10],[9,13]]},"text-transform":"uppercase"},"paint":{"text-color":"#bb93d9","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin0 point/x large","type":"symbol","source":"esri","source-layer":"Admin0 point","filter":["==","_label_class",1],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Bold"],"text-letter-spacing":0.25,"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[2,10],[9,16]]},"text-transform":"uppercase"},"paint":{"text-color":"#bb93d9","text-halo-color":"#262624","text-halo-width":1}},{"id":"Admin0 point/2x large","type":"symbol","source":"esri","source-layer":"Admin0 point","filter":["==","_label_class",0],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Bold"],"text-letter-spacing":0.25,"text-max-width":8,"text-field":"{_name}","text-size":{"stops":[[2,12],[8,17]]},"text-transform":"uppercase"},"paint":{"text-color":"#bb93d9","text-halo-color":"#262624","text-halo-width":1}},{"id":"Neighborhood","type":"symbol","source":"esri","source-layer":"Neighborhood","minzoom":14,"maxzoom":17,"layout":{"symbol-avoid-edges":true,"icon-image":"Neighborhood","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":8,"text-transform":"uppercase","text-anchor":"bottom-left","text-letter-spacing":0.25,"text-max-width":8.5,"text-field":"{_name_global}","text-padding":1},"paint":{"text-color":"#bebebe","text-halo-width":1.33,"text-halo-color":"#262624"}},{"id":"City large scale/town small","type":"symbol","source":"esri","source-layer":"City large scale","filter":["==","_label_class",5],"minzoom":10,"maxzoom":17,"layout":{"symbol-avoid-edges":true,"icon-image":"City large scale","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10,"text-anchor":"bottom-left","text-letter-spacing":0.08,"text-max-width":8,"text-field":"{_name_global}","text-padding":1},"paint":{"text-color":{"stops":[[10,"#8c8c8c"],[11,"#a5a5a5"],[12,"#bebebe"]]},"text-halo-width":1.33,"text-halo-color":"#262624"}},{"id":"City large scale/town large","type":"symbol","source":"esri","source-layer":"City large scale","filter":["==","_label_class",4],"minzoom":10,"maxzoom":17,"layout":{"symbol-avoid-edges":true,"icon-image":"City large scale","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-letter-spacing":0.09,"text-max-width":8,"text-field":"{_name_global}","text-padding":1},"paint":{"text-color":"#bebebe","text-halo-width":1.33,"text-halo-color":"#262624"}},{"id":"City large scale/small","type":"symbol","source":"esri","source-layer":"City large scale","filter":["==","_label_class",3],"minzoom":10,"maxzoom":17,"layout":{"symbol-avoid-edges":true,"icon-image":"City large scale","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":12,"text-anchor":"bottom-left","text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name_global}","text-padding":1},"paint":{"text-color":"#bebebe","text-halo-width":1.33,"text-halo-color":"#262624"}},{"id":"City large scale/medium","type":"symbol","source":"esri","source-layer":"City large scale","filter":["==","_label_class",2],"minzoom":10,"maxzoom":17,"layout":{"symbol-avoid-edges":true,"icon-image":"City large scale","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":12,"text-anchor":"bottom-left","text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name_global}","text-padding":1},"paint":{"text-color":"#bebebe","text-halo-width":1.33,"text-halo-color":"#262624"}},{"id":"City large scale/large","type":"symbol","source":"esri","source-layer":"City large scale","filter":["==","_label_class",1],"minzoom":10,"maxzoom":17,"layout":{"symbol-avoid-edges":true,"icon-image":"City large scale","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Bold"],"text-size":12,"text-anchor":"bottom-left","text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name_global}","text-padding":1},"paint":{"text-color":"#bebebe","text-halo-width":1.33,"text-halo-color":"#262624"}},{"id":"City large scale/x large","type":"symbol","source":"esri","source-layer":"City large scale","filter":["==","_label_class",0],"minzoom":10,"maxzoom":17,"layout":{"symbol-avoid-edges":true,"icon-image":"City large scale","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Bold"],"text-size":13.5,"text-anchor":"bottom-left","text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name_global}","text-padding":1},"paint":{"text-color":"#bebebe","text-halo-width":1.33,"text-halo-color":"#262624"}},{"id":"City small scale/town small non capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",17],"minzoom":2,"maxzoom":10,"layout":{"visibility":"none","text-size":10,"text-font":["Arial Regular"],"text-max-width":8,"text-justify":"left","icon-allow-overlap":true,"symbol-avoid-edges":true,"text-anchor":"bottom-left","text-field":"{_name}","icon-image":"City small scale/town small non capital"},"paint":{"text-color":"#969696","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/town large non capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",15],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/town large non capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/small non capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",12],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/small non capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/medium non capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",9],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/medium non capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/other capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",18],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/other capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/town large other capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",14],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/town large other capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/small other capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",11],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/small other capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/medium other capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",8],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/medium other capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/town small admin0 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",16],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/town small admin0 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/town large admin0 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",13],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/town large admin0 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/small admin0 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",10],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/small admin0 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/medium admin0 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",7],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/medium admin0 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Bold"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/large other capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",5],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/large other capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/x large admin2 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",2],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/x large admin2 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":12,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/large non capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",6],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/large non capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Bold"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/large admin0 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",4],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/large admin0 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Bold"],"text-size":10.5,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#aaaaaa","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/x large non capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",3],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/x large non capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Bold"],"text-size":12,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#c0c0c0","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/x large admin1 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",1],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/x large admin1 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":12,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":"#c0c0c0","text-halo-color":"#262624","text-halo-width":1.33}},{"id":"City small scale/x large admin0 capital","type":"symbol","source":"esri","source-layer":"City small scale","filter":["==","_symbol",0],"minzoom":2,"maxzoom":10,"layout":{"symbol-avoid-edges":true,"icon-image":"City small scale/x large admin0 capital","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Bold"],"text-size":12,"text-anchor":"bottom-left","text-justify":"left","text-max-width":8,"text-field":"{_name}","visibility":"none"},"paint":{"text-color":{"stops":[[4,"#aaaaaa"],[5,"#c0c0c0"]]},"text-halo-color":"#262624","text-halo-width":1.33}},{"id":"Building/label/Default","type":"symbol","source":"esri","source-layer":"Building/label","minzoom":15,"layout":{"symbol-avoid-edges":true,"text-font":["Arial Regular"],"text-size":9.5,"text-letter-spacing":0.08,"text-max-width":8,"text-field":"{_name_global}","text-padding":20},"paint":{"text-color":"#969696","text-halo-width":1,"text-halo-color":"#2A2A28"}},{"id":"Continent","type":"symbol","source":"esri","source-layer":"Continent","minzoom":0,"maxzoom":2,"layout":{"symbol-avoid-edges":true,"icon-image":"Continent","icon-allow-overlap":true,"icon-padding":1,"text-font":["Arial Regular"],"text-size":{"stops":[[0,8.5],[1,11.5]]},"text-letter-spacing":0.35,"text-max-width":8,"text-line-height":1.75,"text-field":"{_name_global}","text-transform":"uppercase","visibility":"none"},"paint":{"text-color":"#cccccc"}},{"id":"Disputed label point/Island","type":"symbol","source":"esri","source-layer":"Disputed label point","filter":["all",["==","_label_class",1],["in","DisputeID",0]],"minzoom":11,"layout":{"icon-image":"Disputed label point","icon-allow-overlap":true,"text-font":["Arial Regular"],"text-size":10.5,"text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#96968C"}},{"id":"Disputed label point/Waterbody","type":"symbol","source":"esri","source-layer":"Disputed label point","filter":["all",["==","_label_class",0],["in","DisputeID",1006]],"minzoom":2,"maxzoom":10,"layout":{"icon-image":"Disputed label point","icon-allow-overlap":true,"text-font":["Arial Italic"],"text-size":10.5,"text-letter-spacing":0.1,"text-max-width":7,"text-field":"{_name}","text-optional":true},"paint":{"text-color":"#5C9BD9"}},{"id":"Disputed label point/Admin0","type":"symbol","source":"esri","source-layer":"Disputed label point","filter":["all",["==","_label_class",2],["in","DisputeID",1021]],"minzoom":2,"maxzoom":10,"layout":{"icon-image":"Disputed label point","icon-allow-overlap":true,"text-font":["Arial Regular"],"text-size":{"stops":[[2,9],[8,11.5]]},"text-letter-spacing":0.1,"text-max-width":8,"text-field":"{_name}","text-transform":"uppercase","text-optional":true},"paint":{"text-color":"#bb93d9","text-halo-color":"#262624","text-halo-width":1}}],"metadata":{"arcgisStyleUrl":"https://www.arcgis.com/sharing/rest/content/items/77cdce3e37204a06be9da9572e892fde/resources/styles/root.json","arcgisOriginalItemTitle":"World Street Map Canvas (Night)","arcgisQuickEditorWarning":true,"arcgisEditorExtents":[{"spatialReference":{"wkid":102100},"xmin":-18800994.962717548,"ymin":4132400.31525453,"xmax":-3303203.608260519,"ymax":12605308.972426113},{"spatialReference":{"latestWkid":3857,"wkid":102100},"xmin":-1295782.795658164,"ymin":5988848.323580071,"xmax":1267614.5117078347,"ymax":7417306.365089368},{"spatialReference":{"latestWkid":3857,"wkid":102100},"xmin":-8655258.605290867,"ymin":4660747.33454408,"xmax":-8495046.273580492,"ymax":4750025.962138412},{"spatialReference":{"latestWkid":3857,"wkid":102100},"xmin":16829782.370097805,"ymin":-4012773.2826673286,"xmax":16834789.005463753,"ymax":-4009983.325555006}],"arcgisMinimapVisibility":true}} \ No newline at end of file +{ + "version": 8, + "sprite": "https://cdn.arcgis.com/sharing/rest/content/items/86f556a2d1fd468181855a35e344567f/resources/styles/../sprites/sprite", + "glyphs": "https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer/resources/fonts/{fontstack}/{range}.pbf", + "sources": { "esri": { "type": "vector", "url": "https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer" } }, + "layers": [ + { "id": "background", "type": "background", "paint": { "background-color": "#000f1a" }, "layout": {} }, + { "id": "Land/Not ice", "type": "fill", "source": "esri", "source-layer": "Land", "filter": ["==", "_symbol", 0], "minzoom": 0, "layout": {}, "paint": { "fill-color": "#2a2a28" } }, + { "id": "Land/Ice", "type": "fill", "source": "esri", "source-layer": "Land", "filter": ["==", "_symbol", 1], "minzoom": 0, "layout": {}, "paint": { "fill-color": "#20262e" } }, + { "id": "Urban area", "type": "fill", "source": "esri", "source-layer": "Urban area", "minzoom": 5, "maxzoom": 12, "layout": {}, "paint": { "fill-color": "#323230" } }, + { "id": "Openspace or forest", "type": "fill", "source": "esri", "source-layer": "Openspace or forest", "minzoom": 9, "layout": {}, "paint": { "fill-color": "#263323" } }, + { + "id": "Admin0 forest or park", + "type": "fill", + "source": "esri", + "source-layer": "Admin0 forest or park", + "minzoom": 5, + "layout": {}, + "paint": { + "fill-color": { + "stops": [ + [5, "#282f26"], + [6, "#263323"] + ] + } + } + }, + { "id": "Admin1 forest or park", "type": "fill", "source": "esri", "source-layer": "Admin1 forest or park", "minzoom": 6, "layout": {}, "paint": { "fill-color": "#263323" } }, + { "id": "Zoo", "type": "fill", "source": "esri", "source-layer": "Zoo", "minzoom": 11, "layout": {}, "paint": { "fill-color": "#263323" } }, + { "id": "Military", "type": "fill", "source": "esri", "source-layer": "Military", "minzoom": 6, "layout": {}, "paint": { "fill-color": "#2F3238", "fill-outline-color": "#2F3238" } }, + { "id": "Port", "type": "fill", "source": "esri", "source-layer": "Port", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#3A3C45" } }, + { "id": "Transportation", "type": "fill", "source": "esri", "source-layer": "Transportation", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#3A3C45" } }, + { "id": "Industry", "type": "fill", "source": "esri", "source-layer": "Industry", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#3A3C45" } }, + { "id": "Indigenous", "type": "fill", "source": "esri", "source-layer": "Indigenous", "minzoom": 7, "layout": {}, "paint": { "fill-color": "#302D25" } }, + { "id": "Golf course", "type": "fill", "source": "esri", "source-layer": "Golf course", "minzoom": 11, "layout": {}, "paint": { "fill-color": "#263323" } }, + { "id": "Airport/Airport property", "type": "fill", "source": "esri", "source-layer": "Airport", "filter": ["==", "_symbol", 1], "minzoom": 9, "layout": {}, "paint": { "fill-color": "#2F3238" } }, + { "id": "Airport/Airport runway", "type": "fill", "source": "esri", "source-layer": "Airport", "filter": ["==", "_symbol", 0], "minzoom": 11, "layout": {}, "paint": { "fill-color": "#3A3C45" } }, + { "id": "Retail", "type": "fill", "source": "esri", "source-layer": "Retail", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#38324D" } }, + { "id": "Education", "type": "fill", "source": "esri", "source-layer": "Education", "minzoom": 11, "layout": {}, "paint": { "fill-color": "#402C2E" } }, + { "id": "Medical", "type": "fill", "source": "esri", "source-layer": "Medical", "minzoom": 11, "layout": {}, "paint": { "fill-color": "#453108" } }, + { "id": "Park or farming", "type": "fill", "source": "esri", "source-layer": "Park or farming", "minzoom": 11, "layout": {}, "paint": { "fill-color": "#263323" } }, + { "id": "Water and wastewater", "type": "fill", "source": "esri", "source-layer": "Water and wastewater", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#000F1A" } }, + { "id": "Freight", "type": "fill", "source": "esri", "source-layer": "Freight", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#3A3C45" } }, + { "id": "Cemetery", "type": "fill", "source": "esri", "source-layer": "Cemetery", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#283827" } }, + { "id": "Landmark", "type": "fill", "source": "esri", "source-layer": "Landmark", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#243021" } }, + { "id": "Finance", "type": "fill", "source": "esri", "source-layer": "Finance", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#38324D" } }, + { "id": "Government", "type": "fill", "source": "esri", "source-layer": "Government", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#453108" } }, + { "id": "Emergency", "type": "fill", "source": "esri", "source-layer": "Emergency", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#453108" } }, + { "id": "Pedestrian", "type": "fill", "source": "esri", "source-layer": "Pedestrian", "minzoom": 13, "layout": {}, "paint": { "fill-color": "#403e38" } }, + { + "id": "Special area of interest/Green openspace", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 11], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#283827" } + }, + { + "id": "Special area of interest/Grass", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 8], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#283827" } + }, + { "id": "Marine area/1", "type": "fill", "source": "esri", "source-layer": "Marine area", "minzoom": 0, "layout": {}, "paint": { "fill-color": "#000F1A" } }, + { + "id": "Bathymetry", + "type": "fill", + "source": "esri", + "source-layer": "Bathymetry", + "filter": ["in", "_symbol", 0, 1, 2, 3, 4, 5], + "maxzoom": 11, + "layout": { "visibility": "visible" }, + "paint": { "fill-color": "#000F1A" } + }, + { + "id": "Water line small scale", + "type": "line", + "source": "esri", + "source-layer": "Water line small scale", + "minzoom": 1, + "maxzoom": 5, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#000F23", + "line-width": { + "base": 1.2, + "stops": [ + [1, 0.5], + [5, 1.33] + ] + } + } + }, + { + "id": "Water line medium scale", + "type": "line", + "source": "esri", + "source-layer": "Water line medium scale", + "minzoom": 5, + "maxzoom": 7, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#000F23", + "line-width": { + "base": 1.2, + "stops": [ + [5, 0.5], + [7, 1.33] + ] + } + } + }, + { + "id": "Water line large scale", + "type": "line", + "source": "esri", + "source-layer": "Water line large scale", + "minzoom": 7, + "maxzoom": 11, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#000F23", + "line-width": { + "base": 1.2, + "stops": [ + [7, 1], + [11, 1.33] + ] + } + } + }, + { + "id": "Water line/Canal or ditch", + "type": "line", + "source": "esri", + "source-layer": "Water line", + "filter": ["==", "_symbol", 1], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#000F23", + "line-width": { + "base": 1.2, + "stops": [ + [11, 1], + [14, 1.33], + [17, 2.67] + ] + }, + "line-dasharray": [7.5, 2.5] + } + }, + { + "id": "Water line/Stream or river intermittent", + "type": "line", + "source": "esri", + "source-layer": "Water line", + "filter": ["==", "_symbol", 4], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#000F23", + "line-dasharray": [10.5, 1.75], + "line-width": { + "base": 1.2, + "stops": [ + [11, 1], + [14, 1.33], + [17, 2] + ] + } + } + }, + { + "id": "Water line/Stream or river", + "type": "line", + "source": "esri", + "source-layer": "Water line", + "filter": ["==", "_symbol", 0], + "minzoom": 11, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#000F23", + "line-width": { + "base": 1.2, + "stops": [ + [11, 1], + [14, 1.33], + [17, 2.67] + ] + } + } + }, + { "id": "Water area small scale", "type": "fill", "source": "esri", "source-layer": "Water area small scale", "minzoom": 1, "maxzoom": 5, "layout": {}, "paint": { "fill-color": "#000F1A" } }, + { + "id": "Water area medium scale/Lake intermittent", + "type": "fill", + "source": "esri", + "source-layer": "Water area medium scale", + "filter": ["==", "_symbol", 1], + "minzoom": 5, + "maxzoom": 7, + "layout": {}, + "paint": { "fill-pattern": "Water area/Lake or river intermittent" } + }, + { + "id": "Water area medium scale/Lake or river", + "type": "fill", + "source": "esri", + "source-layer": "Water area medium scale", + "filter": ["==", "_symbol", 0], + "minzoom": 5, + "maxzoom": 7, + "layout": {}, + "paint": { "fill-color": "#000F1A" } + }, + { + "id": "Water area large scale/Lake intermittent", + "type": "fill", + "source": "esri", + "source-layer": "Water area large scale", + "filter": ["==", "_symbol", 1], + "minzoom": 7, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-pattern": "Water area/Lake or river intermittent" } + }, + { + "id": "Water area large scale/Lake or river", + "type": "fill", + "source": "esri", + "source-layer": "Water area large scale", + "filter": ["==", "_symbol", 0], + "minzoom": 7, + "maxzoom": 11, + "layout": {}, + "paint": { "fill-color": "#000F1A" } + }, + { + "id": "Water area/Lake, river or bay", + "type": "fill", + "source": "esri", + "source-layer": "Water area", + "filter": ["==", "_symbol", 7], + "minzoom": 11, + "layout": {}, + "paint": { "fill-color": "#000F1A" } + }, + { + "id": "Water area/Lake or river intermittent", + "type": "fill", + "source": "esri", + "source-layer": "Water area", + "filter": ["==", "_symbol", 6], + "minzoom": 11, + "layout": {}, + "paint": { "fill-pattern": "Water area/Lake or river intermittent" } + }, + { + "id": "Water area/Swamp or marsh", + "type": "fill", + "source": "esri", + "source-layer": "Water area", + "filter": ["==", "_symbol", 3], + "minzoom": 11, + "layout": {}, + "paint": { "fill-pattern": "Water area/Swamp or marsh" } + }, + { + "id": "Water area/Playa", + "type": "fill", + "source": "esri", + "source-layer": "Water area", + "filter": ["==", "_symbol", 1], + "minzoom": 12, + "layout": {}, + "paint": { "fill-pattern": "Water area/Playa" } + }, + { + "id": "Water area/Ice mass", + "type": "fill", + "source": "esri", + "source-layer": "Water area", + "filter": ["==", "_symbol", 2], + "minzoom": 11, + "layout": {}, + "paint": { "fill-pattern": "Water area/Ice mass" } + }, + { + "id": "Special area of interest/Mulch or dirt", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 14], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#2a2a28" } + }, + { + "id": "Special area of interest/Water", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 7], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#000F1A" } + }, + { + "id": "Special area of interest/Football field or court", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 4], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#47443c" } + }, + { + "id": "Special area of interest/Baseball field or other grounds", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 1], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#47443c" } + }, + { + "id": "Special area of interest/Athletic track", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 0], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#47443c" } + }, + { + "id": "Special area of interest/Hardcourt", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 10], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#47443c" } + }, + { + "id": "Special area of interest/Parking", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 15], + "minzoom": 15, + "layout": {}, + "paint": { "fill-color": "#44464F" } + }, + { + "id": "Special area of interest/Bike, walk or pedestrian", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 2], + "minzoom": 15, + "layout": {}, + "paint": { "fill-color": "#403e38" } + }, + { + "id": "Special area of interest/Curb", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 3], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#403e38" } + }, + { + "id": "Special area of interest/Garden path", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 12], + "minzoom": 14, + "layout": {}, + "paint": { "fill-color": "#403e38" } + }, + { + "id": "Special area of interest/Groundcover", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 13], + "minzoom": 17, + "layout": {}, + "paint": { "fill-color": "#263323" } + }, + { + "id": "Special area of interest/Sand", + "type": "fill", + "source": "esri", + "source-layer": "Special area of interest", + "filter": ["==", "_symbol", 6], + "minzoom": 15, + "layout": {}, + "paint": { "fill-color": "#2a2a28" } + }, + { + "id": "Special area of interest line/Dock or pier", + "type": "line", + "source": "esri", + "source-layer": "Special area of interest line", + "filter": ["==", "_symbol", 0], + "minzoom": 17, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#626153", "line-width": 0.75 } + }, + { + "id": "Special area of interest line/Parking lot", + "type": "line", + "source": "esri", + "source-layer": "Special area of interest line", + "filter": ["==", "_symbol", 5], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#333440", "line-width": 0.67 } + }, + { + "id": "Special area of interest line/Sports field", + "type": "line", + "source": "esri", + "source-layer": "Special area of interest line", + "filter": ["==", "_symbol", 6], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#403e38", "line-width": 0.67 } + }, + { + "id": "Railroad/casing", + "type": "line", + "source": "esri", + "source-layer": "Railroad", + "minzoom": 12, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#506880", "line-width": 3.33 } + }, + { + "id": "Railroad/line", + "type": "line", + "source": "esri", + "source-layer": "Railroad", + "minzoom": 12, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#28282A", "line-width": 1.33 } + }, + { + "id": "Ferry/Rail ferry/casing", + "type": "line", + "source": "esri", + "source-layer": "Ferry", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#506880", "line-width": 3.33 } + }, + { + "id": "Ferry/Rail ferry/line", + "type": "line", + "source": "esri", + "source-layer": "Ferry", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#28282A", "line-width": 1.33 } + }, + { + "id": "Ferry/Ferry", + "type": "line", + "source": "esri", + "source-layer": "Ferry", + "filter": ["all", ["==", "_symbol", 0], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#1D4391", + "line-width": { + "base": 1.2, + "stops": [ + [11, 1.33], + [14, 1.5], + [17, 1.5] + ] + }, + "line-dasharray": [6, 3] + } + }, + { "id": "Building", "type": "fill", "source": "esri", "source-layer": "Building", "minzoom": 15, "layout": {}, "paint": { "fill-color": "#373845", "fill-outline-color": "#515461" } }, + { + "id": "Trail or path", + "type": "line", + "source": "esri", + "source-layer": "Trail or path", + "minzoom": 15, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#403e38", + "line-width": { + "base": 1.2, + "stops": [ + [14, 1.6], + [18, 2.6] + ] + } + } + }, + { + "id": "Road/4WD/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 10], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#3161a0", + "line-dasharray": [3, 1], + "line-width": { + "base": 1.2, + "stops": [ + [12, 1.33], + [14, 2], + [17, 4] + ] + } + } + }, + { + "id": "Road/Service/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 8], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#30588d", + "line-width": { + "base": 1.2, + "stops": [ + [13, 2.25], + [14, 2.83], + [17, 4.5] + ] + } + } + }, + { + "id": "Road/Local/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 7], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { "line-join": "round" }, + "paint": { + "line-color": { + "stops": [ + [12, "#324154"], + [13, "#30588D"], + [14, "#3161a0"] + ] + }, + "line-width": { + "base": 1.2, + "stops": [ + [12, 1.5], + [13, 2.25], + [14, 4.5], + [17, 8.5] + ] + } + } + }, + { + "id": "Road/Minor/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 5], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#316ab3", + "line-width": { + "base": 1.2, + "stops": [ + [12, 3.5], + [14, 4.5], + [17, 8.5] + ] + } + } + }, + { + "id": "Road/Minor, ramp or traffic circle/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 6], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#316ab3", + "line-width": { + "base": 1.2, + "stops": [ + [12, 3.5], + [14, 4.5], + [17, 8.5] + ] + } + } + }, + { + "id": "Road/Major/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 3], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#4697ff", + "line-width": { + "base": 1.2, + "stops": [ + [10, 2], + [11, 3], + [14, 7.3], + [17, 14.3] + ] + } + } + }, + { + "id": "Road/Major, ramp or traffic circle/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 4], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#4697ff", + "line-width": { + "base": 1.2, + "stops": [ + [12, 2.5], + [14, 4.7], + [17, 7.7] + ] + } + } + }, + { + "id": "Road/Highway/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#66a8ff", + "line-width": { + "base": 1.2, + "stops": [ + [9, 1], + [14, 6.8], + [17, 14.3] + ] + } + } + }, + { + "id": "Road/Freeway Motorway/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 0], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#66a8ff", + "line-width": { + "base": 1.2, + "stops": [ + [9, 1.5], + [14, 7.33], + [17, 14.3] + ] + } + } + }, + { + "id": "Road/Freeway Motorway Highway, ramp or traffic circle/casing", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 2], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#4697ff", + "line-width": { + "base": 1.2, + "stops": [ + [9, 1.5], + [14, 4.7], + [17, 8.2] + ] + } + } + }, + { + "id": "Road/Pedestrian", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 9], ["!in", "Viz", 3]], + "minzoom": 15, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#403e38", + "line-width": { + "base": 1.2, + "stops": [ + [14, 1.6], + [18, 2.6] + ] + } + } + }, + { + "id": "Road/4WD/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 10], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#152d4d", + "line-width": { + "base": 1.2, + "stops": [ + [12, 0.85], + [14, 1], + [17, 2] + ] + } + } + }, + { + "id": "Road/Service/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 8], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#404759", + "line-width": { + "base": 1.2, + "stops": [ + [13, 0.75], + [14, 1.33], + [17, 2.33] + ] + } + } + }, + { + "id": "Road/Local/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 7], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#152d4d", + "line-width": { + "base": 1.2, + "stops": [ + [13, 0.75], + [14, 2.5], + [17, 4.5] + ] + } + } + }, + { + "id": "Road/Minor/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 5], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#1e4678", + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.5], + [11, 2], + [14, 2.5], + [17, 4.5] + ] + } + } + }, + { + "id": "Road/Minor, ramp or traffic circle/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 6], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#1e4678", + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.5], + [11, 2], + [14, 2.5], + [17, 4.5] + ] + } + } + }, + { + "id": "Road/Major/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 3], ["!in", "Viz", 3]], + "minzoom": 8, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#26528c", + "line-width": { + "base": 1.2, + "stops": [ + [8, 0.75], + [14, 5.33], + [17, 10.33] + ] + } + } + }, + { + "id": "Road/Major, ramp or traffic circle/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 4], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#26528c", + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.75], + [14, 2.7], + [17, 4.7] + ] + } + } + }, + { + "id": "Road/Highway/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 7, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": { + "stops": [ + [6, "#234b80"], + [8, "#2c5ea0"], + [9, "#3470bf"] + ] + }, + "line-width": { + "base": 1.2, + "stops": [ + [6, 0.75], + [14, 4.8], + [17, 10.33] + ] + } + } + }, + { + "id": "Road/Freeway Motorway/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 0], ["!in", "Viz", 3]], + "minzoom": 7, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": { + "stops": [ + [5, "#2a4b61"], + [8, "#3470bf"] + ] + }, + "line-width": { + "base": 1.2, + "stops": [ + [4, 0.75], + [14, 5.33], + [17, 10.33] + ] + } + } + }, + { + "id": "Road/Freeway Motorway Highway, ramp or traffic circle/line", + "type": "line", + "source": "esri", + "source-layer": "Road", + "filter": ["all", ["==", "_symbol", 2], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#26528c", + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.75], + [14, 2.7], + [17, 4.7] + ] + } + } + }, + { + "id": "Road tunnel/4WD/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 10], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#3161a0", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [12, 1.33], + [14, 2], + [17, 4] + ] + } + } + }, + { + "id": "Road tunnel/Service/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 8], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#30588d", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [14, 1.5], + [17, 4.5] + ] + } + } + }, + { + "id": "Road tunnel/Local/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 7], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { "line-join": "round" }, + "paint": { + "line-opacity": 0.3, + "line-color": "#30588D", + "line-width": { + "base": 1.2, + "stops": [ + [12, 1.5], + [14, 4.5], + [17, 8.5] + ] + } + } + }, + { + "id": "Road tunnel/Minor/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 5], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#316ab3", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [10, 1.5], + [14, 4.5], + [17, 8.5] + ] + } + } + }, + { + "id": "Road tunnel/Minor, ramp or traffic circle/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 6], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#4697ff", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [9, 1.5], + [14, 4.7], + [17, 7.7] + ] + } + } + }, + { + "id": "Road tunnel/Major/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 3], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#4697ff", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [11, 3], + [14, 7.33], + [17, 14.33] + ] + } + } + }, + { + "id": "Road tunnel/Major, ramp or traffic circle/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 4], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#4697ff", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [9, 1.5], + [14, 4.7], + [17, 7.7] + ] + } + } + }, + { + "id": "Road tunnel/Highway/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#58b9ff", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [9, 1.5], + [14, 4.7], + [17, 7.7] + ] + } + } + }, + { + "id": "Road tunnel/Freeway Motorway/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 0], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#58b9ff", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [9, 1.5], + [14, 7.3], + [17, 14.3] + ] + } + } + }, + { + "id": "Road tunnel/Freeway Motorway Highway, ramp or traffic circle/casing", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 2], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#58b9ff", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [9, 1.5], + [14, 4.7], + [17, 8.7] + ] + } + } + }, + { + "id": "Road tunnel/Pedestrian", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 9], ["!in", "Viz", 3]], + "minzoom": 15, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#403e38", + "line-opacity": 0.3, + "line-width": { + "base": 1.2, + "stops": [ + [14, 1.6], + [17, 2.6] + ] + } + } + }, + { + "id": "Road tunnel/4WD/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 10], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#152d4d", + "line-opacity": 0.5, + "line-width": { + "base": 1.2, + "stops": [ + [11, 0.75], + [14, 1], + [17, 2] + ] + } + } + }, + { + "id": "Road tunnel/Service/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 8], ["!in", "Viz", 3]], + "minzoom": 13, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#404759", + "line-opacity": 0.5, + "line-width": { + "base": 1.2, + "stops": [ + [11, 0.75], + [14, 1.33], + [17, 2.33] + ] + } + } + }, + { + "id": "Road tunnel/Local/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 7], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { "line-join": "round" }, + "paint": { + "line-opacity": 0.5, + "line-color": "#152d4d", + "line-width": { + "base": 1.2, + "stops": [ + [11, 0.75], + [14, 2.5], + [17, 4.5] + ] + } + } + }, + { + "id": "Road tunnel/Minor/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 5], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-opacity": 0.5, + "line-color": "#1e4678", + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.5], + [11, 2], + [14, 2.5], + [17, 4.5] + ] + } + } + }, + { + "id": "Road tunnel/Minor, ramp or traffic circle/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 6], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-opacity": 0.5, + "line-color": "#1e4678", + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.5], + [11, 2], + [14, 2.5], + [17, 4.5] + ] + } + } + }, + { + "id": "Road tunnel/Major/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 3], ["!in", "Viz", 3]], + "minzoom": 8, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#26528c", + "line-opacity": 0.5, + "line-width": { + "base": 1.2, + "stops": [ + [8, 0.75], + [14, 5.33], + [17, 10.33] + ] + } + } + }, + { + "id": "Road tunnel/Major, ramp or traffic circle/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 4], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#26528c", + "line-opacity": 0.5, + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.75], + [14, 2.7], + [17, 4.7] + ] + } + } + }, + { + "id": "Road tunnel/Highway/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-opacity": 0.5, + "line-color": "#2a6b99", + "line-width": { + "base": 1.2, + "stops": [ + [6, 0.75], + [14, 5.33], + [17, 10.33] + ] + } + } + }, + { + "id": "Road tunnel/Freeway Motorway/line", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 0], ["!in", "Viz", 3]], + "minzoom": 4, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#2a6b99", + "line-opacity": 0.5, + "line-width": { + "base": 1.2, + "stops": [ + [4, 0.75], + [14, 5.33], + [17, 10.33] + ] + } + } + }, + { + "id": "Road tunnel/Freeway Motorway Highway, ramp or traffic circle/0", + "type": "line", + "source": "esri", + "source-layer": "Road tunnel", + "filter": ["all", ["==", "_symbol", 2], ["!in", "Viz", 3]], + "minzoom": 9, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#2a6b99", + "line-opacity": 0.5, + "line-width": { + "base": 1.2, + "stops": [ + [9, 0.75], + [14, 2.7], + [17, 4.7] + ] + } + } + }, + { + "id": "Boundary line/Disputed admin5", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 11], ["!in", "Viz", 3]], + "minzoom": 16, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#847689", "line-width": 1.2, "line-dasharray": [6, 3] } + }, + { + "id": "Boundary line/Disputed admin4", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 10], ["!in", "Viz", 3]], + "minzoom": 16, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#847689", "line-width": 1.2, "line-dasharray": [6, 3] } + }, + { + "id": "Boundary line/Disputed admin3", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 9], ["!in", "Viz", 3]], + "minzoom": 16, + "layout": { "line-join": "round" }, + "paint": { "line-color": "#847689", "line-width": 1.2, "line-dasharray": [6, 3] } + }, + { + "id": "Boundary line/Disputed admin2", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 8], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#847689", + "line-width": { + "base": 1.2, + "stops": [ + [10, 1.33], + [14, 1.6] + ] + }, + "line-dasharray": [6, 3] + } + }, + { + "id": "Boundary line/Disputed admin1", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 7], ["!in", "Viz", 3]], + "minzoom": 3, + "layout": { "line-join": "round" }, + "paint": { + "line-color": { + "stops": [ + [1, "#625866"], + [8, "#847689"] + ] + }, + "line-dasharray": [6, 3], + "line-width": { + "base": 1.2, + "stops": [ + [3, 0.75], + [10, 1.33], + [14, 1.6] + ] + } + } + }, + { + "id": "Boundary line/Disputed admin0", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 6], ["!in", "Viz", 3], ["!in", "DisputeID", 8, 16, 90, 96, 0]], + "minzoom": 1, + "layout": { "line-join": "round" }, + "paint": { + "line-color": { + "stops": [ + [1, "#625866"], + [5, "#847689"] + ] + }, + "line-width": { + "base": 1.2, + "stops": [ + [4, 0.75], + [8, 1.5], + [14, 1.6] + ] + }, + "line-dasharray": [6, 3] + } + }, + { + "id": "Boundary line/Admin2/casing", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 2], ["!in", "Viz", 3]], + "minzoom": 8, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#2a2a28", + "line-width": { + "base": 1.2, + "stops": [ + [8, 1.33], + [14, 2.7] + ] + } + } + }, + { + "id": "Boundary line/Admin1/casing", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": "#13111A", + "line-width": { + "base": 1.2, + "stops": [ + [8, 5], + [14, 8] + ] + } + } + }, + { + "id": "Boundary line/Admin0/casing", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 0], ["!in", "Viz", 3]], + "minzoom": 4, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-width": { + "base": 1.2, + "stops": [ + [4, 4.33], + [14, 9.33], + [17, 9.33] + ] + } + } + }, + { + "id": "Boundary line/Admin5", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 5], ["!in", "Viz", 3]], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#7e5c8c", "line-width": 1.33, "line-dasharray": [6.5, 4] } + }, + { + "id": "Boundary line/Admin4", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 4], ["!in", "Viz", 3]], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#7e5c8c", "line-width": 1.33, "line-dasharray": [6.5, 4] } + }, + { + "id": "Boundary line/Admin3", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 3], ["!in", "Viz", 3]], + "minzoom": 16, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { "line-color": "#7e5c8c", "line-width": 1.33, "line-dasharray": [6.5, 4] } + }, + { + "id": "Boundary line/Admin2/line", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 2], ["!in", "Viz", 3]], + "minzoom": 8, + "layout": { "line-join": "round" }, + "paint": { + "line-color": "#7E5C8C", + "line-dasharray": [8, 7], + "line-width": { + "base": 1.2, + "stops": [ + [8, 0.5], + [14, 1.33], + [18, 1.5] + ] + } + } + }, + { + "id": "Boundary line/Admin1/line", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 1], ["!in", "Viz", 3]], + "minzoom": 3, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": { + "stops": [ + [3, "#383240"], + [4, "#5a5066"], + [8, "#726480"] + ] + }, + "line-width": { + "base": 1.2, + "stops": [ + [6, 0.75], + [14, 1.33], + [17, 1.33] + ] + } + } + }, + { + "id": "Boundary line/Admin0/line", + "type": "line", + "source": "esri", + "source-layer": "Boundary line", + "filter": ["all", ["==", "_symbol", 0], ["!in", "Viz", 3]], + "minzoom": 1, + "layout": { "line-cap": "round", "line-join": "round" }, + "paint": { + "line-color": { + "stops": [ + [1, "#716480"], + [5, "#887899"], + [8, "#9f8cb3"] + ] + }, + "line-width": { + "base": 1.2, + "stops": [ + [1, 0.75], + [8, 1.5], + [17, 2] + ] + } + } + }, + { + "id": "Ferry/label/Ferry", + "type": "symbol", + "source": "esri", + "source-layer": "Ferry/label", + "filter": ["all", ["==", "_label_class", 0], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.5, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 30 + }, + "paint": { "text-color": "#5785B3", "text-halo-color": "#2A2A28", "text-halo-width": 1 } + }, + { + "id": "Water point/Stream or river", + "type": "symbol", + "source": "esri", + "source-layer": "Water point", + "filter": ["==", "_label_class", 3], + "minzoom": 9, + "layout": { + "icon-image": "Water point", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-size": 11.3, + "text-letter-spacing": 0.01, + "text-max-width": 5, + "text-field": "{_name_global}", + "text-padding": 15 + }, + "paint": { "text-color": "#5C9BD9", "text-halo-blur": 1, "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Water point/Lake or reservoir", + "type": "symbol", + "source": "esri", + "source-layer": "Water point", + "filter": ["==", "_label_class", 2], + "minzoom": 9, + "layout": { + "icon-image": "Water point", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-size": 11.3, + "text-letter-spacing": 0.01, + "text-max-width": 5, + "text-field": "{_name_global}", + "text-padding": 15 + }, + "paint": { "text-color": "#5C9BD9", "text-halo-blur": 1, "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Water point/Bay or inlet", + "type": "symbol", + "source": "esri", + "source-layer": "Water point", + "filter": ["==", "_label_class", 1], + "minzoom": 9, + "layout": { + "icon-image": "Water point", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-size": 12, + "text-letter-spacing": 0.15, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 15 + }, + "paint": { "text-color": "#5C9BD9", "text-halo-blur": 1, "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Water point/Sea or ocean", + "type": "symbol", + "source": "esri", + "source-layer": "Water point", + "filter": ["==", "_label_class", 0], + "minzoom": 9, + "layout": { + "icon-image": "Water point", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-letter-spacing": 0.1, + "text-max-width": 7, + "text-field": "{_name_global}", + "text-padding": 15 + }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Water point/Canal or ditch", + "type": "symbol", + "source": "esri", + "source-layer": "Water point", + "filter": ["==", "_label_class", 4], + "minzoom": 11, + "layout": { + "icon-image": "Water point", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-size": 10, + "text-letter-spacing": 0.01, + "text-max-width": 5, + "text-field": "{_name_global}", + "text-padding": 15 + }, + "paint": { "text-color": "#5C9BD9", "text-halo-blur": 1, "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Water point/Island", + "type": "symbol", + "source": "esri", + "source-layer": "Water point", + "filter": ["==", "_label_class", 7], + "minzoom": 11, + "layout": { + "icon-image": "Water point", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-size": 10.67, + "text-letter-spacing": 0.05, + "text-max-width": 5, + "text-field": "{_name_global}", + "text-padding": 15 + }, + "paint": { "text-color": "#96968C", "text-halo-blur": 1, "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Water line/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Water line/label", + "minzoom": 12, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Italic"], + "text-size": 10, + "text-letter-spacing": 0.07, + "text-max-width": 8, + "text-max-angle": 30, + "text-field": "{_name_global}", + "text-offset": [0, -0.5] + }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Marine park/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Marine park/label", + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#5C9BAA" } + }, + { + "id": "Water area/label/Canal or ditch", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 2], + "minzoom": 11, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Italic"], + "text-size": 10, + "text-letter-spacing": 0.01, + "text-max-width": 5, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#5C9BD9", "text-halo-color": "#000f1a", "text-halo-width": 1 } + }, + { + "id": "Water area/label/Small river", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 7], + "minzoom": 11, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Italic"], + "text-size": 11.33, + "text-letter-spacing": 0.01, + "text-max-width": 5, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#5C9BD9", "text-halo-color": "#000f1a", "text-halo-width": 1 } + }, + { + "id": "Water area/label/Large river", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 4], + "minzoom": 11, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Italic"], + "text-size": 13.33, + "text-letter-spacing": 0.01, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#5C9BD9", "text-halo-color": "#000f1a", "text-halo-width": 1 } + }, + { + "id": "Water area/label/Small lake or reservoir", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 6], + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 11.33, "text-letter-spacing": 0.01, "text-max-width": 5, "text-field": "{_name_global}" }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Water area/label/Large lake or reservoir", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 3], + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 13.33, "text-letter-spacing": 0.01, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Water area/label/Bay or inlet", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 1], + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 12, "text-letter-spacing": 0.15, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Water area/label/Small island", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 0], + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 10.67, "text-letter-spacing": 0.05, "text-max-width": 5, "text-field": "{_name_global}" }, + "paint": { "text-color": "#96968C" } + }, + { + "id": "Water area/label/Large island", + "type": "symbol", + "source": "esri", + "source-layer": "Water area/label", + "filter": ["==", "_label_class", 5], + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 13.33, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#96968C" } + }, + { + "id": "Water area large scale/label/River", + "type": "symbol", + "source": "esri", + "source-layer": "Water area large scale/label", + "filter": ["==", "_label_class", 1], + "minzoom": 7, + "maxzoom": 11, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Italic"], + "text-size": 9.33, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#5C9BD9", "text-halo-color": "#000f1a", "text-halo-width": 1 } + }, + { + "id": "Water area large scale/label/Lake or lake intermittent", + "type": "symbol", + "source": "esri", + "source-layer": "Water area large scale/label", + "filter": ["==", "_label_class", 0], + "minzoom": 7, + "maxzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 9.33, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name}", "visibility": "none" }, + "paint": { "text-color": "#5C9BD9", "text-halo-color": "#000f1a", "text-halo-width": 1 } + }, + { + "id": "Water area medium scale/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Water area medium scale/label", + "minzoom": 5, + "maxzoom": 7, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 9.33, "text-max-width": 5, "text-field": "{_name}", "text-letter-spacing": 0.05, "visibility": "none" }, + "paint": { "text-color": "#5C9BD9", "text-halo-color": "#000f1a", "text-halo-width": 1 } + }, + { + "id": "Water area small scale/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Water area small scale/label", + "minzoom": 1, + "maxzoom": 5, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 9.33, "text-letter-spacing": 0.05, "text-max-width": 5, "text-field": "{_name}", "visibility": "none" }, + "paint": { "text-color": "#5C9BD9", "text-halo-color": "#000f1a", "text-halo-width": 1 } + }, + { + "id": "Marine area/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Marine area/label", + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 10, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#497AAB" } + }, + { + "id": "Marine waterbody/label/small", + "type": "symbol", + "source": "esri", + "source-layer": "Marine waterbody/label", + "filter": ["==", "_label_class", 4], + "minzoom": 1, + "maxzoom": 10, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.1, "text-max-width": 6, "text-field": "{_name}", "text-padding": 15 }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Marine waterbody/label/medium", + "type": "symbol", + "source": "esri", + "source-layer": "Marine waterbody/label", + "filter": ["==", "_label_class", 3], + "minzoom": 1, + "maxzoom": 10, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 10, "text-letter-spacing": 0.1, "text-max-width": 6, "text-field": "{_name}", "text-padding": 15 }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Marine waterbody/label/large", + "type": "symbol", + "source": "esri", + "source-layer": "Marine waterbody/label", + "filter": ["==", "_label_class", 2], + "minzoom": 1, + "maxzoom": 10, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Italic"], "text-size": 11, "text-letter-spacing": 0.1, "text-max-width": 6, "text-field": "{_name}", "text-padding": 15 }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Marine waterbody/label/x large", + "type": "symbol", + "source": "esri", + "source-layer": "Marine waterbody/label", + "filter": ["==", "_label_class", 1], + "minzoom": 1, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Italic"], + "text-size": 11, + "text-letter-spacing": 0.1, + "text-max-width": 6, + "text-field": "{_name}", + "text-padding": 15, + "visibility": "none" + }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Marine waterbody/label/2x large", + "type": "symbol", + "source": "esri", + "source-layer": "Marine waterbody/label", + "filter": ["==", "_label_class", 0], + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Italic"], + "text-size": { + "stops": [ + [0, 10], + [1, 12] + ] + }, + "text-letter-spacing": 0.1, + "text-max-width": 6, + "text-field": "{_name}", + "text-padding": 15 + }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Ferry/label/Rail ferry", + "type": "symbol", + "source": "esri", + "source-layer": "Ferry/label", + "filter": ["all", ["==", "_label_class", 1], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-offset": [0, -0.6] + }, + "paint": { "text-color": "#95BDE6", "text-halo-color": "#2A2A28", "text-halo-width": 1 } + }, + { + "id": "Railroad/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Railroad/label", + "minzoom": 14, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-offset": [0, -0.6] + }, + "paint": { "text-color": "#95BDE6", "text-halo-color": "#2A2A28", "text-halo-width": 1.5 } + }, + { + "id": "Trail or path/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Trail or path/label", + "minzoom": 15, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": 9.33, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#2A2A28", "text-halo-width": 1 } + }, + { + "id": "Road tunnel/label/Pedestrian", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 6], ["!in", "Viz", 3]], + "minzoom": 15, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#bfbdbb", "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Road tunnel/label/Local", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 5], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Regular"], + "text-size": { + "stops": [ + [12, 9], + [14, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#262624", "text-halo-width": 1.5 } + }, + { + "id": "Road tunnel/label/Minor", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 4], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Road tunnel/label/Major, alt name", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 3], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Road tunnel/label/Major", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 2], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Road tunnel/label/Freeway Motorway, alt name", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 1], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Road tunnel/label/Highway", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 7], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Road tunnel/label/Freeway Motorway", + "type": "symbol", + "source": "esri", + "source-layer": "Road tunnel/label", + "filter": ["all", ["==", "_label_class", 0], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9DC5F2", "text-halo-color": "#262624" } + }, + { + "id": "Road/label/Rectangle hexagon brown white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 72], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon brown white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle hexagon green white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 70], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon green white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle hexagon red white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 68], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon red white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle hexagon blue white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 66], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon blue white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle hexagon brown white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 71], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon brown white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle hexagon green white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 69], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon green white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle hexagon red white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 67], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon red white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle hexagon blue white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 65], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle hexagon blue white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Octagon green white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 74], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Octagon green white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon orange black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 64], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon orange black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon green white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 62], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon green white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon red white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 60], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon red white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 56], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon green yellow (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 54], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon green yellow (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffff00" } + }, + { + "id": "Road/label/Pentagon green white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 52], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon green white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon yellow black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 50], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon yellow black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon blue white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 48], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon blue white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 46], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.3], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon inverse white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 44], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon inverse white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.3], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle green yellow (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 42], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle green yellow (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffff00" } + }, + { + "id": "Road/label/Rectangle green white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 40], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle green white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle yellow black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 38], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle yellow black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon blue white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 58], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon blue white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle red white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 36], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle red white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle blue white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 34], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle blue white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 32], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30, + "visibility": "none" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/V-shaped white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 30], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/V-shaped white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped blue white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 28], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped blue white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped red white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 26], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped red white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped yellow black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 24], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped yellow black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped green leaf (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 22], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped green leaf (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped white green (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 20], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped white green (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30, + "visibility": "none" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 18], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Secondary Hwy red white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 16], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Secondary Hwy red white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Secondary Hwy green white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 14], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Secondary Hwy green white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Secondary Hwy white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 12], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Secondary Hwy white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30, + "visibility": "none" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Shield white black (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 10], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Shield white black (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Shield blue white (Alt)", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 8], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Shield blue white (Alt)/{_len}", + "icon-rotation-alignment": "viewport", + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Octagon green white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 73], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Octagon green white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon orange black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 63], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon orange black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon green white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 61], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon green white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon red white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 59], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon red white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 55], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon white black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon green yellow", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 53], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon green yellow/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffff00" } + }, + { + "id": "Road/label/Pentagon green white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 51], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon green white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon yellow black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 49], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon yellow black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon blue white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 47], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon blue white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 45], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon white black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.3], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Pentagon inverse white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 43], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Pentagon inverse white black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.3], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle green yellow", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 41], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle green yellow/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffff00" } + }, + { + "id": "Road/label/Rectangle green white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 39], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle green white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle yellow black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 37], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle yellow black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Hexagon blue white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 57], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.3, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Hexagon blue white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle red white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 35], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle red white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle blue white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 33], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle blue white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Rectangle white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 31], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Rectangle white black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.2], + "text-rotation-alignment": "viewport", + "text-padding": 30, + "visibility": "none" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/V-shaped white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 29], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/V-shaped white black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped blue white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 27], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped blue white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped red white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 25], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped red white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped yellow black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 23], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.02, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped yellow black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped green leaf", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 21], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped green leaf/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped white green", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 19], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped white green/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30, + "visibility": "none" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/U-shaped white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 17], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/U-shaped white black/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Secondary Hwy red white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 15], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 8.67, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Secondary Hwy red white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30 + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Secondary Hwy green white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 13], ["!in", "Viz", 3]], + "minzoom": 6, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-max-width": 8, + "text-field": "{_name}", + "icon-image": "Road/Secondary Hwy green white/{_len}", + "icon-rotation-alignment": "viewport", + "text-offset": [0, 0.1], + "text-rotation-alignment": "viewport", + "text-padding": 30, + "visibility": "none" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Secondary Hwy white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 11], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { + "text-size": 8.67, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-padding": 30, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport", + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-offset": [0, 0.1], + "text-field": "{_name}", + "icon-image": "Road/Secondary Hwy white black/{_len}" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Shield white black", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 9], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { + "text-size": 9.33, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-padding": 30, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport", + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-field": "{_name}", + "icon-image": "Road/Shield white black/{_len}" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Road/label/Shield blue white", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 7], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { + "text-size": 8.67, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-padding": 30, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport", + "symbol-placement": "line", + "symbol-avoid-edges": true, + "text-field": "{_name}", + "icon-image": "Road/Shield blue white/{_len}" + }, + "paint": { "text-color": "#ffffff" } + }, + { + "id": "Pedestrian/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Pedestrian/label", + "minzoom": 15, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 9.33, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#bfbdbb", "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Road/label/Pedestrian", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 6], ["!in", "Viz", 3]], + "minzoom": 15, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Regular"], + "text-size": 9.33, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#bfbdbb", "text-halo-color": "#2a2a28", "text-halo-width": 1 } + }, + { + "id": "Road/label/Local", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 5], ["!in", "Viz", 3]], + "minzoom": 12, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Regular"], + "text-size": { + "stops": [ + [12, 9], + [14, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { + "text-color": { + "stops": [ + [12, "#9dc5f2"], + [13, "#a5d0ff"] + ] + }, + "text-halo-color": "#262624", + "text-halo-width": 1.5 + } + }, + { + "id": "Road/label/Minor", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 4], ["!in", "Viz", 3]], + "minzoom": 11, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9dc5f2", "text-halo-color": "#262624", "text-halo-width": 1.5 } + }, + { + "id": "Road/label/Major, alt name", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 3], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name}" + }, + "paint": { "text-color": "#9dc5f2", "text-halo-color": "#262624", "text-halo-width": 1.5 } + }, + { + "id": "Road/label/Major", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 2], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9dc5f2", "text-halo-color": "#262624", "text-halo-width": 1.5 } + }, + { + "id": "Road/label/Freeway Motorway, alt name", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 1], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name}" + }, + "paint": { "text-color": "#9dc5f2", "text-halo-color": "#262624", "text-halo-width": 1.5 } + }, + { + "id": "Road/label/Highway", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 75], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9dc5f2", "text-halo-color": "#262624", "text-halo-width": 1.5 } + }, + { + "id": "Road/label/Freeway Motorway", + "type": "symbol", + "source": "esri", + "source-layer": "Road/label", + "filter": ["all", ["==", "_label_class", 0], ["!in", "Viz", 3]], + "minzoom": 10, + "layout": { + "symbol-placement": "line", + "symbol-avoid-edges": true, + "symbol-spacing": 1000, + "text-font": ["Arial Bold"], + "text-size": { + "stops": [ + [10, 9], + [12, 10.67] + ] + }, + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#9dc5f2", "text-halo-color": "#262624", "text-halo-width": 1.5 } + }, + { + "id": "Cemetery/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Cemetery/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Freight/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Freight/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Water and wastewater/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Water and wastewater/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Port/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Port/label", + "minzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-transform": "uppercase", + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}" + }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Industry/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Industry/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Government/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Government/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Finance/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Finance/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Emergency/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Emergency/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Indigenous/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Indigenous/label", + "minzoom": 7, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}", "visibility": "none" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Military/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Military/label", + "minzoom": 6, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 25, + "visibility": "none" + }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Transportation/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Transportation/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Beach/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Beach/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 9.33, "text-letter-spacing": 0.08, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Golf course/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Golf course/label", + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Zoo/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Zoo/label", + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Retail/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Retail/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Landmark/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Landmark/label", + "minzoom": 13, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Openspace or forest/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Openspace or forest/label", + "minzoom": 9, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}", "visibility": "none" }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Park or farming/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Park or farming/label", + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}", "text-padding": 25 }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Point of interest/Park", + "type": "symbol", + "source": "esri", + "source-layer": "Point of interest", + "filter": ["==", "_label_class", 1], + "minzoom": 9, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.08, "text-max-width": 8, "text-field": "{_name_global}", "visibility": "none" }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Education/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Education/label", + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Medical/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Medical/label", + "minzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.05, "text-max-width": 8, "text-field": "{_name_global}" }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin1 forest or park/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Admin1 forest or park/label", + "minzoom": 9, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 25, + "visibility": "none" + }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin0 forest or park/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Admin0 forest or park/label", + "minzoom": 6, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 25, + "visibility": "none" + }, + "paint": { "text-color": "#6a9963", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Airport/label/Airport property", + "type": "symbol", + "source": "esri", + "source-layer": "Airport/label", + "minzoom": 9, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": 10.67, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 15 + }, + "paint": { "text-color": "#a6a664", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Exit/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Exit", + "minzoom": 15, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Bold"], + "text-size": 12, + "text-letter-spacing": 0.05, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-rotation-alignment": "viewport" + }, + "paint": { "text-color": "#6eff24", "text-halo-blur": 1.3, "text-halo-color": "#000000", "text-halo-width": 1 } + }, + { + "id": "Point of interest/Bus station", + "type": "symbol", + "source": "esri", + "source-layer": "Point of interest", + "filter": ["==", "_symbol", 2], + "minzoom": 9, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "Point of interest/Bus station", + "icon-allow-overlap": true, + "icon-padding": 1, + "icon-size": { + "stops": [ + [13, 0.85], + [16, 1.3] + ] + }, + "text-font": ["Arial Regular"], + "text-size": 10.67, + "text-anchor": "bottom", + "text-letter-spacing": 0.04, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-offset": [0, -0.9] + }, + "paint": { + "text-color": { + "stops": [ + [11, "#80804d"], + [12, "#a6a664"] + ] + }, + "text-halo-color": "#262624", + "text-halo-width": 1 + } + }, + { + "id": "Point of interest/Rail station", + "type": "symbol", + "source": "esri", + "source-layer": "Point of interest", + "filter": ["==", "_symbol", 3], + "minzoom": 9, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "Point of interest/Rail station", + "icon-allow-overlap": true, + "icon-padding": 1, + "icon-size": { + "stops": [ + [13, 0.85], + [16, 1.3] + ] + }, + "text-font": ["Arial Regular"], + "text-size": 10.67, + "text-anchor": "bottom", + "text-letter-spacing": 0.04, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-offset": [0, -0.9] + }, + "paint": { + "text-color": { + "stops": [ + [11, "#80804d"], + [12, "#a6a664"] + ] + }, + "text-halo-color": "#262624", + "text-halo-width": 1 + } + }, + { + "id": "Point of interest/General", + "type": "symbol", + "source": "esri", + "source-layer": "Point of interest", + "filter": ["==", "_label_class", 0], + "minzoom": 9, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 10, "text-letter-spacing": 0.08, "text-max-width": 8, "text-field": "{_name_global}", "text-padding": 15 }, + "paint": { + "text-color": { + "stops": [ + [11, "#80804d"], + [12, "#a6a664"] + ] + }, + "text-halo-color": "#262624", + "text-halo-width": 1 + } + }, + { + "id": "Admin2 area/label/small", + "type": "symbol", + "source": "esri", + "source-layer": "Admin2 area/label", + "filter": ["==", "_label_class", 1], + "minzoom": 8, + "maxzoom": 11, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-size": { + "stops": [ + [8, 10], + [10, 12] + ] + }, + "text-max-width": 9, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#716480", "text-halo-width": 1, "text-halo-color": "#262624" } + }, + { + "id": "Admin2 area/label/large", + "type": "symbol", + "source": "esri", + "source-layer": "Admin2 area/label", + "filter": ["==", "_label_class", 0], + "minzoom": 8, + "maxzoom": 11, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 12, "text-max-width": 8, "text-field": "{_name}" }, + "paint": { "text-color": "#716480", "text-halo-width": 1, "text-halo-color": "#262624" } + }, + { + "id": "Admin1 area/label/x small", + "type": "symbol", + "source": "esri", + "source-layer": "Admin1 area/label", + "filter": ["==", "_label_class", 5], + "minzoom": 6, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [6, 9], + [9, 11] + ] + } + }, + "paint": { "text-color": "#9378a6", "text-halo-width": 1, "text-halo-color": "#262624" } + }, + { + "id": "Admin1 area/label/small", + "type": "symbol", + "source": "esri", + "source-layer": "Admin1 area/label", + "filter": ["==", "_label_class", 4], + "minzoom": 6, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [6, 10], + [9, 12] + ] + } + }, + "paint": { "text-color": "#9378a6", "text-halo-width": 1, "text-halo-color": "#262624" } + }, + { + "id": "Admin1 area/label/medium", + "type": "symbol", + "source": "esri", + "source-layer": "Admin1 area/label", + "filter": ["==", "_label_class", 3], + "minzoom": 6, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [6, 12], + [9, 14] + ] + } + }, + "paint": { "text-color": "#9378a6", "text-halo-width": 1, "text-halo-color": "#262624" } + }, + { + "id": "Admin1 area/label/large", + "type": "symbol", + "source": "esri", + "source-layer": "Admin1 area/label", + "filter": ["==", "_label_class", 2], + "minzoom": 4, + "maxzoom": 10, + "layout": { + "text-size": { + "stops": [ + [3, 9], + [6, 12.5], + [8, 14.5] + ] + }, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-letter-spacing": 0.1, + "symbol-avoid-edges": true, + "text-field": "{_name}" + }, + "paint": { "text-color": "#9378a6", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin1 area/label/x large", + "type": "symbol", + "source": "esri", + "source-layer": "Admin1 area/label", + "filter": ["==", "_label_class", 1], + "minzoom": 4, + "maxzoom": 10, + "layout": { + "text-size": { + "stops": [ + [3, 9], + [6, 12.5], + [8, 14.5] + ] + }, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-letter-spacing": 0.1, + "symbol-avoid-edges": true, + "text-field": "{_name}" + }, + "paint": { "text-color": "#9378a6", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin1 area/label/2x large", + "type": "symbol", + "source": "esri", + "source-layer": "Admin1 area/label", + "filter": ["==", "_label_class", 0], + "minzoom": 3, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [3, 9], + [6, 12.5], + [8, 14.5] + ] + }, + "text-letter-spacing": 0.1 + }, + "paint": { "text-color": "#9378a6", "text-halo-width": 1, "text-halo-color": "#262624" } + }, + { + "id": "Admin0 point/x small", + "type": "symbol", + "source": "esri", + "source-layer": "Admin0 point", + "filter": ["==", "_label_class", 5], + "minzoom": 5, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.15, + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [5, 8], + [9, 11] + ] + }, + "text-transform": "uppercase" + }, + "paint": { "text-color": "#bb93d9", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin0 point/small", + "type": "symbol", + "source": "esri", + "source-layer": "Admin0 point", + "filter": ["==", "_label_class", 4], + "minzoom": 4, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.15, + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [4, 8], + [9, 11] + ] + }, + "text-transform": "uppercase" + }, + "paint": { "text-color": "#bb93d9", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin0 point/medium", + "type": "symbol", + "source": "esri", + "source-layer": "Admin0 point", + "filter": ["==", "_label_class", 3], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.15, + "text-max-width": 6, + "text-field": "{_name}", + "text-size": { + "stops": [ + [2, 9], + [9, 12] + ] + }, + "text-transform": "uppercase" + }, + "paint": { "text-color": "#bb93d9", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin0 point/large", + "type": "symbol", + "source": "esri", + "source-layer": "Admin0 point", + "filter": ["==", "_label_class", 2], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Regular"], + "text-letter-spacing": 0.15, + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [2, 10], + [9, 13] + ] + }, + "text-transform": "uppercase" + }, + "paint": { "text-color": "#bb93d9", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin0 point/x large", + "type": "symbol", + "source": "esri", + "source-layer": "Admin0 point", + "filter": ["==", "_label_class", 1], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Bold"], + "text-letter-spacing": 0.25, + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [2, 10], + [9, 16] + ] + }, + "text-transform": "uppercase" + }, + "paint": { "text-color": "#bb93d9", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Admin0 point/2x large", + "type": "symbol", + "source": "esri", + "source-layer": "Admin0 point", + "filter": ["==", "_label_class", 0], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "text-font": ["Arial Bold"], + "text-letter-spacing": 0.25, + "text-max-width": 8, + "text-field": "{_name}", + "text-size": { + "stops": [ + [2, 12], + [8, 17] + ] + }, + "text-transform": "uppercase" + }, + "paint": { "text-color": "#bb93d9", "text-halo-color": "#262624", "text-halo-width": 1 } + }, + { + "id": "Neighborhood", + "type": "symbol", + "source": "esri", + "source-layer": "Neighborhood", + "minzoom": 14, + "maxzoom": 17, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "Neighborhood", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 8, + "text-transform": "uppercase", + "text-anchor": "bottom-left", + "text-letter-spacing": 0.25, + "text-max-width": 8.5, + "text-field": "{_name_global}", + "text-padding": 1 + }, + "paint": { "text-color": "#bebebe", "text-halo-width": 1.33, "text-halo-color": "#262624" } + }, + { + "id": "City large scale/town small", + "type": "symbol", + "source": "esri", + "source-layer": "City large scale", + "filter": ["==", "_label_class", 5], + "minzoom": 10, + "maxzoom": 17, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City large scale", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-anchor": "bottom-left", + "text-letter-spacing": 0.08, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 1 + }, + "paint": { + "text-color": { + "stops": [ + [10, "#8c8c8c"], + [11, "#a5a5a5"], + [12, "#bebebe"] + ] + }, + "text-halo-width": 1.33, + "text-halo-color": "#262624" + } + }, + { + "id": "City large scale/town large", + "type": "symbol", + "source": "esri", + "source-layer": "City large scale", + "filter": ["==", "_label_class", 4], + "minzoom": 10, + "maxzoom": 17, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City large scale", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-letter-spacing": 0.09, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 1 + }, + "paint": { "text-color": "#bebebe", "text-halo-width": 1.33, "text-halo-color": "#262624" } + }, + { + "id": "City large scale/small", + "type": "symbol", + "source": "esri", + "source-layer": "City large scale", + "filter": ["==", "_label_class", 3], + "minzoom": 10, + "maxzoom": 17, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City large scale", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 12, + "text-anchor": "bottom-left", + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 1 + }, + "paint": { "text-color": "#bebebe", "text-halo-width": 1.33, "text-halo-color": "#262624" } + }, + { + "id": "City large scale/medium", + "type": "symbol", + "source": "esri", + "source-layer": "City large scale", + "filter": ["==", "_label_class", 2], + "minzoom": 10, + "maxzoom": 17, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City large scale", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 12, + "text-anchor": "bottom-left", + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 1 + }, + "paint": { "text-color": "#bebebe", "text-halo-width": 1.33, "text-halo-color": "#262624" } + }, + { + "id": "City large scale/large", + "type": "symbol", + "source": "esri", + "source-layer": "City large scale", + "filter": ["==", "_label_class", 1], + "minzoom": 10, + "maxzoom": 17, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City large scale", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Bold"], + "text-size": 12, + "text-anchor": "bottom-left", + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 1 + }, + "paint": { "text-color": "#bebebe", "text-halo-width": 1.33, "text-halo-color": "#262624" } + }, + { + "id": "City large scale/x large", + "type": "symbol", + "source": "esri", + "source-layer": "City large scale", + "filter": ["==", "_label_class", 0], + "minzoom": 10, + "maxzoom": 17, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City large scale", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Bold"], + "text-size": 13.5, + "text-anchor": "bottom-left", + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name_global}", + "text-padding": 1 + }, + "paint": { "text-color": "#bebebe", "text-halo-width": 1.33, "text-halo-color": "#262624" } + }, + { + "id": "City small scale/town small non capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 17], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "visibility": "none", + "text-size": 10, + "text-font": ["Arial Regular"], + "text-max-width": 8, + "text-justify": "left", + "icon-allow-overlap": true, + "symbol-avoid-edges": true, + "text-anchor": "bottom-left", + "text-field": "{_name}", + "icon-image": "City small scale/town small non capital" + }, + "paint": { "text-color": "#969696", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/town large non capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 15], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/town large non capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/small non capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 12], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/small non capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/medium non capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 9], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/medium non capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/other capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 18], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/other capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/town large other capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 14], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/town large other capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/small other capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 11], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/small other capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/medium other capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 8], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/medium other capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/town small admin0 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 16], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/town small admin0 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/town large admin0 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 13], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/town large admin0 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/small admin0 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 10], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/small admin0 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/medium admin0 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 7], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/medium admin0 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Bold"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/large other capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 5], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/large other capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/x large admin2 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 2], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/x large admin2 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 12, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/large non capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 6], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/large non capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Bold"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/large admin0 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 4], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/large admin0 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Bold"], + "text-size": 10.5, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#aaaaaa", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/x large non capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 3], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/x large non capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Bold"], + "text-size": 12, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#c0c0c0", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/x large admin1 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 1], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/x large admin1 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": 12, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { "text-color": "#c0c0c0", "text-halo-color": "#262624", "text-halo-width": 1.33 } + }, + { + "id": "City small scale/x large admin0 capital", + "type": "symbol", + "source": "esri", + "source-layer": "City small scale", + "filter": ["==", "_symbol", 0], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "City small scale/x large admin0 capital", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Bold"], + "text-size": 12, + "text-anchor": "bottom-left", + "text-justify": "left", + "text-max-width": 8, + "text-field": "{_name}", + "visibility": "none" + }, + "paint": { + "text-color": { + "stops": [ + [4, "#aaaaaa"], + [5, "#c0c0c0"] + ] + }, + "text-halo-color": "#262624", + "text-halo-width": 1.33 + } + }, + { + "id": "Building/label/Default", + "type": "symbol", + "source": "esri", + "source-layer": "Building/label", + "minzoom": 15, + "layout": { "symbol-avoid-edges": true, "text-font": ["Arial Regular"], "text-size": 9.5, "text-letter-spacing": 0.08, "text-max-width": 8, "text-field": "{_name_global}", "text-padding": 20 }, + "paint": { "text-color": "#969696", "text-halo-width": 1, "text-halo-color": "#2A2A28" } + }, + { + "id": "Continent", + "type": "symbol", + "source": "esri", + "source-layer": "Continent", + "minzoom": 0, + "maxzoom": 2, + "layout": { + "symbol-avoid-edges": true, + "icon-image": "Continent", + "icon-allow-overlap": true, + "icon-padding": 1, + "text-font": ["Arial Regular"], + "text-size": { + "stops": [ + [0, 8.5], + [1, 11.5] + ] + }, + "text-letter-spacing": 0.35, + "text-max-width": 8, + "text-line-height": 1.75, + "text-field": "{_name_global}", + "text-transform": "uppercase", + "visibility": "none" + }, + "paint": { "text-color": "#cccccc" } + }, + { + "id": "Disputed label point/Island", + "type": "symbol", + "source": "esri", + "source-layer": "Disputed label point", + "filter": ["all", ["==", "_label_class", 1], ["in", "DisputeID", 0]], + "minzoom": 11, + "layout": { + "icon-image": "Disputed label point", + "icon-allow-overlap": true, + "text-font": ["Arial Regular"], + "text-size": 10.5, + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name}", + "text-optional": true + }, + "paint": { "text-color": "#96968C" } + }, + { + "id": "Disputed label point/Waterbody", + "type": "symbol", + "source": "esri", + "source-layer": "Disputed label point", + "filter": ["all", ["==", "_label_class", 0], ["in", "DisputeID", 1006]], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "icon-image": "Disputed label point", + "icon-allow-overlap": true, + "text-font": ["Arial Italic"], + "text-size": 10.5, + "text-letter-spacing": 0.1, + "text-max-width": 7, + "text-field": "{_name}", + "text-optional": true + }, + "paint": { "text-color": "#5C9BD9" } + }, + { + "id": "Disputed label point/Admin0", + "type": "symbol", + "source": "esri", + "source-layer": "Disputed label point", + "filter": ["all", ["==", "_label_class", 2], ["in", "DisputeID", 1021]], + "minzoom": 2, + "maxzoom": 10, + "layout": { + "icon-image": "Disputed label point", + "icon-allow-overlap": true, + "text-font": ["Arial Regular"], + "text-size": { + "stops": [ + [2, 9], + [8, 11.5] + ] + }, + "text-letter-spacing": 0.1, + "text-max-width": 8, + "text-field": "{_name}", + "text-transform": "uppercase", + "text-optional": true + }, + "paint": { "text-color": "#bb93d9", "text-halo-color": "#262624", "text-halo-width": 1 } + } + ], + "metadata": { + "arcgisStyleUrl": "https://www.arcgis.com/sharing/rest/content/items/77cdce3e37204a06be9da9572e892fde/resources/styles/root.json", + "arcgisOriginalItemTitle": "World Street Map Canvas (Night)", + "arcgisQuickEditorWarning": true, + "arcgisEditorExtents": [ + { "spatialReference": { "wkid": 102100 }, "xmin": -18800994.962717548, "ymin": 4132400.31525453, "xmax": -3303203.608260519, "ymax": 12605308.972426113 }, + { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": -1295782.795658164, "ymin": 5988848.323580071, "xmax": 1267614.5117078347, "ymax": 7417306.365089368 }, + { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": -8655258.605290867, "ymin": 4660747.33454408, "xmax": -8495046.273580492, "ymax": 4750025.962138412 }, + { "spatialReference": { "latestWkid": 3857, "wkid": 102100 }, "xmin": 16829782.370097805, "ymin": -4012773.2826673286, "xmax": 16834789.005463753, "ymax": -4009983.325555006 } + ], + "arcgisMinimapVisibility": true + } +} diff --git a/src/App.js b/src/App.js index f076cfa3..caae88ff 100644 --- a/src/App.js +++ b/src/App.js @@ -65,6 +65,9 @@ const MapApp = (props) => { link.href = icon; }; useEffect(() => { + window.security = []; + helpers.addIsLoaded("security"); + // LISTEN FOR MAP TO MOUNT const mapLoadedListener = () => setMapLoading(false); window.emitter.addListener("mapLoaded", mapLoadedListener); @@ -78,7 +81,7 @@ const MapApp = (props) => { window.app = packageJson.name; window.homepage = packageJson.homepage; window.version = packageJson.version; - helpers.loadConfig(() => { + helpers.loadConfig(undefined, () => { document.title = window.config.title; if (window.config.favicon) changeIcon(window.config.favicon); helpers.addIsLoaded("settings"); diff --git a/src/AppSecure.jsx b/src/AppSecure.jsx new file mode 100644 index 00000000..1a7aeff4 --- /dev/null +++ b/src/AppSecure.jsx @@ -0,0 +1,256 @@ +import React, { useEffect, useState } from "react"; +import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; +import { MsalProvider, MsalAuthenticationTemplate, UnauthenticatedTemplate, useMsal, useIsAuthenticated } from "@azure/msal-react"; +import { PublicClientApplication, InteractionStatus } from "@azure/msal-browser"; +import { msalConfig } from "./authConfig"; +import { ErrorBoundary } from "./ErrorBoundary.jsx"; + +import "./App.css"; +import Header from "./header/Header"; +import Sidebar from "./sidebar/Sidebar"; +import SCMap from "./map/SCMap"; +import "./helpers/SC.css"; +import mainConfig from "./config.json"; +import configSecured from "./config-secured.json"; +import LoadingScreen from "./helpers/LoadingScreen.jsx"; + +import ReactGA from "react-ga4"; +import * as helpers from "./helpers/helpers"; +import { getUserStorage } from "./helpers/storage"; + +import * as helpersEsri from "./helpers/esriHelpers"; +import { get } from "./helpers/api"; +import packageJson from "../package.json"; +import LegendApp from "./legend/App"; +import LayerInfoApp from "./layerInfo/App"; + +const msalInstance = new PublicClientApplication(msalConfig); +await msalInstance.initialize(); +const apiUrl = configSecured.apiUrlSecured; +var securityCalled = false; +window.security = []; +window.isAppSecured = true; + +// SECURED VERSION +document.title = mainConfig.title; + +// GOOGLE ANALYTICS +const enableAnalytics = helpers.getURLParameter("ANALYTICS") !== "off"; +if (mainConfig.googleAnalyticsID !== undefined && mainConfig.googleAnalyticsID !== "" && enableAnalytics) { + ReactGA.initialize(mainConfig.googleAnalyticsID); + ReactGA.send({ hitType: "pageview", page: window.location.pathname + window.location.search }); +} + +const InProgressComponent = ({ inProgress }) => { + return