@unovis/ts 1.1.1-beta.6 → 1.1.1-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (710) hide show
  1. package/declaration.d.ts +1 -0
  2. package/index.ts +1 -0
  3. package/licences.txt +43 -0
  4. package/maps.ts +1 -0
  5. package/package.json +1 -1
  6. package/rollup.config.js +71 -0
  7. package/rules/ts-getter-setter.js +35 -0
  8. package/src/components/area/config.ts +29 -0
  9. package/src/components/area/index.ts +133 -0
  10. package/{components/area/style.js → src/components/area/style.ts} +9 -10
  11. package/src/components/area/types.ts +2 -0
  12. package/src/components/axis/config.ts +76 -0
  13. package/src/components/axis/index.ts +363 -0
  14. package/{components/axis/style.js → src/components/axis/style.ts} +27 -22
  15. package/src/components/axis/types.ts +4 -0
  16. package/src/components/brush/config.ts +51 -0
  17. package/src/components/brush/index.ts +233 -0
  18. package/{components/brush/style.js → src/components/brush/style.ts} +15 -14
  19. package/src/components/brush/types.ts +8 -0
  20. package/src/components/bullet-legend/config.ts +38 -0
  21. package/src/components/bullet-legend/index.ts +104 -0
  22. package/{components/bullet-legend/style.js → src/components/bullet-legend/style.ts} +18 -16
  23. package/src/components/bullet-legend/types.ts +7 -0
  24. package/src/components/chord-diagram/config.ts +53 -0
  25. package/src/components/chord-diagram/index.ts +401 -0
  26. package/src/components/chord-diagram/modules/label.ts +155 -0
  27. package/src/components/chord-diagram/modules/link.ts +91 -0
  28. package/src/components/chord-diagram/modules/node.ts +80 -0
  29. package/{components/chord-diagram/style.js → src/components/chord-diagram/style.ts} +39 -30
  30. package/src/components/chord-diagram/types.ts +68 -0
  31. package/src/components/crosshair/config.ts +48 -0
  32. package/src/components/crosshair/index.ts +220 -0
  33. package/{components/crosshair/style.js → src/components/crosshair/style.ts} +12 -12
  34. package/src/components/crosshair/types.ts +15 -0
  35. package/src/components/donut/config.ts +65 -0
  36. package/src/components/donut/index.ts +148 -0
  37. package/src/components/donut/modules/arc.ts +86 -0
  38. package/{components/donut/style.js → src/components/donut/style.ts} +20 -18
  39. package/src/components/donut/types.ts +17 -0
  40. package/src/components/flow-legend/config.ts +31 -0
  41. package/src/components/flow-legend/index.ts +103 -0
  42. package/{components/flow-legend/style.js → src/components/flow-legend/style.ts} +25 -21
  43. package/src/components/flow-legend/types.ts +10 -0
  44. package/src/components/free-brush/config.ts +54 -0
  45. package/src/components/free-brush/index.ts +207 -0
  46. package/{components/free-brush/style.js → src/components/free-brush/style.ts} +12 -12
  47. package/src/components/free-brush/types.ts +8 -0
  48. package/src/components/graph/config.ts +280 -0
  49. package/src/components/graph/index.ts +809 -0
  50. package/src/components/graph/modules/layout-helpers.ts +96 -0
  51. package/src/components/graph/modules/layout.ts +502 -0
  52. package/src/components/graph/modules/link/helper.ts +105 -0
  53. package/src/components/graph/modules/link/index.ts +302 -0
  54. package/{components/graph/modules/link/style.js → src/components/graph/modules/link/style.ts} +45 -34
  55. package/src/components/graph/modules/node/helper.ts +162 -0
  56. package/src/components/graph/modules/node/index.ts +343 -0
  57. package/{components/graph/modules/node/style.js → src/components/graph/modules/node/style.ts} +72 -52
  58. package/src/components/graph/modules/panel/helper.ts +160 -0
  59. package/src/components/graph/modules/panel/index.ts +137 -0
  60. package/{components/graph/modules/panel/style.js → src/components/graph/modules/panel/style.ts} +42 -32
  61. package/src/components/graph/modules/shape.ts +108 -0
  62. package/src/components/graph/modules/zoom-levels.ts +6 -0
  63. package/src/components/graph/style.ts +72 -0
  64. package/src/components/graph/types.ts +152 -0
  65. package/src/components/grouped-bar/config.ts +40 -0
  66. package/src/components/grouped-bar/index.ts +325 -0
  67. package/{components/grouped-bar/style.js → src/components/grouped-bar/style.ts} +15 -14
  68. package/src/components/leaflet-flow-map/config.ts +60 -0
  69. package/src/components/leaflet-flow-map/index.ts +279 -0
  70. package/src/components/leaflet-flow-map/renderer-utils.ts +14 -0
  71. package/src/components/leaflet-flow-map/renderer.ts +146 -0
  72. package/{components/leaflet-flow-map/shaders.js → src/components/leaflet-flow-map/shaders.ts} +4 -7
  73. package/src/components/leaflet-flow-map/types.ts +18 -0
  74. package/src/components/leaflet-map/config.ts +234 -0
  75. package/src/components/leaflet-map/index.ts +808 -0
  76. package/src/components/leaflet-map/leaflet.css +625 -0
  77. package/src/components/leaflet-map/modules/clusterBackground.ts +34 -0
  78. package/src/components/leaflet-map/modules/donut.ts +37 -0
  79. package/src/components/leaflet-map/modules/map.ts +178 -0
  80. package/src/components/leaflet-map/modules/node.ts +208 -0
  81. package/src/components/leaflet-map/modules/selectionRing.ts +63 -0
  82. package/src/components/leaflet-map/modules/utils.ts +290 -0
  83. package/{components → src/components}/leaflet-map/renderer/leaflet-maplibre-gl.js +76 -78
  84. package/src/components/leaflet-map/renderer/map-style.ts +24 -0
  85. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json +35 -0
  86. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json +35 -0
  87. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json +2185 -0
  88. package/src/components/leaflet-map/renderer/mapboxgl-layer.ts +43 -0
  89. package/src/components/leaflet-map/renderer/mapboxgl-utils.ts +40 -0
  90. package/{components → src/components}/leaflet-map/renderer/maplibre-gl.css.js +2 -4
  91. package/src/components/leaflet-map/style.ts +217 -0
  92. package/src/components/leaflet-map/types.ts +75 -0
  93. package/src/components/line/config.ts +34 -0
  94. package/src/components/line/index.ts +188 -0
  95. package/{components/line/style.js → src/components/line/style.ts} +18 -16
  96. package/src/components/line/types.ts +3 -0
  97. package/src/components/nested-donut/config.ts +75 -0
  98. package/src/components/nested-donut/index.ts +176 -0
  99. package/src/components/nested-donut/modules/arc.ts +78 -0
  100. package/src/components/nested-donut/modules/label.ts +63 -0
  101. package/src/components/nested-donut/style.ts +82 -0
  102. package/src/components/nested-donut/types.ts +29 -0
  103. package/src/components/sankey/config.ts +195 -0
  104. package/src/components/sankey/index.ts +387 -0
  105. package/src/components/sankey/modules/label.ts +228 -0
  106. package/src/components/sankey/modules/link.ts +141 -0
  107. package/src/components/sankey/modules/node.ts +221 -0
  108. package/{components/sankey/style.js → src/components/sankey/style.ts} +60 -44
  109. package/src/components/sankey/types.ts +95 -0
  110. package/src/components/scatter/config.ts +49 -0
  111. package/src/components/scatter/index.ts +220 -0
  112. package/src/components/scatter/modules/point.ts +123 -0
  113. package/src/components/scatter/modules/utils.ts +150 -0
  114. package/{components/scatter/style.js → src/components/scatter/style.ts} +15 -14
  115. package/src/components/scatter/types.ts +21 -0
  116. package/src/components/stacked-bar/config.ts +42 -0
  117. package/src/components/stacked-bar/index.ts +267 -0
  118. package/{components/stacked-bar/style.js → src/components/stacked-bar/style.ts} +15 -14
  119. package/src/components/stacked-bar/types.ts +5 -0
  120. package/src/components/timeline/config.ts +49 -0
  121. package/src/components/timeline/index.ts +302 -0
  122. package/{components/timeline/style.js → src/components/timeline/style.ts} +39 -30
  123. package/src/components/tooltip/config.ts +69 -0
  124. package/src/components/tooltip/index.ts +220 -0
  125. package/{components → src/components}/tooltip/style.js +11 -14
  126. package/src/components/topojson-map/config.ts +124 -0
  127. package/src/components/topojson-map/index.ts +436 -0
  128. package/{components/topojson-map/style.js → src/components/topojson-map/style.ts} +33 -26
  129. package/src/components/topojson-map/types.ts +123 -0
  130. package/src/components/topojson-map/utils.ts +29 -0
  131. package/src/components/vis-controls/config.ts +16 -0
  132. package/src/components/vis-controls/index.ts +68 -0
  133. package/{components/vis-controls/style.js → src/components/vis-controls/style.ts} +34 -27
  134. package/src/components/vis-controls/types.ts +14 -0
  135. package/src/components/xy-labels/config.ts +56 -0
  136. package/src/components/xy-labels/index.ts +109 -0
  137. package/src/components/xy-labels/modules/label.ts +140 -0
  138. package/{components/xy-labels/style.js → src/components/xy-labels/style.ts} +15 -14
  139. package/src/components/xy-labels/types.ts +26 -0
  140. package/src/components.ts +56 -0
  141. package/src/containers/single-container/config.ts +15 -0
  142. package/src/containers/single-container/index.ts +150 -0
  143. package/src/containers/xy-container/config.ts +112 -0
  144. package/src/containers/xy-container/index.ts +407 -0
  145. package/src/containers.ts +6 -0
  146. package/src/core/component/config.ts +61 -0
  147. package/src/core/component/index.ts +154 -0
  148. package/src/core/component/types.ts +9 -0
  149. package/src/core/config/index.ts +12 -0
  150. package/src/core/container/config.ts +56 -0
  151. package/src/core/container/index.ts +136 -0
  152. package/src/core/xy-component/config.ts +46 -0
  153. package/src/core/xy-component/index.ts +90 -0
  154. package/src/data-models/core.ts +15 -0
  155. package/src/data-models/graph.ts +138 -0
  156. package/src/data-models/map-graph.ts +72 -0
  157. package/src/data-models/map.ts +18 -0
  158. package/src/data-models/series.ts +16 -0
  159. package/src/index.ts +7 -0
  160. package/src/maps/china-provinces.json +1 -0
  161. package/src/maps/fr-regions.json +1 -0
  162. package/src/maps/germany-regions.json +1 -0
  163. package/src/maps/ind-regions.json +1 -0
  164. package/src/maps/uk-regions.json +1 -0
  165. package/src/maps/us-counties.json +1 -0
  166. package/src/maps/us-states.json +1 -0
  167. package/src/maps/world-110m-alpha.json +1 -0
  168. package/src/maps/world-simple.json +1 -0
  169. package/src/maps/world-simplest.json +1 -0
  170. package/src/maps.ts +34 -0
  171. package/src/styles/colors.ts +28 -0
  172. package/src/styles/index.ts +38 -0
  173. package/{styles/sizes.js → src/styles/sizes.ts} +6 -8
  174. package/src/types/accessor.ts +5 -0
  175. package/src/types/component.ts +15 -0
  176. package/src/types/curve.ts +62 -0
  177. package/src/types/data.ts +5 -0
  178. package/src/types/direction.ts +6 -0
  179. package/src/types/graph.ts +40 -0
  180. package/src/types/map.ts +5 -0
  181. package/src/types/misc.ts +10 -0
  182. package/src/types/position.ts +23 -0
  183. package/src/types/scale.ts +47 -0
  184. package/src/types/shape.ts +7 -0
  185. package/src/types/spacing.ts +6 -0
  186. package/src/types/svg.ts +32 -0
  187. package/src/types/symbol.ts +21 -0
  188. package/src/types/text.ts +71 -0
  189. package/src/types.ts +31 -0
  190. package/src/utils/color.ts +41 -0
  191. package/src/utils/d3.ts +15 -0
  192. package/src/utils/data.ts +328 -0
  193. package/src/utils/html.ts +13 -0
  194. package/src/utils/map.ts +29 -0
  195. package/src/utils/misc.ts +54 -0
  196. package/src/utils/path.ts +196 -0
  197. package/src/utils/scale.ts +1 -0
  198. package/src/utils/style.ts +37 -0
  199. package/src/utils/svg.ts +49 -0
  200. package/src/utils/text.ts +529 -0
  201. package/src/utils/type.ts +9 -0
  202. package/tsconfig.json +29 -0
  203. package/components/area/config.d.ts +0 -25
  204. package/components/area/config.js +0 -16
  205. package/components/area/config.js.map +0 -1
  206. package/components/area/index.d.ts +0 -19
  207. package/components/area/index.js +0 -102
  208. package/components/area/index.js.map +0 -1
  209. package/components/area/style.d.ts +0 -3
  210. package/components/area/style.js.map +0 -1
  211. package/components/area/types.d.ts +0 -6
  212. package/components/axis/config.d.ts +0 -71
  213. package/components/axis/config.js +0 -32
  214. package/components/axis/config.js.map +0 -1
  215. package/components/axis/index.d.ts +0 -44
  216. package/components/axis/index.js +0 -305
  217. package/components/axis/index.js.map +0 -1
  218. package/components/axis/style.d.ts +0 -9
  219. package/components/axis/style.js.map +0 -1
  220. package/components/axis/types.d.ts +0 -4
  221. package/components/axis/types.js +0 -8
  222. package/components/axis/types.js.map +0 -1
  223. package/components/brush/config.d.ts +0 -42
  224. package/components/brush/config.js +0 -24
  225. package/components/brush/config.js.map +0 -1
  226. package/components/brush/index.d.ts +0 -28
  227. package/components/brush/index.js +0 -199
  228. package/components/brush/index.js.map +0 -1
  229. package/components/brush/style.d.ts +0 -5
  230. package/components/brush/style.js.map +0 -1
  231. package/components/brush/types.d.ts +0 -7
  232. package/components/brush/types.js +0 -8
  233. package/components/brush/types.js.map +0 -1
  234. package/components/bullet-legend/config.d.ts +0 -34
  235. package/components/bullet-legend/config.js +0 -16
  236. package/components/bullet-legend/config.js.map +0 -1
  237. package/components/bullet-legend/index.d.ts +0 -19
  238. package/components/bullet-legend/index.js +0 -79
  239. package/components/bullet-legend/index.js.map +0 -1
  240. package/components/bullet-legend/style.d.ts +0 -6
  241. package/components/bullet-legend/style.js.map +0 -1
  242. package/components/bullet-legend/types.d.ts +0 -7
  243. package/components/bullet-legend/types.js +0 -2
  244. package/components/bullet-legend/types.js.map +0 -1
  245. package/components/chord-diagram/config.d.ts +0 -44
  246. package/components/chord-diagram/config.js +0 -25
  247. package/components/chord-diagram/config.js.map +0 -1
  248. package/components/chord-diagram/index.d.ts +0 -42
  249. package/components/chord-diagram/index.js +0 -305
  250. package/components/chord-diagram/index.js.map +0 -1
  251. package/components/chord-diagram/modules/label.d.ts +0 -8
  252. package/components/chord-diagram/modules/label.js +0 -115
  253. package/components/chord-diagram/modules/label.js.map +0 -1
  254. package/components/chord-diagram/modules/link.d.ts +0 -21
  255. package/components/chord-diagram/modules/link.js +0 -63
  256. package/components/chord-diagram/modules/link.js.map +0 -1
  257. package/components/chord-diagram/modules/node.d.ts +0 -17
  258. package/components/chord-diagram/modules/node.js +0 -52
  259. package/components/chord-diagram/modules/node.js.map +0 -1
  260. package/components/chord-diagram/style.d.ts +0 -13
  261. package/components/chord-diagram/style.js.map +0 -1
  262. package/components/chord-diagram/types.d.ts +0 -58
  263. package/components/chord-diagram/types.js +0 -8
  264. package/components/chord-diagram/types.js.map +0 -1
  265. package/components/crosshair/config.d.ts +0 -43
  266. package/components/crosshair/config.js +0 -19
  267. package/components/crosshair/config.js.map +0 -1
  268. package/components/crosshair/index.d.ts +0 -35
  269. package/components/crosshair/index.js +0 -183
  270. package/components/crosshair/index.js.map +0 -1
  271. package/components/crosshair/style.d.ts +0 -4
  272. package/components/crosshair/style.js.map +0 -1
  273. package/components/crosshair/types.d.ts +0 -13
  274. package/components/crosshair/types.js +0 -2
  275. package/components/crosshair/types.js.map +0 -1
  276. package/components/donut/config.d.ts +0 -59
  277. package/components/donut/config.js +0 -28
  278. package/components/donut/config.js.map +0 -1
  279. package/components/donut/index.d.ts +0 -21
  280. package/components/donut/index.js +0 -107
  281. package/components/donut/index.js.map +0 -1
  282. package/components/donut/modules/arc.d.ts +0 -10
  283. package/components/donut/modules/arc.js +0 -59
  284. package/components/donut/modules/arc.js.map +0 -1
  285. package/components/donut/style.d.ts +0 -7
  286. package/components/donut/style.js.map +0 -1
  287. package/components/donut/types.d.ts +0 -20
  288. package/components/flow-legend/config.d.ts +0 -29
  289. package/components/flow-legend/config.js +0 -18
  290. package/components/flow-legend/config.js.map +0 -1
  291. package/components/flow-legend/index.d.ts +0 -16
  292. package/components/flow-legend/index.js +0 -75
  293. package/components/flow-legend/index.js.map +0 -1
  294. package/components/flow-legend/style.d.ts +0 -8
  295. package/components/flow-legend/style.js.map +0 -1
  296. package/components/flow-legend/types.d.ts +0 -9
  297. package/components/flow-legend/types.js +0 -8
  298. package/components/flow-legend/types.js.map +0 -1
  299. package/components/free-brush/config.d.ts +0 -45
  300. package/components/free-brush/config.js +0 -24
  301. package/components/free-brush/config.js.map +0 -1
  302. package/components/free-brush/index.d.ts +0 -20
  303. package/components/free-brush/index.js +0 -192
  304. package/components/free-brush/index.js.map +0 -1
  305. package/components/free-brush/style.d.ts +0 -4
  306. package/components/free-brush/style.js.map +0 -1
  307. package/components/free-brush/types.d.ts +0 -7
  308. package/components/free-brush/types.js +0 -9
  309. package/components/free-brush/types.js.map +0 -1
  310. package/components/graph/config.d.ts +0 -238
  311. package/components/graph/config.js +0 -84
  312. package/components/graph/config.js.map +0 -1
  313. package/components/graph/index.d.ts +0 -126
  314. package/components/graph/index.js +0 -656
  315. package/components/graph/index.js.map +0 -1
  316. package/components/graph/modules/layout-helpers.d.ts +0 -21
  317. package/components/graph/modules/layout-helpers.js +0 -69
  318. package/components/graph/modules/layout-helpers.js.map +0 -1
  319. package/components/graph/modules/layout.d.ts +0 -10
  320. package/components/graph/modules/layout.js +0 -399
  321. package/components/graph/modules/layout.js.map +0 -1
  322. package/components/graph/modules/link/helper.d.ts +0 -25
  323. package/components/graph/modules/link/helper.js +0 -74
  324. package/components/graph/modules/link/helper.js.map +0 -1
  325. package/components/graph/modules/link/index.d.ts +0 -11
  326. package/components/graph/modules/link/index.js +0 -212
  327. package/components/graph/modules/link/index.js.map +0 -1
  328. package/components/graph/modules/link/style.d.ts +0 -15
  329. package/components/graph/modules/link/style.js.map +0 -1
  330. package/components/graph/modules/node/helper.d.ts +0 -21
  331. package/components/graph/modules/node/helper.js +0 -126
  332. package/components/graph/modules/node/helper.js.map +0 -1
  333. package/components/graph/modules/node/index.d.ts +0 -11
  334. package/components/graph/modules/node/index.js +0 -252
  335. package/components/graph/modules/node/index.js.map +0 -1
  336. package/components/graph/modules/node/style.d.ts +0 -24
  337. package/components/graph/modules/node/style.js.map +0 -1
  338. package/components/graph/modules/panel/helper.d.ts +0 -18
  339. package/components/graph/modules/panel/helper.js +0 -111
  340. package/components/graph/modules/panel/helper.js.map +0 -1
  341. package/components/graph/modules/panel/index.d.ts +0 -7
  342. package/components/graph/modules/panel/index.js +0 -98
  343. package/components/graph/modules/panel/index.js.map +0 -1
  344. package/components/graph/modules/panel/style.d.ts +0 -14
  345. package/components/graph/modules/panel/style.js.map +0 -1
  346. package/components/graph/modules/shape.d.ts +0 -6
  347. package/components/graph/modules/shape.js +0 -80
  348. package/components/graph/modules/shape.js.map +0 -1
  349. package/components/graph/modules/zoom-levels.d.ts +0 -6
  350. package/components/graph/modules/zoom-levels.js +0 -10
  351. package/components/graph/modules/zoom-levels.js.map +0 -1
  352. package/components/graph/style.d.ts +0 -6
  353. package/components/graph/style.js +0 -66
  354. package/components/graph/style.js.map +0 -1
  355. package/components/graph/types.d.ts +0 -125
  356. package/components/graph/types.js +0 -30
  357. package/components/graph/types.js.map +0 -1
  358. package/components/grouped-bar/config.d.ts +0 -36
  359. package/components/grouped-bar/config.js +0 -20
  360. package/components/grouped-bar/config.js.map +0 -1
  361. package/components/grouped-bar/index.d.ts +0 -32
  362. package/components/grouped-bar/index.js +0 -249
  363. package/components/grouped-bar/index.js.map +0 -1
  364. package/components/grouped-bar/style.d.ts +0 -5
  365. package/components/grouped-bar/style.js.map +0 -1
  366. package/components/leaflet-flow-map/config.d.ts +0 -46
  367. package/components/leaflet-flow-map/config.js +0 -25
  368. package/components/leaflet-flow-map/config.js.map +0 -1
  369. package/components/leaflet-flow-map/index.d.ts +0 -52
  370. package/components/leaflet-flow-map/index.js +0 -220
  371. package/components/leaflet-flow-map/index.js.map +0 -1
  372. package/components/leaflet-flow-map/renderer-utils.d.ts +0 -5
  373. package/components/leaflet-flow-map/renderer-utils.js +0 -15
  374. package/components/leaflet-flow-map/renderer-utils.js.map +0 -1
  375. package/components/leaflet-flow-map/renderer.d.ts +0 -26
  376. package/components/leaflet-flow-map/renderer.js +0 -117
  377. package/components/leaflet-flow-map/renderer.js.map +0 -1
  378. package/components/leaflet-flow-map/shaders.d.ts +0 -2
  379. package/components/leaflet-flow-map/shaders.js.map +0 -1
  380. package/components/leaflet-flow-map/types.d.ts +0 -23
  381. package/components/leaflet-map/config.d.ts +0 -193
  382. package/components/leaflet-map/config.js +0 -71
  383. package/components/leaflet-map/config.js.map +0 -1
  384. package/components/leaflet-map/index.d.ts +0 -130
  385. package/components/leaflet-map/index.js +0 -690
  386. package/components/leaflet-map/index.js.map +0 -1
  387. package/components/leaflet-map/leaflet.css.js +0 -5
  388. package/components/leaflet-map/leaflet.css.js.map +0 -1
  389. package/components/leaflet-map/modules/clusterBackground.d.ts +0 -5
  390. package/components/leaflet-map/modules/clusterBackground.js +0 -27
  391. package/components/leaflet-map/modules/clusterBackground.js.map +0 -1
  392. package/components/leaflet-map/modules/donut.d.ts +0 -3
  393. package/components/leaflet-map/modules/donut.js +0 -25
  394. package/components/leaflet-map/modules/donut.js.map +0 -1
  395. package/components/leaflet-map/modules/map.d.ts +0 -14
  396. package/components/leaflet-map/modules/map.js +0 -154
  397. package/components/leaflet-map/modules/map.js.map +0 -1
  398. package/components/leaflet-map/modules/node.d.ts +0 -9
  399. package/components/leaflet-map/modules/node.js +0 -162
  400. package/components/leaflet-map/modules/node.js.map +0 -1
  401. package/components/leaflet-map/modules/selectionRing.d.ts +0 -7
  402. package/components/leaflet-map/modules/selectionRing.js +0 -41
  403. package/components/leaflet-map/modules/selectionRing.js.map +0 -1
  404. package/components/leaflet-map/modules/utils.d.ts +0 -50
  405. package/components/leaflet-map/modules/utils.js +0 -210
  406. package/components/leaflet-map/modules/utils.js.map +0 -1
  407. package/components/leaflet-map/renderer/leaflet-maplibre-gl.js.map +0 -1
  408. package/components/leaflet-map/renderer/map-style.d.ts +0 -4
  409. package/components/leaflet-map/renderer/map-style.js +0 -15
  410. package/components/leaflet-map/renderer/map-style.js.map +0 -1
  411. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js +0 -40
  412. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js.map +0 -1
  413. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js +0 -40
  414. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js.map +0 -1
  415. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js +0 -4981
  416. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js.map +0 -1
  417. package/components/leaflet-map/renderer/mapboxgl-layer.d.ts +0 -8
  418. package/components/leaflet-map/renderer/mapboxgl-layer.js +0 -27
  419. package/components/leaflet-map/renderer/mapboxgl-layer.js.map +0 -1
  420. package/components/leaflet-map/renderer/mapboxgl-utils.d.ts +0 -4
  421. package/components/leaflet-map/renderer/mapboxgl-utils.js +0 -39
  422. package/components/leaflet-map/renderer/mapboxgl-utils.js.map +0 -1
  423. package/components/leaflet-map/renderer/maplibre-gl.css.js.map +0 -1
  424. package/components/leaflet-map/style.d.ts +0 -52
  425. package/components/leaflet-map/style.js +0 -183
  426. package/components/leaflet-map/style.js.map +0 -1
  427. package/components/leaflet-map/types.d.ts +0 -75
  428. package/components/leaflet-map/types.js +0 -15
  429. package/components/leaflet-map/types.js.map +0 -1
  430. package/components/line/config.d.ts +0 -30
  431. package/components/line/config.js +0 -17
  432. package/components/line/config.js.map +0 -1
  433. package/components/line/index.d.ts +0 -27
  434. package/components/line/index.js +0 -152
  435. package/components/line/index.js.map +0 -1
  436. package/components/line/style.d.ts +0 -6
  437. package/components/line/style.js.map +0 -1
  438. package/components/line/types.d.ts +0 -12
  439. package/components/nested-donut/config.d.ts +0 -59
  440. package/components/nested-donut/config.js +0 -19
  441. package/components/nested-donut/config.js.map +0 -1
  442. package/components/nested-donut/index.d.ts +0 -38
  443. package/components/nested-donut/index.js +0 -133
  444. package/components/nested-donut/index.js.map +0 -1
  445. package/components/nested-donut/modules/arc.d.ts +0 -17
  446. package/components/nested-donut/modules/arc.js +0 -50
  447. package/components/nested-donut/modules/arc.js.map +0 -1
  448. package/components/nested-donut/modules/label.d.ts +0 -7
  449. package/components/nested-donut/modules/label.js +0 -34
  450. package/components/nested-donut/modules/label.js.map +0 -1
  451. package/components/nested-donut/style.d.ts +0 -26
  452. package/components/nested-donut/style.js +0 -70
  453. package/components/nested-donut/style.js.map +0 -1
  454. package/components/nested-donut/types.d.ts +0 -24
  455. package/components/nested-donut/types.js +0 -11
  456. package/components/nested-donut/types.js.map +0 -1
  457. package/components/sankey/config.d.ts +0 -162
  458. package/components/sankey/config.js +0 -65
  459. package/components/sankey/config.js.map +0 -1
  460. package/components/sankey/index.d.ts +0 -59
  461. package/components/sankey/index.js +0 -306
  462. package/components/sankey/index.js.map +0 -1
  463. package/components/sankey/modules/label.d.ts +0 -23
  464. package/components/sankey/modules/label.js +0 -168
  465. package/components/sankey/modules/label.js.map +0 -1
  466. package/components/sankey/modules/link.d.ts +0 -14
  467. package/components/sankey/modules/link.js +0 -108
  468. package/components/sankey/modules/link.js.map +0 -1
  469. package/components/sankey/modules/node.d.ts +0 -10
  470. package/components/sankey/modules/node.js +0 -156
  471. package/components/sankey/modules/node.js.map +0 -1
  472. package/components/sankey/style.d.ts +0 -20
  473. package/components/sankey/style.js.map +0 -1
  474. package/components/sankey/types.d.ts +0 -84
  475. package/components/sankey/types.js +0 -34
  476. package/components/sankey/types.js.map +0 -1
  477. package/components/scatter/config.d.ts +0 -44
  478. package/components/scatter/config.js +0 -23
  479. package/components/scatter/config.js.map +0 -1
  480. package/components/scatter/index.d.ts +0 -28
  481. package/components/scatter/index.js +0 -167
  482. package/components/scatter/index.js.map +0 -1
  483. package/components/scatter/modules/point.d.ts +0 -7
  484. package/components/scatter/modules/point.js +0 -86
  485. package/components/scatter/modules/point.js.map +0 -1
  486. package/components/scatter/modules/utils.d.ts +0 -11
  487. package/components/scatter/modules/utils.js +0 -112
  488. package/components/scatter/modules/utils.js.map +0 -1
  489. package/components/scatter/style.d.ts +0 -5
  490. package/components/scatter/style.js.map +0 -1
  491. package/components/scatter/types.d.ts +0 -19
  492. package/components/stacked-bar/config.d.ts +0 -38
  493. package/components/stacked-bar/config.js +0 -20
  494. package/components/stacked-bar/config.js.map +0 -1
  495. package/components/stacked-bar/index.d.ts +0 -28
  496. package/components/stacked-bar/index.js +0 -208
  497. package/components/stacked-bar/index.js.map +0 -1
  498. package/components/stacked-bar/style.d.ts +0 -5
  499. package/components/stacked-bar/style.js.map +0 -1
  500. package/components/stacked-bar/types.d.ts +0 -5
  501. package/components/timeline/config.d.ts +0 -43
  502. package/components/timeline/config.js +0 -24
  503. package/components/timeline/config.js.map +0 -1
  504. package/components/timeline/index.d.ts +0 -41
  505. package/components/timeline/index.js +0 -244
  506. package/components/timeline/index.js.map +0 -1
  507. package/components/timeline/style.d.ts +0 -13
  508. package/components/timeline/style.js.map +0 -1
  509. package/components/tooltip/config.d.ts +0 -68
  510. package/components/tooltip/config.js +0 -20
  511. package/components/tooltip/config.js.map +0 -1
  512. package/components/tooltip/index.d.ts +0 -36
  513. package/components/tooltip/index.js +0 -184
  514. package/components/tooltip/index.js.map +0 -1
  515. package/components/tooltip/style.js.map +0 -1
  516. package/components/topojson-map/config.d.ts +0 -99
  517. package/components/topojson-map/config.js +0 -42
  518. package/components/topojson-map/config.js.map +0 -1
  519. package/components/topojson-map/index.d.ts +0 -52
  520. package/components/topojson-map/index.js +0 -355
  521. package/components/topojson-map/index.js.map +0 -1
  522. package/components/topojson-map/style.d.ts +0 -11
  523. package/components/topojson-map/style.js.map +0 -1
  524. package/components/topojson-map/types.d.ts +0 -78
  525. package/components/topojson-map/types.js +0 -80
  526. package/components/topojson-map/types.js.map +0 -1
  527. package/components/topojson-map/utils.d.ts +0 -3
  528. package/components/topojson-map/utils.js +0 -30
  529. package/components/topojson-map/utils.js.map +0 -1
  530. package/components/vis-controls/config.d.ts +0 -12
  531. package/components/vis-controls/config.js +0 -13
  532. package/components/vis-controls/config.js.map +0 -1
  533. package/components/vis-controls/index.d.ts +0 -14
  534. package/components/vis-controls/index.js +0 -52
  535. package/components/vis-controls/index.js.map +0 -1
  536. package/components/vis-controls/style.d.ts +0 -11
  537. package/components/vis-controls/style.js.map +0 -1
  538. package/components/vis-controls/types.d.ts +0 -13
  539. package/components/vis-controls/types.js +0 -8
  540. package/components/vis-controls/types.js.map +0 -1
  541. package/components/xy-labels/config.d.ts +0 -48
  542. package/components/xy-labels/config.js +0 -25
  543. package/components/xy-labels/config.js.map +0 -1
  544. package/components/xy-labels/index.d.ts +0 -15
  545. package/components/xy-labels/index.js +0 -87
  546. package/components/xy-labels/index.js.map +0 -1
  547. package/components/xy-labels/modules/label.d.ts +0 -9
  548. package/components/xy-labels/modules/label.js +0 -107
  549. package/components/xy-labels/modules/label.js.map +0 -1
  550. package/components/xy-labels/style.d.ts +0 -5
  551. package/components/xy-labels/style.js.map +0 -1
  552. package/components/xy-labels/types.d.ts +0 -23
  553. package/components/xy-labels/types.js +0 -9
  554. package/components/xy-labels/types.js.map +0 -1
  555. package/components.d.ts +0 -51
  556. package/components.js +0 -29
  557. package/components.js.map +0 -1
  558. package/containers/single-container/config.d.ts +0 -12
  559. package/containers/single-container/config.js +0 -12
  560. package/containers/single-container/config.js.map +0 -1
  561. package/containers/single-container/index.d.ts +0 -19
  562. package/containers/single-container/index.js +0 -128
  563. package/containers/single-container/index.js.map +0 -1
  564. package/containers/xy-container/config.d.ts +0 -99
  565. package/containers/xy-container/config.js +0 -30
  566. package/containers/xy-container/config.js.map +0 -1
  567. package/containers/xy-container/index.d.ts +0 -34
  568. package/containers/xy-container/index.js +0 -330
  569. package/containers/xy-container/index.js.map +0 -1
  570. package/containers.d.ts +0 -6
  571. package/containers.js +0 -4
  572. package/containers.js.map +0 -1
  573. package/core/component/config.d.ts +0 -58
  574. package/core/component/config.js +0 -14
  575. package/core/component/config.js.map +0 -1
  576. package/core/component/index.d.ts +0 -43
  577. package/core/component/index.js +0 -118
  578. package/core/component/index.js.map +0 -1
  579. package/core/component/types.d.ts +0 -2
  580. package/core/component/types.js +0 -2
  581. package/core/component/types.js.map +0 -1
  582. package/core/config/index.d.ts +0 -3
  583. package/core/config/index.js +0 -16
  584. package/core/config/index.js.map +0 -1
  585. package/core/container/config.d.ts +0 -48
  586. package/core/container/config.js +0 -29
  587. package/core/container/config.js.map +0 -1
  588. package/core/container/index.d.ts +0 -26
  589. package/core/container/index.js +0 -105
  590. package/core/container/index.js.map +0 -1
  591. package/core/xy-component/config.d.ts +0 -38
  592. package/core/xy-component/config.js +0 -20
  593. package/core/xy-component/config.js.map +0 -1
  594. package/core/xy-component/index.d.ts +0 -27
  595. package/core/xy-component/index.js +0 -74
  596. package/core/xy-component/index.js.map +0 -1
  597. package/data-models/core.d.ts +0 -6
  598. package/data-models/core.js +0 -14
  599. package/data-models/core.js.map +0 -1
  600. package/data-models/graph.d.ts +0 -24
  601. package/data-models/graph.js +0 -107
  602. package/data-models/graph.js.map +0 -1
  603. package/data-models/map-graph.d.ts +0 -21
  604. package/data-models/map-graph.js +0 -62
  605. package/data-models/map-graph.js.map +0 -1
  606. package/data-models/map.d.ts +0 -5
  607. package/data-models/map.js +0 -12
  608. package/data-models/map.js.map +0 -1
  609. package/data-models/series.d.ts +0 -6
  610. package/data-models/series.js +0 -19
  611. package/data-models/series.js.map +0 -1
  612. package/index.d.ts +0 -7
  613. package/index.js +0 -55
  614. package/index.js.map +0 -1
  615. package/maps/china-provinces.json.js +0 -140373
  616. package/maps/fr-regions.json.js +0 -14162
  617. package/maps/germany-regions.json.js +0 -35760
  618. package/maps/ind-regions.json.js +0 -290584
  619. package/maps/uk-regions.json.js +0 -96233
  620. package/maps/us-counties.json.js +0 -206318
  621. package/maps/us-states.json.js +0 -16345
  622. package/maps/world-110m-alpha.json.js +0 -251366
  623. package/maps/world-simple.json.js +0 -89428
  624. package/maps/world-simplest.json.js +0 -28175
  625. package/maps.d.ts +0 -60
  626. package/maps.js +0 -23
  627. package/styles/colors.d.ts +0 -7
  628. package/styles/colors.js +0 -24
  629. package/styles/colors.js.map +0 -1
  630. package/styles/index.d.ts +0 -7
  631. package/styles/index.js +0 -38
  632. package/styles/index.js.map +0 -1
  633. package/styles/sizes.d.ts +0 -2
  634. package/styles/sizes.js.map +0 -1
  635. package/types/accessor.d.ts +0 -5
  636. package/types/accessor.js +0 -2
  637. package/types/accessor.js.map +0 -1
  638. package/types/component.d.ts +0 -13
  639. package/types/component.js +0 -14
  640. package/types/component.js.map +0 -1
  641. package/types/curve.d.ts +0 -40
  642. package/types/curve.js +0 -46
  643. package/types/curve.js.map +0 -1
  644. package/types/data.d.ts +0 -7
  645. package/types/data.js +0 -2
  646. package/types/data.js.map +0 -1
  647. package/types/direction.d.ts +0 -6
  648. package/types/direction.js +0 -10
  649. package/types/direction.js.map +0 -1
  650. package/types/graph.d.ts +0 -35
  651. package/types/graph.js +0 -2
  652. package/types/graph.js.map +0 -1
  653. package/types/map.d.ts +0 -4
  654. package/types/map.js +0 -2
  655. package/types/map.js.map +0 -1
  656. package/types/misc.d.ts +0 -8
  657. package/types/position.d.ts +0 -20
  658. package/types/position.js +0 -27
  659. package/types/position.js.map +0 -1
  660. package/types/scale.d.ts +0 -23
  661. package/types/scale.js +0 -27
  662. package/types/scale.js.map +0 -1
  663. package/types/shape.d.ts +0 -7
  664. package/types/shape.js +0 -11
  665. package/types/shape.js.map +0 -1
  666. package/types/spacing.d.ts +0 -6
  667. package/types/spacing.js +0 -2
  668. package/types/spacing.js.map +0 -1
  669. package/types/svg.d.ts +0 -18
  670. package/types/svg.js +0 -22
  671. package/types/svg.js.map +0 -1
  672. package/types/symbol.d.ts +0 -18
  673. package/types/symbol.js +0 -24
  674. package/types/symbol.js.map +0 -1
  675. package/types/text.d.ts +0 -47
  676. package/types/text.js +0 -26
  677. package/types/text.js.map +0 -1
  678. package/types.d.ts +0 -27
  679. package/types.js +0 -30
  680. package/types.js.map +0 -1
  681. package/utils/color.d.ts +0 -10
  682. package/utils/color.js +0 -32
  683. package/utils/color.js.map +0 -1
  684. package/utils/d3.d.ts +0 -3
  685. package/utils/d3.js +0 -16
  686. package/utils/d3.js.map +0 -1
  687. package/utils/data.d.ts +0 -45
  688. package/utils/data.js +0 -274
  689. package/utils/data.js.map +0 -1
  690. package/utils/html.d.ts +0 -1
  691. package/utils/html.js +0 -16
  692. package/utils/html.js.map +0 -1
  693. package/utils/map.d.ts +0 -2
  694. package/utils/map.js +0 -20
  695. package/utils/map.js.map +0 -1
  696. package/utils/misc.d.ts +0 -9
  697. package/utils/misc.js +0 -47
  698. package/utils/misc.js.map +0 -1
  699. package/utils/path.d.ts +0 -23
  700. package/utils/path.js +0 -144
  701. package/utils/path.js.map +0 -1
  702. package/utils/scale.d.ts +0 -1
  703. package/utils/style.d.ts +0 -6
  704. package/utils/style.js +0 -24
  705. package/utils/style.js.map +0 -1
  706. package/utils/svg.d.ts +0 -3
  707. package/utils/text.d.ts +0 -139
  708. package/utils/text.js +0 -443
  709. package/utils/text.js.map +0 -1
  710. package/utils/type.d.ts +0 -5
@@ -1,4981 +0,0 @@
1
- var bearing = 0;
2
- var name = "F5XC Map Light";
3
- var owner = "F5, Inc.";
4
- var glyphs = "https://api.maptiler.com/fonts/{fontstack}/{range}.pbf";
5
- var sources = {
6
- openmaptiles: {
7
- url: "https://api.maptiler.com/tiles/v3/tiles.json",
8
- type: "vector"
9
- }
10
- };
11
- var layers = [
12
- {
13
- id: "park_outline",
14
- type: "line",
15
- source: "openmaptiles",
16
- "source-layer": "park",
17
- filter: [
18
- "all"
19
- ],
20
- layout: {
21
- },
22
- paint: {
23
- "line-color": "rgb(255, 255, 255)",
24
- "line-dasharray": [
25
- 1,
26
- 1.5
27
- ],
28
- "line-opacity": 1
29
- }
30
- },
31
- {
32
- id: "landuse_residential",
33
- type: "fill",
34
- metadata: {
35
- },
36
- source: "openmaptiles",
37
- "source-layer": "landuse",
38
- maxzoom: 8,
39
- filter: [
40
- "all",
41
- [
42
- "in",
43
- "class",
44
- "residential",
45
- "suburbs",
46
- "neighbourhood"
47
- ]
48
- ],
49
- layout: {
50
- visibility: "visible"
51
- },
52
- paint: {
53
- "fill-color": {
54
- stops: [
55
- [
56
- 9,
57
- "rgba(236, 236, 236, 0.8)"
58
- ],
59
- [
60
- 12,
61
- "rgba(236, 236, 236, 0.8)"
62
- ]
63
- ]
64
- }
65
- }
66
- },
67
- {
68
- id: "landcover_wood",
69
- type: "fill",
70
- metadata: {
71
- },
72
- source: "openmaptiles",
73
- "source-layer": "landcover",
74
- filter: [
75
- "all",
76
- [
77
- "==",
78
- "class",
79
- "wood"
80
- ]
81
- ],
82
- paint: {
83
- "fill-antialias": false,
84
- "fill-color": "rgba(255, 255, 255, 0.7)",
85
- "fill-opacity": 0.4
86
- }
87
- },
88
- {
89
- id: "landcover_grass",
90
- type: "fill",
91
- metadata: {
92
- },
93
- source: "openmaptiles",
94
- "source-layer": "landcover",
95
- filter: [
96
- "all",
97
- [
98
- "==",
99
- "class",
100
- "grass"
101
- ]
102
- ],
103
- paint: {
104
- "fill-antialias": false,
105
- "fill-color": "rgb(255, 255, 255)",
106
- "fill-opacity": 0.3
107
- }
108
- },
109
- {
110
- id: "landuse_cemetery",
111
- type: "fill",
112
- metadata: {
113
- },
114
- source: "openmaptiles",
115
- "source-layer": "landuse",
116
- filter: [
117
- "==",
118
- "class",
119
- "cemetery"
120
- ],
121
- layout: {
122
- visibility: "visible"
123
- },
124
- paint: {
125
- "fill-color": "rgb(221, 221, 221)"
126
- }
127
- },
128
- {
129
- id: "landuse_hospital",
130
- type: "fill",
131
- metadata: {
132
- },
133
- source: "openmaptiles",
134
- "source-layer": "landuse",
135
- filter: [
136
- "==",
137
- "class",
138
- "hospital"
139
- ],
140
- paint: {
141
- "fill-color": "rgb(249, 249, 249)"
142
- }
143
- },
144
- {
145
- id: "landuse_school",
146
- type: "fill",
147
- metadata: {
148
- },
149
- source: "openmaptiles",
150
- "source-layer": "landuse",
151
- filter: [
152
- "==",
153
- "class",
154
- "school"
155
- ],
156
- paint: {
157
- "fill-color": "rgb(236, 236, 236)"
158
- }
159
- },
160
- {
161
- id: "landuse_stadium",
162
- type: "fill",
163
- metadata: {
164
- },
165
- source: "openmaptiles",
166
- "source-layer": "landuse",
167
- filter: [
168
- "all",
169
- [
170
- "in",
171
- "class",
172
- "stadium",
173
- "pitch",
174
- "track"
175
- ]
176
- ],
177
- paint: {
178
- "fill-color": "rgb(236, 236, 236)"
179
- }
180
- },
181
- {
182
- id: "waterway_tunnel",
183
- type: "line",
184
- source: "openmaptiles",
185
- "source-layer": "waterway",
186
- minzoom: 14,
187
- filter: [
188
- "all",
189
- [
190
- "==",
191
- "brunnel",
192
- "tunnel"
193
- ]
194
- ],
195
- layout: {
196
- "line-cap": "round"
197
- },
198
- paint: {
199
- "line-color": "rgb(236, 237, 238)",
200
- "line-dasharray": [
201
- 2,
202
- 4
203
- ],
204
- "line-width": {
205
- base: 1.3,
206
- stops: [
207
- [
208
- 13,
209
- 0.5
210
- ],
211
- [
212
- 20,
213
- 6
214
- ]
215
- ]
216
- }
217
- }
218
- },
219
- {
220
- id: "waterway_river",
221
- type: "line",
222
- metadata: {
223
- },
224
- source: "openmaptiles",
225
- "source-layer": "waterway",
226
- filter: [
227
- "all",
228
- [
229
- "==",
230
- "class",
231
- "river"
232
- ],
233
- [
234
- "!=",
235
- "brunnel",
236
- "tunnel"
237
- ],
238
- [
239
- "!=",
240
- "intermittent",
241
- 1
242
- ]
243
- ],
244
- layout: {
245
- "line-cap": "round"
246
- },
247
- paint: {
248
- "line-color": "rgb(236, 237, 238)",
249
- "line-width": {
250
- base: 1.2,
251
- stops: [
252
- [
253
- 11,
254
- 0.5
255
- ],
256
- [
257
- 20,
258
- 6
259
- ]
260
- ]
261
- }
262
- }
263
- },
264
- {
265
- id: "waterway_river_intermittent",
266
- type: "line",
267
- metadata: {
268
- },
269
- source: "openmaptiles",
270
- "source-layer": "waterway",
271
- filter: [
272
- "all",
273
- [
274
- "==",
275
- "class",
276
- "river"
277
- ],
278
- [
279
- "!=",
280
- "brunnel",
281
- "tunnel"
282
- ],
283
- [
284
- "==",
285
- "intermittent",
286
- 1
287
- ]
288
- ],
289
- layout: {
290
- "line-cap": "round"
291
- },
292
- paint: {
293
- "line-color": "#a0c8f0",
294
- "line-dasharray": [
295
- 3,
296
- 2
297
- ],
298
- "line-width": {
299
- base: 1.2,
300
- stops: [
301
- [
302
- 11,
303
- 0.5
304
- ],
305
- [
306
- 20,
307
- 6
308
- ]
309
- ]
310
- }
311
- }
312
- },
313
- {
314
- id: "waterway_other",
315
- type: "line",
316
- metadata: {
317
- },
318
- source: "openmaptiles",
319
- "source-layer": "waterway",
320
- filter: [
321
- "all",
322
- [
323
- "!=",
324
- "class",
325
- "river"
326
- ],
327
- [
328
- "!=",
329
- "brunnel",
330
- "tunnel"
331
- ],
332
- [
333
- "!=",
334
- "intermittent",
335
- 1
336
- ]
337
- ],
338
- layout: {
339
- "line-cap": "round"
340
- },
341
- paint: {
342
- "line-color": "rgb(236, 237, 238)",
343
- "line-width": {
344
- base: 1.3,
345
- stops: [
346
- [
347
- 13,
348
- 0.5
349
- ],
350
- [
351
- 20,
352
- 6
353
- ]
354
- ]
355
- }
356
- }
357
- },
358
- {
359
- id: "waterway_other_intermittent",
360
- type: "line",
361
- metadata: {
362
- },
363
- source: "openmaptiles",
364
- "source-layer": "waterway",
365
- filter: [
366
- "all",
367
- [
368
- "!=",
369
- "class",
370
- "river"
371
- ],
372
- [
373
- "!=",
374
- "brunnel",
375
- "tunnel"
376
- ],
377
- [
378
- "==",
379
- "intermittent",
380
- 1
381
- ]
382
- ],
383
- layout: {
384
- "line-cap": "round",
385
- visibility: "visible"
386
- },
387
- paint: {
388
- "line-color": "#a0c8f0",
389
- "line-dasharray": [
390
- 4,
391
- 3
392
- ],
393
- "line-width": {
394
- base: 1.3,
395
- stops: [
396
- [
397
- 13,
398
- 0.5
399
- ],
400
- [
401
- 20,
402
- 6
403
- ]
404
- ]
405
- }
406
- }
407
- },
408
- {
409
- id: "water_intermittent",
410
- type: "fill",
411
- metadata: {
412
- },
413
- source: "openmaptiles",
414
- "source-layer": "water",
415
- filter: [
416
- "all",
417
- [
418
- "==",
419
- "intermittent",
420
- 1
421
- ]
422
- ],
423
- layout: {
424
- visibility: "visible"
425
- },
426
- paint: {
427
- "fill-color": "rgba(172, 218, 251, 1)",
428
- "fill-opacity": 0.85
429
- }
430
- },
431
- {
432
- id: "landcover_sand",
433
- type: "fill",
434
- metadata: {
435
- },
436
- source: "openmaptiles",
437
- "source-layer": "landcover",
438
- filter: [
439
- "all",
440
- [
441
- "in",
442
- "class",
443
- "sand"
444
- ]
445
- ],
446
- layout: {
447
- visibility: "visible"
448
- },
449
- paint: {
450
- "fill-antialias": false,
451
- "fill-color": "rgb(222, 222, 222)",
452
- "fill-opacity": 1
453
- }
454
- },
455
- {
456
- id: "landcover_sand_outline",
457
- type: "line",
458
- metadata: {
459
- },
460
- source: "openmaptiles",
461
- "source-layer": "landcover",
462
- filter: [
463
- "all",
464
- [
465
- "in",
466
- "class",
467
- "sand"
468
- ]
469
- ],
470
- layout: {
471
- visibility: "visible"
472
- },
473
- paint: {
474
- "line-color": "#f2e9ac",
475
- "line-width": 2
476
- }
477
- },
478
- {
479
- id: "aeroway_fill",
480
- type: "fill",
481
- metadata: {
482
- },
483
- source: "openmaptiles",
484
- "source-layer": "aeroway",
485
- minzoom: 11,
486
- filter: [
487
- "==",
488
- "$type",
489
- "Polygon"
490
- ],
491
- paint: {
492
- "fill-color": "rgb(241, 241, 241)",
493
- "fill-opacity": 0.7
494
- }
495
- },
496
- {
497
- id: "aeroway_runway",
498
- type: "line",
499
- metadata: {
500
- },
501
- source: "openmaptiles",
502
- "source-layer": "aeroway",
503
- minzoom: 11,
504
- filter: [
505
- "all",
506
- [
507
- "==",
508
- "$type",
509
- "LineString"
510
- ],
511
- [
512
- "==",
513
- "class",
514
- "runway"
515
- ]
516
- ],
517
- paint: {
518
- "line-color": "rgb(255, 255, 255)",
519
- "line-width": {
520
- base: 1.2,
521
- stops: [
522
- [
523
- 11,
524
- 3
525
- ],
526
- [
527
- 20,
528
- 16
529
- ]
530
- ]
531
- }
532
- }
533
- },
534
- {
535
- id: "aeroway_taxiway",
536
- type: "line",
537
- metadata: {
538
- },
539
- source: "openmaptiles",
540
- "source-layer": "aeroway",
541
- minzoom: 11,
542
- filter: [
543
- "all",
544
- [
545
- "==",
546
- "$type",
547
- "LineString"
548
- ],
549
- [
550
- "==",
551
- "class",
552
- "taxiway"
553
- ]
554
- ],
555
- paint: {
556
- "line-color": "rgb(255, 255, 255)",
557
- "line-width": {
558
- base: 1.2,
559
- stops: [
560
- [
561
- 11,
562
- 0.5
563
- ],
564
- [
565
- 20,
566
- 6
567
- ]
568
- ]
569
- }
570
- }
571
- },
572
- {
573
- id: "ferry",
574
- type: "line",
575
- source: "openmaptiles",
576
- "source-layer": "transportation",
577
- filter: [
578
- "all",
579
- [
580
- "in",
581
- "class",
582
- "ferry"
583
- ]
584
- ],
585
- layout: {
586
- "line-join": "round",
587
- visibility: "visible"
588
- },
589
- paint: {
590
- "line-color": "rgb(182, 182, 182)",
591
- "line-dasharray": [
592
- 2,
593
- 2
594
- ],
595
- "line-width": 1.1
596
- }
597
- },
598
- {
599
- id: "tunnel_motorway_link_casing",
600
- type: "line",
601
- metadata: {
602
- },
603
- source: "openmaptiles",
604
- "source-layer": "transportation",
605
- filter: [
606
- "all",
607
- [
608
- "==",
609
- "class",
610
- "motorway"
611
- ],
612
- [
613
- "==",
614
- "ramp",
615
- 1
616
- ],
617
- [
618
- "==",
619
- "brunnel",
620
- "tunnel"
621
- ]
622
- ],
623
- layout: {
624
- "line-join": "round",
625
- visibility: "visible"
626
- },
627
- paint: {
628
- "line-color": "rgb(233, 160, 182)",
629
- "line-dasharray": [
630
- 0.5,
631
- 0.25
632
- ],
633
- "line-opacity": 1,
634
- "line-width": {
635
- base: 1.2,
636
- stops: [
637
- [
638
- 12,
639
- 1
640
- ],
641
- [
642
- 13,
643
- 3
644
- ],
645
- [
646
- 14,
647
- 4
648
- ],
649
- [
650
- 20,
651
- 15
652
- ]
653
- ]
654
- }
655
- }
656
- },
657
- {
658
- id: "tunnel_service_track_casing",
659
- type: "line",
660
- metadata: {
661
- },
662
- source: "openmaptiles",
663
- "source-layer": "transportation",
664
- filter: [
665
- "all",
666
- [
667
- "==",
668
- "brunnel",
669
- "tunnel"
670
- ],
671
- [
672
- "in",
673
- "class",
674
- "service",
675
- "track"
676
- ]
677
- ],
678
- layout: {
679
- "line-join": "round"
680
- },
681
- paint: {
682
- "line-color": "rgb(225, 225, 225)",
683
- "line-dasharray": [
684
- 0.5,
685
- 0.25
686
- ],
687
- "line-width": {
688
- base: 1.2,
689
- stops: [
690
- [
691
- 15,
692
- 1
693
- ],
694
- [
695
- 16,
696
- 4
697
- ],
698
- [
699
- 20,
700
- 11
701
- ]
702
- ]
703
- }
704
- }
705
- },
706
- {
707
- id: "tunnel_link_casing",
708
- type: "line",
709
- metadata: {
710
- },
711
- source: "openmaptiles",
712
- "source-layer": "transportation",
713
- filter: [
714
- "all",
715
- [
716
- "==",
717
- "ramp",
718
- "1"
719
- ],
720
- [
721
- "==",
722
- "brunnel",
723
- "tunnel"
724
- ]
725
- ],
726
- layout: {
727
- "line-join": "round"
728
- },
729
- paint: {
730
- "line-color": "rgb(233, 160, 182)",
731
- "line-opacity": 1,
732
- "line-width": {
733
- base: 1.2,
734
- stops: [
735
- [
736
- 12,
737
- 1
738
- ],
739
- [
740
- 13,
741
- 3
742
- ],
743
- [
744
- 14,
745
- 4
746
- ],
747
- [
748
- 20,
749
- 15
750
- ]
751
- ]
752
- }
753
- }
754
- },
755
- {
756
- id: "tunnel_street_casing",
757
- type: "line",
758
- metadata: {
759
- },
760
- source: "openmaptiles",
761
- "source-layer": "transportation",
762
- filter: [
763
- "all",
764
- [
765
- "==",
766
- "brunnel",
767
- "tunnel"
768
- ],
769
- [
770
- "in",
771
- "class",
772
- "street",
773
- "street_limited"
774
- ]
775
- ],
776
- layout: {
777
- "line-join": "round"
778
- },
779
- paint: {
780
- "line-color": "rgb(225, 225, 225)",
781
- "line-opacity": {
782
- stops: [
783
- [
784
- 12,
785
- 0
786
- ],
787
- [
788
- 12.5,
789
- 1
790
- ]
791
- ]
792
- },
793
- "line-width": {
794
- base: 1.2,
795
- stops: [
796
- [
797
- 12,
798
- 0.5
799
- ],
800
- [
801
- 13,
802
- 1
803
- ],
804
- [
805
- 14,
806
- 4
807
- ],
808
- [
809
- 20,
810
- 15
811
- ]
812
- ]
813
- }
814
- }
815
- },
816
- {
817
- id: "tunnel_secondary_tertiary_casing",
818
- type: "line",
819
- metadata: {
820
- },
821
- source: "openmaptiles",
822
- "source-layer": "transportation",
823
- filter: [
824
- "all",
825
- [
826
- "==",
827
- "brunnel",
828
- "tunnel"
829
- ],
830
- [
831
- "in",
832
- "class",
833
- "secondary",
834
- "tertiary"
835
- ]
836
- ],
837
- layout: {
838
- "line-join": "round"
839
- },
840
- paint: {
841
- "line-color": "rgb(212, 212, 212)",
842
- "line-dasharray": [
843
- 0.5,
844
- 0.25
845
- ],
846
- "line-opacity": 1,
847
- "line-width": {
848
- base: 1.2,
849
- stops: [
850
- [
851
- 8,
852
- 1.5
853
- ],
854
- [
855
- 20,
856
- 17
857
- ]
858
- ]
859
- }
860
- }
861
- },
862
- {
863
- id: "tunnel_trunk_primary_casing",
864
- type: "line",
865
- metadata: {
866
- },
867
- source: "openmaptiles",
868
- "source-layer": "transportation",
869
- filter: [
870
- "all",
871
- [
872
- "==",
873
- "brunnel",
874
- "tunnel"
875
- ],
876
- [
877
- "in",
878
- "class",
879
- "primary",
880
- "trunk"
881
- ]
882
- ],
883
- layout: {
884
- "line-join": "round"
885
- },
886
- paint: {
887
- "line-color": "rgb(233, 160, 182)",
888
- "line-dasharray": [
889
- 0.5,
890
- 0.25
891
- ],
892
- "line-width": {
893
- base: 1.2,
894
- stops: [
895
- [
896
- 5,
897
- 0.4
898
- ],
899
- [
900
- 6,
901
- 0.7
902
- ],
903
- [
904
- 7,
905
- 1.75
906
- ],
907
- [
908
- 20,
909
- 22
910
- ]
911
- ]
912
- }
913
- }
914
- },
915
- {
916
- id: "tunnel_motorway_casing",
917
- type: "line",
918
- metadata: {
919
- },
920
- source: "openmaptiles",
921
- "source-layer": "transportation",
922
- filter: [
923
- "all",
924
- [
925
- "==",
926
- "class",
927
- "motorway"
928
- ],
929
- [
930
- "==",
931
- "brunnel",
932
- "tunnel"
933
- ]
934
- ],
935
- layout: {
936
- "line-join": "round",
937
- visibility: "visible"
938
- },
939
- paint: {
940
- "line-color": "rgb(233, 160, 182)",
941
- "line-dasharray": [
942
- 0.5,
943
- 0.25
944
- ],
945
- "line-width": {
946
- base: 1.2,
947
- stops: [
948
- [
949
- 5,
950
- 0.4
951
- ],
952
- [
953
- 6,
954
- 0.7
955
- ],
956
- [
957
- 7,
958
- 1.75
959
- ],
960
- [
961
- 20,
962
- 22
963
- ]
964
- ]
965
- }
966
- }
967
- },
968
- {
969
- id: "tunnel_path_pedestrian",
970
- type: "line",
971
- metadata: {
972
- },
973
- source: "openmaptiles",
974
- "source-layer": "transportation",
975
- filter: [
976
- "all",
977
- [
978
- "==",
979
- "$type",
980
- "LineString"
981
- ],
982
- [
983
- "==",
984
- "brunnel",
985
- "tunnel"
986
- ],
987
- [
988
- "in",
989
- "class",
990
- "path",
991
- "pedestrian"
992
- ]
993
- ],
994
- layout: {
995
- visibility: "visible"
996
- },
997
- paint: {
998
- "line-color": "rgba(216, 205, 206, 0.45)",
999
- "line-dasharray": [
1000
- 1,
1001
- 0.75
1002
- ],
1003
- "line-width": {
1004
- base: 1.2,
1005
- stops: [
1006
- [
1007
- 14,
1008
- 0.5
1009
- ],
1010
- [
1011
- 20,
1012
- 6
1013
- ]
1014
- ]
1015
- }
1016
- }
1017
- },
1018
- {
1019
- id: "tunnel_motorway_link",
1020
- type: "line",
1021
- metadata: {
1022
- },
1023
- source: "openmaptiles",
1024
- "source-layer": "transportation",
1025
- filter: [
1026
- "all",
1027
- [
1028
- "==",
1029
- "class",
1030
- "motorway_link"
1031
- ],
1032
- [
1033
- "==",
1034
- "ramp",
1035
- 1
1036
- ],
1037
- [
1038
- "==",
1039
- "brunnel",
1040
- "tunnel"
1041
- ]
1042
- ],
1043
- layout: {
1044
- "line-join": "round",
1045
- visibility: "visible"
1046
- },
1047
- paint: {
1048
- "line-color": "rgb(251, 181, 195)",
1049
- "line-width": {
1050
- base: 1.2,
1051
- stops: [
1052
- [
1053
- 12.5,
1054
- 0
1055
- ],
1056
- [
1057
- 13,
1058
- 1.5
1059
- ],
1060
- [
1061
- 14,
1062
- 2.5
1063
- ],
1064
- [
1065
- 20,
1066
- 11.5
1067
- ]
1068
- ]
1069
- }
1070
- }
1071
- },
1072
- {
1073
- id: "tunnel_service_track",
1074
- type: "line",
1075
- metadata: {
1076
- },
1077
- source: "openmaptiles",
1078
- "source-layer": "transportation",
1079
- filter: [
1080
- "all",
1081
- [
1082
- "==",
1083
- "brunnel",
1084
- "tunnel"
1085
- ],
1086
- [
1087
- "in",
1088
- "class",
1089
- "service",
1090
- "track"
1091
- ]
1092
- ],
1093
- layout: {
1094
- "line-join": "round"
1095
- },
1096
- paint: {
1097
- "line-color": "rgb(255, 255, 255)",
1098
- "line-width": {
1099
- base: 1.2,
1100
- stops: [
1101
- [
1102
- 15.5,
1103
- 0
1104
- ],
1105
- [
1106
- 16,
1107
- 2
1108
- ],
1109
- [
1110
- 20,
1111
- 7.5
1112
- ]
1113
- ]
1114
- }
1115
- }
1116
- },
1117
- {
1118
- id: "tunnel_link",
1119
- type: "line",
1120
- metadata: {
1121
- },
1122
- source: "openmaptiles",
1123
- "source-layer": "transportation",
1124
- filter: [
1125
- "all",
1126
- [
1127
- "==",
1128
- "ramp",
1129
- "1"
1130
- ],
1131
- [
1132
- "==",
1133
- "brunnel",
1134
- "tunnel"
1135
- ]
1136
- ],
1137
- layout: {
1138
- "line-join": "round"
1139
- },
1140
- paint: {
1141
- "line-color": "rgb(254, 240, 240)",
1142
- "line-width": {
1143
- base: 1.2,
1144
- stops: [
1145
- [
1146
- 12.5,
1147
- 0
1148
- ],
1149
- [
1150
- 13,
1151
- 1.5
1152
- ],
1153
- [
1154
- 14,
1155
- 2.5
1156
- ],
1157
- [
1158
- 20,
1159
- 11.5
1160
- ]
1161
- ]
1162
- }
1163
- }
1164
- },
1165
- {
1166
- id: "tunnel_minor",
1167
- type: "line",
1168
- metadata: {
1169
- },
1170
- source: "openmaptiles",
1171
- "source-layer": "transportation",
1172
- filter: [
1173
- "all",
1174
- [
1175
- "==",
1176
- "brunnel",
1177
- "tunnel"
1178
- ],
1179
- [
1180
- "in",
1181
- "class",
1182
- "minor"
1183
- ]
1184
- ],
1185
- layout: {
1186
- "line-join": "round"
1187
- },
1188
- paint: {
1189
- "line-color": "rgb(255, 255, 255)",
1190
- "line-opacity": 1,
1191
- "line-width": {
1192
- base: 1.2,
1193
- stops: [
1194
- [
1195
- 13.5,
1196
- 0
1197
- ],
1198
- [
1199
- 14,
1200
- 2.5
1201
- ],
1202
- [
1203
- 20,
1204
- 11.5
1205
- ]
1206
- ]
1207
- }
1208
- }
1209
- },
1210
- {
1211
- id: "tunnel_secondary_tertiary",
1212
- type: "line",
1213
- metadata: {
1214
- },
1215
- source: "openmaptiles",
1216
- "source-layer": "transportation",
1217
- filter: [
1218
- "all",
1219
- [
1220
- "==",
1221
- "brunnel",
1222
- "tunnel"
1223
- ],
1224
- [
1225
- "in",
1226
- "class",
1227
- "secondary",
1228
- "tertiary"
1229
- ]
1230
- ],
1231
- layout: {
1232
- "line-join": "round"
1233
- },
1234
- paint: {
1235
- "line-color": "rgb(255, 255, 255)",
1236
- "line-width": {
1237
- base: 1.2,
1238
- stops: [
1239
- [
1240
- 6.5,
1241
- 0
1242
- ],
1243
- [
1244
- 8,
1245
- 0.5
1246
- ],
1247
- [
1248
- 20,
1249
- 13
1250
- ]
1251
- ]
1252
- }
1253
- }
1254
- },
1255
- {
1256
- id: "tunnel_trunk_primary",
1257
- type: "line",
1258
- metadata: {
1259
- },
1260
- source: "openmaptiles",
1261
- "source-layer": "transportation",
1262
- filter: [
1263
- "all",
1264
- [
1265
- "==",
1266
- "brunnel",
1267
- "tunnel"
1268
- ],
1269
- [
1270
- "in",
1271
- "class",
1272
- "primary",
1273
- "trunk"
1274
- ]
1275
- ],
1276
- layout: {
1277
- "line-join": "round"
1278
- },
1279
- paint: {
1280
- "line-color": "rgb(254, 240, 240)",
1281
- "line-width": {
1282
- base: 1.2,
1283
- stops: [
1284
- [
1285
- 5,
1286
- 0
1287
- ],
1288
- [
1289
- 7,
1290
- 1
1291
- ],
1292
- [
1293
- 20,
1294
- 18
1295
- ]
1296
- ]
1297
- }
1298
- }
1299
- },
1300
- {
1301
- id: "tunnel_motorway",
1302
- type: "line",
1303
- metadata: {
1304
- },
1305
- source: "openmaptiles",
1306
- "source-layer": "transportation",
1307
- filter: [
1308
- "all",
1309
- [
1310
- "==",
1311
- "class",
1312
- "motorway"
1313
- ],
1314
- [
1315
- "==",
1316
- "brunnel",
1317
- "tunnel"
1318
- ]
1319
- ],
1320
- layout: {
1321
- "line-join": "round",
1322
- visibility: "visible"
1323
- },
1324
- paint: {
1325
- "line-color": "rgb(253, 209, 217)",
1326
- "line-width": {
1327
- base: 1.2,
1328
- stops: [
1329
- [
1330
- 5,
1331
- 0
1332
- ],
1333
- [
1334
- 7,
1335
- 1
1336
- ],
1337
- [
1338
- 20,
1339
- 18
1340
- ]
1341
- ]
1342
- }
1343
- }
1344
- },
1345
- {
1346
- id: "tunnel_major_rail",
1347
- type: "line",
1348
- metadata: {
1349
- },
1350
- source: "openmaptiles",
1351
- "source-layer": "transportation",
1352
- filter: [
1353
- "all",
1354
- [
1355
- "==",
1356
- "brunnel",
1357
- "tunnel"
1358
- ],
1359
- [
1360
- "in",
1361
- "class",
1362
- "rail"
1363
- ]
1364
- ],
1365
- paint: {
1366
- "line-color": "rgb(208, 208, 208)",
1367
- "line-width": {
1368
- base: 1.4,
1369
- stops: [
1370
- [
1371
- 14,
1372
- 0.4
1373
- ],
1374
- [
1375
- 15,
1376
- 0.75
1377
- ],
1378
- [
1379
- 20,
1380
- 2
1381
- ]
1382
- ]
1383
- }
1384
- }
1385
- },
1386
- {
1387
- id: "tunnel_major_rail_hatching",
1388
- type: "line",
1389
- metadata: {
1390
- },
1391
- source: "openmaptiles",
1392
- "source-layer": "transportation",
1393
- filter: [
1394
- "all",
1395
- [
1396
- "==",
1397
- "brunnel",
1398
- "tunnel"
1399
- ],
1400
- [
1401
- "==",
1402
- "class",
1403
- "rail"
1404
- ]
1405
- ],
1406
- paint: {
1407
- "line-color": "rgb(208, 208, 208)",
1408
- "line-dasharray": [
1409
- 0.2,
1410
- 8
1411
- ],
1412
- "line-width": {
1413
- base: 1.4,
1414
- stops: [
1415
- [
1416
- 14.5,
1417
- 0
1418
- ],
1419
- [
1420
- 15,
1421
- 3
1422
- ],
1423
- [
1424
- 20,
1425
- 8
1426
- ]
1427
- ]
1428
- }
1429
- }
1430
- },
1431
- {
1432
- id: "road_area_pier",
1433
- type: "fill",
1434
- metadata: {
1435
- },
1436
- source: "openmaptiles",
1437
- "source-layer": "transportation",
1438
- filter: [
1439
- "all",
1440
- [
1441
- "==",
1442
- "$type",
1443
- "Polygon"
1444
- ],
1445
- [
1446
- "==",
1447
- "class",
1448
- "pier"
1449
- ]
1450
- ],
1451
- layout: {
1452
- visibility: "visible"
1453
- },
1454
- paint: {
1455
- "fill-antialias": true,
1456
- "fill-color": "rgb(252, 252, 252)"
1457
- }
1458
- },
1459
- {
1460
- id: "road_pier",
1461
- type: "line",
1462
- metadata: {
1463
- },
1464
- source: "openmaptiles",
1465
- "source-layer": "transportation",
1466
- filter: [
1467
- "all",
1468
- [
1469
- "==",
1470
- "$type",
1471
- "LineString"
1472
- ],
1473
- [
1474
- "in",
1475
- "class",
1476
- "pier"
1477
- ]
1478
- ],
1479
- layout: {
1480
- "line-cap": "round",
1481
- "line-join": "round"
1482
- },
1483
- paint: {
1484
- "line-color": "rgba(246, 241, 229, 1)",
1485
- "line-width": {
1486
- base: 1.2,
1487
- stops: [
1488
- [
1489
- 15,
1490
- 1
1491
- ],
1492
- [
1493
- 17,
1494
- 4
1495
- ]
1496
- ]
1497
- }
1498
- }
1499
- },
1500
- {
1501
- id: "road_area_bridge",
1502
- type: "fill",
1503
- metadata: {
1504
- },
1505
- source: "openmaptiles",
1506
- "source-layer": "transportation",
1507
- filter: [
1508
- "all",
1509
- [
1510
- "==",
1511
- "$type",
1512
- "Polygon"
1513
- ],
1514
- [
1515
- "==",
1516
- "brunnel",
1517
- "bridge"
1518
- ]
1519
- ],
1520
- layout: {
1521
- visibility: "visible"
1522
- },
1523
- paint: {
1524
- "fill-antialias": true,
1525
- "fill-color": "rgba(255, 255, 255, 0.6)"
1526
- }
1527
- },
1528
- {
1529
- id: "road_area_pattern",
1530
- type: "fill",
1531
- metadata: {
1532
- },
1533
- source: "openmaptiles",
1534
- "source-layer": "transportation",
1535
- filter: [
1536
- "all",
1537
- [
1538
- "==",
1539
- "$type",
1540
- "Polygon"
1541
- ],
1542
- [
1543
- "!has",
1544
- "brunnel"
1545
- ],
1546
- [
1547
- "!in",
1548
- "class",
1549
- "bridge",
1550
- "pier"
1551
- ]
1552
- ],
1553
- layout: {
1554
- visibility: "visible"
1555
- },
1556
- paint: {
1557
- "fill-color": "rgba(252, 252, 252, 1.0)"
1558
- }
1559
- },
1560
- {
1561
- id: "road_service_track_casing",
1562
- type: "line",
1563
- metadata: {
1564
- },
1565
- source: "openmaptiles",
1566
- "source-layer": "transportation",
1567
- filter: [
1568
- "all",
1569
- [
1570
- "!in",
1571
- "brunnel",
1572
- "bridge",
1573
- "tunnel"
1574
- ],
1575
- [
1576
- "in",
1577
- "class",
1578
- "service",
1579
- "track"
1580
- ]
1581
- ],
1582
- layout: {
1583
- "line-cap": "round",
1584
- "line-join": "round"
1585
- },
1586
- paint: {
1587
- "line-color": "rgb(225, 225, 225)",
1588
- "line-width": {
1589
- base: 1.2,
1590
- stops: [
1591
- [
1592
- 15,
1593
- 1
1594
- ],
1595
- [
1596
- 16,
1597
- 4
1598
- ],
1599
- [
1600
- 20,
1601
- 11
1602
- ]
1603
- ]
1604
- }
1605
- }
1606
- },
1607
- {
1608
- id: "road_link_casing",
1609
- type: "line",
1610
- metadata: {
1611
- },
1612
- source: "openmaptiles",
1613
- "source-layer": "transportation",
1614
- minzoom: 13,
1615
- filter: [
1616
- "all",
1617
- [
1618
- "!in",
1619
- "brunnel",
1620
- "bridge",
1621
- "tunnel"
1622
- ],
1623
- [
1624
- "!in",
1625
- "class",
1626
- "motorway",
1627
- "trunk",
1628
- "primary",
1629
- "pedestrian",
1630
- "path",
1631
- "track",
1632
- "service"
1633
- ],
1634
- [
1635
- "==",
1636
- "ramp",
1637
- 1
1638
- ]
1639
- ],
1640
- layout: {
1641
- "line-cap": "round",
1642
- "line-join": "round",
1643
- visibility: "visible"
1644
- },
1645
- paint: {
1646
- "line-color": "rgb(233, 160, 182)",
1647
- "line-opacity": 1,
1648
- "line-width": {
1649
- base: 1.2,
1650
- stops: [
1651
- [
1652
- 12,
1653
- 1
1654
- ],
1655
- [
1656
- 13,
1657
- 3
1658
- ],
1659
- [
1660
- 14,
1661
- 4
1662
- ],
1663
- [
1664
- 20,
1665
- 15
1666
- ]
1667
- ]
1668
- }
1669
- }
1670
- },
1671
- {
1672
- id: "road_trunk_primary_link_casing",
1673
- type: "line",
1674
- metadata: {
1675
- },
1676
- source: "openmaptiles",
1677
- "source-layer": "transportation",
1678
- filter: [
1679
- "all",
1680
- [
1681
- "!in",
1682
- "brunnel",
1683
- "bridge",
1684
- "tunnel"
1685
- ],
1686
- [
1687
- "==",
1688
- "ramp",
1689
- 1
1690
- ],
1691
- [
1692
- "in",
1693
- "class",
1694
- "primary",
1695
- "trunk"
1696
- ]
1697
- ],
1698
- layout: {
1699
- "line-cap": "butt",
1700
- "line-join": "round",
1701
- visibility: "visible"
1702
- },
1703
- paint: {
1704
- "line-color": "rgba(246, 241, 232, 1)",
1705
- "line-width": {
1706
- base: 1.2,
1707
- stops: [
1708
- [
1709
- 5,
1710
- 0
1711
- ],
1712
- [
1713
- 7,
1714
- 0.7
1715
- ],
1716
- [
1717
- 20,
1718
- 14
1719
- ]
1720
- ]
1721
- }
1722
- }
1723
- },
1724
- {
1725
- id: "road_motorway_link_casing",
1726
- type: "line",
1727
- metadata: {
1728
- },
1729
- source: "openmaptiles",
1730
- "source-layer": "transportation",
1731
- minzoom: 12,
1732
- filter: [
1733
- "all",
1734
- [
1735
- "!in",
1736
- "brunnel",
1737
- "bridge",
1738
- "tunnel"
1739
- ],
1740
- [
1741
- "==",
1742
- "class",
1743
- "motorway"
1744
- ],
1745
- [
1746
- "==",
1747
- "ramp",
1748
- 1
1749
- ]
1750
- ],
1751
- layout: {
1752
- "line-cap": "butt",
1753
- "line-join": "round"
1754
- },
1755
- paint: {
1756
- "line-color": "rgba(246, 241, 232, 1)",
1757
- "line-opacity": 1,
1758
- "line-width": {
1759
- base: 1.2,
1760
- stops: [
1761
- [
1762
- 12,
1763
- 1
1764
- ],
1765
- [
1766
- 13,
1767
- 3
1768
- ],
1769
- [
1770
- 14,
1771
- 4
1772
- ],
1773
- [
1774
- 20,
1775
- 15
1776
- ]
1777
- ]
1778
- }
1779
- }
1780
- },
1781
- {
1782
- id: "road_minor_casing",
1783
- type: "line",
1784
- metadata: {
1785
- },
1786
- source: "openmaptiles",
1787
- "source-layer": "transportation",
1788
- filter: [
1789
- "all",
1790
- [
1791
- "==",
1792
- "$type",
1793
- "LineString"
1794
- ],
1795
- [
1796
- "!in",
1797
- "brunnel",
1798
- "bridge",
1799
- "tunnel"
1800
- ],
1801
- [
1802
- "in",
1803
- "class",
1804
- "minor"
1805
- ],
1806
- [
1807
- "!=",
1808
- "ramp",
1809
- "1"
1810
- ]
1811
- ],
1812
- layout: {
1813
- "line-cap": "round",
1814
- "line-join": "round"
1815
- },
1816
- paint: {
1817
- "line-color": "rgb(225, 225, 225)",
1818
- "line-opacity": {
1819
- stops: [
1820
- [
1821
- 12,
1822
- 0
1823
- ],
1824
- [
1825
- 12.5,
1826
- 1
1827
- ]
1828
- ]
1829
- },
1830
- "line-width": {
1831
- base: 1.2,
1832
- stops: [
1833
- [
1834
- 12,
1835
- 0.5
1836
- ],
1837
- [
1838
- 13,
1839
- 1
1840
- ],
1841
- [
1842
- 14,
1843
- 4
1844
- ],
1845
- [
1846
- 20,
1847
- 20
1848
- ]
1849
- ]
1850
- }
1851
- }
1852
- },
1853
- {
1854
- id: "road_secondary_tertiary_casing",
1855
- type: "line",
1856
- metadata: {
1857
- },
1858
- source: "openmaptiles",
1859
- "source-layer": "transportation",
1860
- filter: [
1861
- "all",
1862
- [
1863
- "!in",
1864
- "brunnel",
1865
- "bridge",
1866
- "tunnel"
1867
- ],
1868
- [
1869
- "in",
1870
- "class",
1871
- "secondary",
1872
- "tertiary"
1873
- ],
1874
- [
1875
- "!=",
1876
- "ramp",
1877
- 1
1878
- ]
1879
- ],
1880
- layout: {
1881
- "line-cap": "round",
1882
- "line-join": "round",
1883
- visibility: "none"
1884
- },
1885
- paint: {
1886
- "line-color": "rgb(212, 212, 212)",
1887
- "line-opacity": 1,
1888
- "line-width": {
1889
- base: 1.2,
1890
- stops: [
1891
- [
1892
- 8,
1893
- 1.5
1894
- ],
1895
- [
1896
- 20,
1897
- 17
1898
- ]
1899
- ]
1900
- }
1901
- }
1902
- },
1903
- {
1904
- id: "road_trunk_primary_casing",
1905
- type: "line",
1906
- metadata: {
1907
- },
1908
- source: "openmaptiles",
1909
- "source-layer": "transportation",
1910
- filter: [
1911
- "all",
1912
- [
1913
- "!in",
1914
- "brunnel",
1915
- "bridge",
1916
- "tunnel"
1917
- ],
1918
- [
1919
- "!=",
1920
- "ramp",
1921
- 1
1922
- ],
1923
- [
1924
- "in",
1925
- "class",
1926
- "primary",
1927
- "trunk"
1928
- ],
1929
- [
1930
- "!=",
1931
- "ramp",
1932
- 1
1933
- ]
1934
- ],
1935
- layout: {
1936
- "line-cap": "butt",
1937
- "line-join": "round",
1938
- visibility: "none"
1939
- },
1940
- paint: {
1941
- "line-color": "rgba(246, 241, 232, 1)",
1942
- "line-opacity": 1,
1943
- "line-width": {
1944
- base: 1.2,
1945
- stops: [
1946
- [
1947
- 5,
1948
- 0.4
1949
- ],
1950
- [
1951
- 6,
1952
- 0.7
1953
- ],
1954
- [
1955
- 7,
1956
- 1.75
1957
- ],
1958
- [
1959
- 20,
1960
- 22
1961
- ]
1962
- ]
1963
- }
1964
- }
1965
- },
1966
- {
1967
- id: "road_motorway_casing",
1968
- type: "line",
1969
- metadata: {
1970
- },
1971
- source: "openmaptiles",
1972
- "source-layer": "transportation",
1973
- minzoom: 5,
1974
- filter: [
1975
- "all",
1976
- [
1977
- "!in",
1978
- "brunnel",
1979
- "bridge",
1980
- "tunnel"
1981
- ],
1982
- [
1983
- "==",
1984
- "class",
1985
- "motorway"
1986
- ],
1987
- [
1988
- "!=",
1989
- "ramp",
1990
- 1
1991
- ]
1992
- ],
1993
- layout: {
1994
- "line-cap": "butt",
1995
- "line-join": "round",
1996
- visibility: "visible"
1997
- },
1998
- paint: {
1999
- "line-color": "rgba(163, 213, 217, .)",
2000
- "line-width": {
2001
- base: 1.2,
2002
- stops: [
2003
- [
2004
- 5,
2005
- 0.4
2006
- ],
2007
- [
2008
- 6,
2009
- 0.7
2010
- ],
2011
- [
2012
- 7,
2013
- 1.75
2014
- ],
2015
- [
2016
- 20,
2017
- 22
2018
- ]
2019
- ]
2020
- }
2021
- }
2022
- },
2023
- {
2024
- id: "road_path_pedestrian",
2025
- type: "line",
2026
- metadata: {
2027
- },
2028
- source: "openmaptiles",
2029
- "source-layer": "transportation",
2030
- minzoom: 14,
2031
- filter: [
2032
- "all",
2033
- [
2034
- "==",
2035
- "$type",
2036
- "LineString"
2037
- ],
2038
- [
2039
- "!in",
2040
- "brunnel",
2041
- "bridge",
2042
- "tunnel"
2043
- ],
2044
- [
2045
- "in",
2046
- "class",
2047
- "path",
2048
- "pedestrian"
2049
- ]
2050
- ],
2051
- layout: {
2052
- "line-join": "round",
2053
- visibility: "visible"
2054
- },
2055
- paint: {
2056
- "line-color": "rgba(216, 205, 206, 0.45)",
2057
- "line-dasharray": [
2058
- 1,
2059
- 1
2060
- ],
2061
- "line-width": {
2062
- base: 1.2,
2063
- stops: [
2064
- [
2065
- 14,
2066
- 1
2067
- ],
2068
- [
2069
- 20,
2070
- 6
2071
- ]
2072
- ]
2073
- }
2074
- }
2075
- },
2076
- {
2077
- id: "road_link",
2078
- type: "line",
2079
- metadata: {
2080
- },
2081
- source: "openmaptiles",
2082
- "source-layer": "transportation",
2083
- minzoom: 13,
2084
- filter: [
2085
- "all",
2086
- [
2087
- "!in",
2088
- "brunnel",
2089
- "bridge",
2090
- "tunnel"
2091
- ],
2092
- [
2093
- "==",
2094
- "ramp",
2095
- 1
2096
- ],
2097
- [
2098
- "!in",
2099
- "class",
2100
- "motorway",
2101
- "trunk",
2102
- "primary",
2103
- "pedestrian",
2104
- "path",
2105
- "track",
2106
- "service"
2107
- ]
2108
- ],
2109
- layout: {
2110
- "line-cap": "round",
2111
- "line-join": "round",
2112
- visibility: "visible"
2113
- },
2114
- paint: {
2115
- "line-color": "rgba(246, 241, 232, 1)",
2116
- "line-width": {
2117
- base: 1.2,
2118
- stops: [
2119
- [
2120
- 12.5,
2121
- 0
2122
- ],
2123
- [
2124
- 13,
2125
- 1.5
2126
- ],
2127
- [
2128
- 14,
2129
- 2.5
2130
- ],
2131
- [
2132
- 20,
2133
- 11.5
2134
- ]
2135
- ]
2136
- }
2137
- }
2138
- },
2139
- {
2140
- id: "road_trunk_primary_link",
2141
- type: "line",
2142
- metadata: {
2143
- },
2144
- source: "openmaptiles",
2145
- "source-layer": "transportation",
2146
- filter: [
2147
- "all",
2148
- [
2149
- "!in",
2150
- "brunnel",
2151
- "bridge",
2152
- "tunnel"
2153
- ],
2154
- [
2155
- "==",
2156
- "ramp",
2157
- 1
2158
- ],
2159
- [
2160
- "in",
2161
- "class",
2162
- "primary",
2163
- "trunk"
2164
- ]
2165
- ],
2166
- layout: {
2167
- "line-cap": "round",
2168
- "line-join": "round",
2169
- visibility: "visible"
2170
- },
2171
- paint: {
2172
- "line-color": "rgba(246, 241, 232, 1)",
2173
- "line-width": {
2174
- base: 1.2,
2175
- stops: [
2176
- [
2177
- 5,
2178
- 0
2179
- ],
2180
- [
2181
- 7,
2182
- 0.5
2183
- ],
2184
- [
2185
- 20,
2186
- 10
2187
- ]
2188
- ]
2189
- }
2190
- }
2191
- },
2192
- {
2193
- id: "road_motorway_link",
2194
- type: "line",
2195
- metadata: {
2196
- },
2197
- source: "openmaptiles",
2198
- "source-layer": "transportation",
2199
- minzoom: 12,
2200
- filter: [
2201
- "all",
2202
- [
2203
- "!in",
2204
- "brunnel",
2205
- "bridge",
2206
- "tunnel"
2207
- ],
2208
- [
2209
- "==",
2210
- "class",
2211
- "motorway"
2212
- ],
2213
- [
2214
- "==",
2215
- "ramp",
2216
- 1
2217
- ]
2218
- ],
2219
- layout: {
2220
- "line-cap": "round",
2221
- "line-join": "round"
2222
- },
2223
- paint: {
2224
- "line-color": "rgba(246, 241, 232, 1)",
2225
- "line-width": {
2226
- base: 1.2,
2227
- stops: [
2228
- [
2229
- 12.5,
2230
- 0
2231
- ],
2232
- [
2233
- 13,
2234
- 1.5
2235
- ],
2236
- [
2237
- 14,
2238
- 2.5
2239
- ],
2240
- [
2241
- 20,
2242
- 11.5
2243
- ]
2244
- ]
2245
- }
2246
- }
2247
- },
2248
- {
2249
- id: "road_service_track",
2250
- type: "line",
2251
- metadata: {
2252
- },
2253
- source: "openmaptiles",
2254
- "source-layer": "transportation",
2255
- filter: [
2256
- "all",
2257
- [
2258
- "!in",
2259
- "brunnel",
2260
- "bridge",
2261
- "tunnel"
2262
- ],
2263
- [
2264
- "in",
2265
- "class",
2266
- "service",
2267
- "track"
2268
- ]
2269
- ],
2270
- layout: {
2271
- "line-cap": "round",
2272
- "line-join": "round",
2273
- visibility: "visible"
2274
- },
2275
- paint: {
2276
- "line-color": "rgb(255, 255, 255)",
2277
- "line-width": {
2278
- base: 1.2,
2279
- stops: [
2280
- [
2281
- 15.5,
2282
- 0
2283
- ],
2284
- [
2285
- 16,
2286
- 2
2287
- ],
2288
- [
2289
- 20,
2290
- 7.5
2291
- ]
2292
- ]
2293
- }
2294
- }
2295
- },
2296
- {
2297
- id: "road_minor",
2298
- type: "line",
2299
- metadata: {
2300
- },
2301
- source: "openmaptiles",
2302
- "source-layer": "transportation",
2303
- filter: [
2304
- "all",
2305
- [
2306
- "==",
2307
- "$type",
2308
- "LineString"
2309
- ],
2310
- [
2311
- "all",
2312
- [
2313
- "!in",
2314
- "brunnel",
2315
- "bridge",
2316
- "tunnel"
2317
- ],
2318
- [
2319
- "in",
2320
- "class",
2321
- "minor"
2322
- ]
2323
- ]
2324
- ],
2325
- layout: {
2326
- "line-cap": "round",
2327
- "line-join": "round",
2328
- visibility: "none"
2329
- },
2330
- paint: {
2331
- "line-color": "rgb(255, 255, 255)",
2332
- "line-opacity": 1,
2333
- "line-width": {
2334
- base: 1.2,
2335
- stops: [
2336
- [
2337
- 13.5,
2338
- 0
2339
- ],
2340
- [
2341
- 14,
2342
- 2.5
2343
- ],
2344
- [
2345
- 20,
2346
- 18
2347
- ]
2348
- ]
2349
- }
2350
- }
2351
- },
2352
- {
2353
- id: "road_secondary_tertiary",
2354
- type: "line",
2355
- metadata: {
2356
- },
2357
- source: "openmaptiles",
2358
- "source-layer": "transportation",
2359
- filter: [
2360
- "all",
2361
- [
2362
- "!in",
2363
- "brunnel",
2364
- "bridge",
2365
- "tunnel"
2366
- ],
2367
- [
2368
- "in",
2369
- "class",
2370
- "secondary",
2371
- "tertiary"
2372
- ]
2373
- ],
2374
- layout: {
2375
- "line-cap": "round",
2376
- "line-join": "round",
2377
- visibility: "none"
2378
- },
2379
- paint: {
2380
- "line-color": "rgb(255, 255, 255)",
2381
- "line-width": {
2382
- base: 1.2,
2383
- stops: [
2384
- [
2385
- 6.5,
2386
- 0
2387
- ],
2388
- [
2389
- 8,
2390
- 0.5
2391
- ],
2392
- [
2393
- 20,
2394
- 13
2395
- ]
2396
- ]
2397
- }
2398
- }
2399
- },
2400
- {
2401
- id: "road_trunk_primary",
2402
- type: "line",
2403
- metadata: {
2404
- },
2405
- source: "openmaptiles",
2406
- "source-layer": "transportation",
2407
- filter: [
2408
- "all",
2409
- [
2410
- "!in",
2411
- "brunnel",
2412
- "bridge",
2413
- "tunnel"
2414
- ],
2415
- [
2416
- "!=",
2417
- "ramp",
2418
- 1
2419
- ],
2420
- [
2421
- "in",
2422
- "class",
2423
- "primary",
2424
- "trunk"
2425
- ]
2426
- ],
2427
- layout: {
2428
- "line-cap": "round",
2429
- "line-join": "round",
2430
- visibility: "visible"
2431
- },
2432
- paint: {
2433
- "line-color": "rgba(246, 241, 232, 1)",
2434
- "line-width": {
2435
- base: 1.2,
2436
- stops: [
2437
- [
2438
- 5,
2439
- 0
2440
- ],
2441
- [
2442
- 7,
2443
- 1
2444
- ],
2445
- [
2446
- 20,
2447
- 18
2448
- ]
2449
- ]
2450
- }
2451
- }
2452
- },
2453
- {
2454
- id: "road_motorway",
2455
- type: "line",
2456
- metadata: {
2457
- },
2458
- source: "openmaptiles",
2459
- "source-layer": "transportation",
2460
- minzoom: 5,
2461
- filter: [
2462
- "all",
2463
- [
2464
- "!in",
2465
- "brunnel",
2466
- "bridge",
2467
- "tunnel"
2468
- ],
2469
- [
2470
- "==",
2471
- "class",
2472
- "motorway"
2473
- ],
2474
- [
2475
- "!=",
2476
- "ramp",
2477
- 1
2478
- ]
2479
- ],
2480
- layout: {
2481
- "line-cap": "round",
2482
- "line-join": "round",
2483
- visibility: "visible"
2484
- },
2485
- paint: {
2486
- "line-color": {
2487
- stops: [
2488
- [
2489
- 5,
2490
- "rgba(246, 241, 232, 1)"
2491
- ],
2492
- [
2493
- 6,
2494
- "rgba(246, 241, 232, 1)"
2495
- ]
2496
- ]
2497
- },
2498
- "line-width": {
2499
- base: 1.2,
2500
- stops: [
2501
- [
2502
- 5,
2503
- 0
2504
- ],
2505
- [
2506
- 7,
2507
- 1
2508
- ],
2509
- [
2510
- 20,
2511
- 18
2512
- ]
2513
- ]
2514
- }
2515
- }
2516
- },
2517
- {
2518
- id: "road_major_rail",
2519
- type: "line",
2520
- metadata: {
2521
- },
2522
- source: "openmaptiles",
2523
- "source-layer": "transportation",
2524
- filter: [
2525
- "all",
2526
- [
2527
- "!in",
2528
- "brunnel",
2529
- "bridge",
2530
- "tunnel"
2531
- ],
2532
- [
2533
- "==",
2534
- "class",
2535
- "rail"
2536
- ]
2537
- ],
2538
- paint: {
2539
- "line-color": "rgb(208, 208, 208)",
2540
- "line-width": {
2541
- base: 1.4,
2542
- stops: [
2543
- [
2544
- 14,
2545
- 0.4
2546
- ],
2547
- [
2548
- 15,
2549
- 0.75
2550
- ],
2551
- [
2552
- 20,
2553
- 2
2554
- ]
2555
- ]
2556
- }
2557
- }
2558
- },
2559
- {
2560
- id: "road_major_rail_hatching",
2561
- type: "line",
2562
- metadata: {
2563
- },
2564
- source: "openmaptiles",
2565
- "source-layer": "transportation",
2566
- filter: [
2567
- "all",
2568
- [
2569
- "!in",
2570
- "brunnel",
2571
- "bridge",
2572
- "tunnel"
2573
- ],
2574
- [
2575
- "==",
2576
- "class",
2577
- "rail"
2578
- ]
2579
- ],
2580
- paint: {
2581
- "line-color": "rgb(208, 208, 208)",
2582
- "line-dasharray": [
2583
- 0.2,
2584
- 8
2585
- ],
2586
- "line-width": {
2587
- base: 1.4,
2588
- stops: [
2589
- [
2590
- 14.5,
2591
- 0
2592
- ],
2593
- [
2594
- 15,
2595
- 3
2596
- ],
2597
- [
2598
- 20,
2599
- 8
2600
- ]
2601
- ]
2602
- }
2603
- }
2604
- },
2605
- {
2606
- id: "building",
2607
- type: "fill",
2608
- metadata: {
2609
- },
2610
- source: "openmaptiles",
2611
- "source-layer": "building",
2612
- minzoom: 13,
2613
- maxzoom: 14,
2614
- layout: {
2615
- visibility: "visible"
2616
- },
2617
- paint: {
2618
- "fill-color": "rgba(181, 181, 181, 0.3)",
2619
- "fill-outline-color": {
2620
- stops: [
2621
- [
2622
- 13,
2623
- "rgba(198, 197, 197, 0.32)"
2624
- ],
2625
- [
2626
- 14,
2627
- "rgb(198, 197, 197)"
2628
- ]
2629
- ]
2630
- }
2631
- }
2632
- },
2633
- {
2634
- id: "building-3d",
2635
- type: "fill-extrusion",
2636
- metadata: {
2637
- },
2638
- source: "openmaptiles",
2639
- "source-layer": "building",
2640
- minzoom: 14,
2641
- filter: [
2642
- "all",
2643
- [
2644
- "!has",
2645
- "hide_3d"
2646
- ]
2647
- ],
2648
- layout: {
2649
- visibility: "visible"
2650
- },
2651
- paint: {
2652
- "fill-extrusion-base": {
2653
- property: "render_min_height",
2654
- type: "identity"
2655
- },
2656
- "fill-extrusion-color": "rgb(181, 181, 181)",
2657
- "fill-extrusion-height": {
2658
- property: "render_height",
2659
- type: "identity"
2660
- },
2661
- "fill-extrusion-opacity": 0.3
2662
- }
2663
- },
2664
- {
2665
- id: "waterway-bridge-case",
2666
- type: "line",
2667
- source: "openmaptiles",
2668
- "source-layer": "waterway",
2669
- filter: [
2670
- "all",
2671
- [
2672
- "==",
2673
- "$type",
2674
- "LineString"
2675
- ],
2676
- [
2677
- "==",
2678
- "brunnel",
2679
- "bridge"
2680
- ]
2681
- ],
2682
- layout: {
2683
- "line-cap": "butt",
2684
- "line-join": "miter"
2685
- },
2686
- paint: {
2687
- "line-color": "rgb(224, 224, 224)",
2688
- "line-gap-width": {
2689
- base: 1.3,
2690
- stops: [
2691
- [
2692
- 13,
2693
- 0.5
2694
- ],
2695
- [
2696
- 20,
2697
- 6
2698
- ]
2699
- ]
2700
- },
2701
- "line-width": {
2702
- base: 1.6,
2703
- stops: [
2704
- [
2705
- 12,
2706
- 0.5
2707
- ],
2708
- [
2709
- 20,
2710
- 5
2711
- ]
2712
- ]
2713
- }
2714
- }
2715
- },
2716
- {
2717
- id: "waterway-bridge",
2718
- type: "line",
2719
- source: "openmaptiles",
2720
- "source-layer": "waterway",
2721
- filter: [
2722
- "all",
2723
- [
2724
- "==",
2725
- "$type",
2726
- "LineString"
2727
- ],
2728
- [
2729
- "==",
2730
- "brunnel",
2731
- "bridge"
2732
- ]
2733
- ],
2734
- layout: {
2735
- "line-cap": "round",
2736
- "line-join": "round"
2737
- },
2738
- paint: {
2739
- "line-color": "rgb(223, 229, 235)",
2740
- "line-width": {
2741
- base: 1.3,
2742
- stops: [
2743
- [
2744
- 13,
2745
- 0.5
2746
- ],
2747
- [
2748
- 20,
2749
- 6
2750
- ]
2751
- ]
2752
- }
2753
- }
2754
- },
2755
- {
2756
- id: "bridge_motorway_link_casing",
2757
- type: "line",
2758
- metadata: {
2759
- },
2760
- source: "openmaptiles",
2761
- "source-layer": "transportation",
2762
- filter: [
2763
- "all",
2764
- [
2765
- "==",
2766
- "class",
2767
- "motorway"
2768
- ],
2769
- [
2770
- "==",
2771
- "ramp",
2772
- 1
2773
- ],
2774
- [
2775
- "==",
2776
- "brunnel",
2777
- "bridge"
2778
- ]
2779
- ],
2780
- layout: {
2781
- "line-join": "round"
2782
- },
2783
- paint: {
2784
- "line-color": "rgba(223, 219, 202, 1)",
2785
- "line-opacity": 1,
2786
- "line-width": {
2787
- base: 1.2,
2788
- stops: [
2789
- [
2790
- 12,
2791
- 1
2792
- ],
2793
- [
2794
- 13,
2795
- 3
2796
- ],
2797
- [
2798
- 14,
2799
- 4
2800
- ],
2801
- [
2802
- 20,
2803
- 15
2804
- ]
2805
- ]
2806
- }
2807
- }
2808
- },
2809
- {
2810
- id: "bridge_service_track_casing",
2811
- type: "line",
2812
- metadata: {
2813
- },
2814
- source: "openmaptiles",
2815
- "source-layer": "transportation",
2816
- filter: [
2817
- "all",
2818
- [
2819
- "==",
2820
- "brunnel",
2821
- "bridge"
2822
- ],
2823
- [
2824
- "in",
2825
- "class",
2826
- "service",
2827
- "track"
2828
- ]
2829
- ],
2830
- layout: {
2831
- "line-join": "round"
2832
- },
2833
- paint: {
2834
- "line-color": "rgb(225, 225, 225)",
2835
- "line-width": {
2836
- base: 1.2,
2837
- stops: [
2838
- [
2839
- 15,
2840
- 1
2841
- ],
2842
- [
2843
- 16,
2844
- 4
2845
- ],
2846
- [
2847
- 20,
2848
- 11
2849
- ]
2850
- ]
2851
- }
2852
- }
2853
- },
2854
- {
2855
- id: "bridge_link_casing",
2856
- type: "line",
2857
- metadata: {
2858
- },
2859
- source: "openmaptiles",
2860
- "source-layer": "transportation",
2861
- filter: [
2862
- "all",
2863
- [
2864
- "==",
2865
- "class",
2866
- "link"
2867
- ],
2868
- [
2869
- "==",
2870
- "brunnel",
2871
- "bridge"
2872
- ]
2873
- ],
2874
- layout: {
2875
- "line-join": "round"
2876
- },
2877
- paint: {
2878
- "line-color": "rgba(223, 219, 202, 1)",
2879
- "line-opacity": 1,
2880
- "line-width": {
2881
- base: 1.2,
2882
- stops: [
2883
- [
2884
- 12,
2885
- 1
2886
- ],
2887
- [
2888
- 13,
2889
- 3
2890
- ],
2891
- [
2892
- 14,
2893
- 4
2894
- ],
2895
- [
2896
- 20,
2897
- 15
2898
- ]
2899
- ]
2900
- }
2901
- }
2902
- },
2903
- {
2904
- id: "bridge_street_casing",
2905
- type: "line",
2906
- metadata: {
2907
- },
2908
- source: "openmaptiles",
2909
- "source-layer": "transportation",
2910
- filter: [
2911
- "all",
2912
- [
2913
- "==",
2914
- "brunnel",
2915
- "bridge"
2916
- ],
2917
- [
2918
- "in",
2919
- "class",
2920
- "street",
2921
- "street_limited"
2922
- ]
2923
- ],
2924
- layout: {
2925
- "line-join": "round"
2926
- },
2927
- paint: {
2928
- "line-color": "rgb(209, 209, 209)",
2929
- "line-opacity": {
2930
- stops: [
2931
- [
2932
- 12,
2933
- 0
2934
- ],
2935
- [
2936
- 12.5,
2937
- 1
2938
- ]
2939
- ]
2940
- },
2941
- "line-width": {
2942
- base: 1.2,
2943
- stops: [
2944
- [
2945
- 12,
2946
- 0.5
2947
- ],
2948
- [
2949
- 13,
2950
- 1
2951
- ],
2952
- [
2953
- 14,
2954
- 4
2955
- ],
2956
- [
2957
- 20,
2958
- 25
2959
- ]
2960
- ]
2961
- }
2962
- }
2963
- },
2964
- {
2965
- id: "bridge_path_pedestrian_casing",
2966
- type: "line",
2967
- metadata: {
2968
- },
2969
- source: "openmaptiles",
2970
- "source-layer": "transportation",
2971
- filter: [
2972
- "all",
2973
- [
2974
- "==",
2975
- "$type",
2976
- "LineString"
2977
- ],
2978
- [
2979
- "==",
2980
- "brunnel",
2981
- "bridge"
2982
- ],
2983
- [
2984
- "in",
2985
- "class",
2986
- "path",
2987
- "pedestrian"
2988
- ]
2989
- ],
2990
- layout: {
2991
- "line-join": "miter",
2992
- visibility: "visible"
2993
- },
2994
- paint: {
2995
- "line-color": "rgb(225, 225, 225)",
2996
- "line-dasharray": [
2997
- 1,
2998
- 0
2999
- ],
3000
- "line-width": {
3001
- base: 1.2,
3002
- stops: [
3003
- [
3004
- 14,
3005
- 1.5
3006
- ],
3007
- [
3008
- 20,
3009
- 18
3010
- ]
3011
- ]
3012
- }
3013
- }
3014
- },
3015
- {
3016
- id: "bridge_secondary_tertiary_casing",
3017
- type: "line",
3018
- metadata: {
3019
- },
3020
- source: "openmaptiles",
3021
- "source-layer": "transportation",
3022
- filter: [
3023
- "all",
3024
- [
3025
- "==",
3026
- "brunnel",
3027
- "bridge"
3028
- ],
3029
- [
3030
- "in",
3031
- "class",
3032
- "secondary",
3033
- "tertiary"
3034
- ]
3035
- ],
3036
- layout: {
3037
- "line-join": "round"
3038
- },
3039
- paint: {
3040
- "line-color": "rgb(212, 212, 212)",
3041
- "line-opacity": 1,
3042
- "line-width": {
3043
- base: 1.2,
3044
- stops: [
3045
- [
3046
- 8,
3047
- 1.5
3048
- ],
3049
- [
3050
- 20,
3051
- 17
3052
- ]
3053
- ]
3054
- }
3055
- }
3056
- },
3057
- {
3058
- id: "bridge_trunk_primary_casing",
3059
- type: "line",
3060
- metadata: {
3061
- },
3062
- source: "openmaptiles",
3063
- "source-layer": "transportation",
3064
- filter: [
3065
- "all",
3066
- [
3067
- "==",
3068
- "brunnel",
3069
- "bridge"
3070
- ],
3071
- [
3072
- "in",
3073
- "class",
3074
- "primary",
3075
- "trunk"
3076
- ]
3077
- ],
3078
- layout: {
3079
- "line-join": "round"
3080
- },
3081
- paint: {
3082
- "line-color": "rgba(223, 219, 202, 1)",
3083
- "line-width": {
3084
- base: 1.2,
3085
- stops: [
3086
- [
3087
- 5,
3088
- 0.4
3089
- ],
3090
- [
3091
- 6,
3092
- 0.7
3093
- ],
3094
- [
3095
- 7,
3096
- 1.75
3097
- ],
3098
- [
3099
- 20,
3100
- 22
3101
- ]
3102
- ]
3103
- }
3104
- }
3105
- },
3106
- {
3107
- id: "bridge_motorway_casing",
3108
- type: "line",
3109
- metadata: {
3110
- },
3111
- source: "openmaptiles",
3112
- "source-layer": "transportation",
3113
- filter: [
3114
- "all",
3115
- [
3116
- "==",
3117
- "class",
3118
- "motorway"
3119
- ],
3120
- [
3121
- "==",
3122
- "brunnel",
3123
- "bridge"
3124
- ],
3125
- [
3126
- "!=",
3127
- "ramp",
3128
- 1
3129
- ]
3130
- ],
3131
- layout: {
3132
- "line-join": "round"
3133
- },
3134
- paint: {
3135
- "line-color": "rgba(223, 219, 202, 1)",
3136
- "line-width": {
3137
- base: 1.2,
3138
- stops: [
3139
- [
3140
- 5,
3141
- 0.4
3142
- ],
3143
- [
3144
- 6,
3145
- 0.7
3146
- ],
3147
- [
3148
- 7,
3149
- 1.75
3150
- ],
3151
- [
3152
- 20,
3153
- 22
3154
- ]
3155
- ]
3156
- }
3157
- }
3158
- },
3159
- {
3160
- id: "bridge_path_pedestrian",
3161
- type: "line",
3162
- metadata: {
3163
- },
3164
- source: "openmaptiles",
3165
- "source-layer": "transportation",
3166
- filter: [
3167
- "all",
3168
- [
3169
- "==",
3170
- "$type",
3171
- "LineString"
3172
- ],
3173
- [
3174
- "==",
3175
- "brunnel",
3176
- "bridge"
3177
- ],
3178
- [
3179
- "in",
3180
- "class",
3181
- "path",
3182
- "pedestrian"
3183
- ]
3184
- ],
3185
- paint: {
3186
- "line-color": "rgb(255, 255, 255)",
3187
- "line-dasharray": [
3188
- 1,
3189
- 0.3
3190
- ],
3191
- "line-width": {
3192
- base: 1.2,
3193
- stops: [
3194
- [
3195
- 14,
3196
- 0.5
3197
- ],
3198
- [
3199
- 20,
3200
- 10
3201
- ]
3202
- ]
3203
- }
3204
- }
3205
- },
3206
- {
3207
- id: "bridge_motorway_link",
3208
- type: "line",
3209
- metadata: {
3210
- },
3211
- source: "openmaptiles",
3212
- "source-layer": "transportation",
3213
- filter: [
3214
- "all",
3215
- [
3216
- "==",
3217
- "class",
3218
- "motorway"
3219
- ],
3220
- [
3221
- "==",
3222
- "ramp",
3223
- 1
3224
- ],
3225
- [
3226
- "==",
3227
- "brunnel",
3228
- "bridge"
3229
- ]
3230
- ],
3231
- layout: {
3232
- "line-join": "round"
3233
- },
3234
- paint: {
3235
- "line-color": "rgba(223, 219, 202, 1)",
3236
- "line-width": {
3237
- base: 1.2,
3238
- stops: [
3239
- [
3240
- 12.5,
3241
- 0
3242
- ],
3243
- [
3244
- 13,
3245
- 1.5
3246
- ],
3247
- [
3248
- 14,
3249
- 2.5
3250
- ],
3251
- [
3252
- 20,
3253
- 11.5
3254
- ]
3255
- ]
3256
- }
3257
- }
3258
- },
3259
- {
3260
- id: "bridge_service_track",
3261
- type: "line",
3262
- metadata: {
3263
- },
3264
- source: "openmaptiles",
3265
- "source-layer": "transportation",
3266
- filter: [
3267
- "all",
3268
- [
3269
- "==",
3270
- "brunnel",
3271
- "bridge"
3272
- ],
3273
- [
3274
- "in",
3275
- "class",
3276
- "service",
3277
- "track"
3278
- ]
3279
- ],
3280
- layout: {
3281
- "line-join": "round"
3282
- },
3283
- paint: {
3284
- "line-color": "rgb(255, 255, 255)",
3285
- "line-width": {
3286
- base: 1.2,
3287
- stops: [
3288
- [
3289
- 15.5,
3290
- 0
3291
- ],
3292
- [
3293
- 16,
3294
- 2
3295
- ],
3296
- [
3297
- 20,
3298
- 7.5
3299
- ]
3300
- ]
3301
- }
3302
- }
3303
- },
3304
- {
3305
- id: "bridge_link",
3306
- type: "line",
3307
- metadata: {
3308
- },
3309
- source: "openmaptiles",
3310
- "source-layer": "transportation",
3311
- filter: [
3312
- "all",
3313
- [
3314
- "==",
3315
- "class",
3316
- "link"
3317
- ],
3318
- [
3319
- "==",
3320
- "brunnel",
3321
- "bridge"
3322
- ]
3323
- ],
3324
- layout: {
3325
- "line-join": "round"
3326
- },
3327
- paint: {
3328
- "line-color": "rgba(223, 219, 202, 1)",
3329
- "line-width": {
3330
- base: 1.2,
3331
- stops: [
3332
- [
3333
- 12.5,
3334
- 0
3335
- ],
3336
- [
3337
- 13,
3338
- 1.5
3339
- ],
3340
- [
3341
- 14,
3342
- 2.5
3343
- ],
3344
- [
3345
- 20,
3346
- 11.5
3347
- ]
3348
- ]
3349
- }
3350
- }
3351
- },
3352
- {
3353
- id: "bridge_street",
3354
- type: "line",
3355
- metadata: {
3356
- },
3357
- source: "openmaptiles",
3358
- "source-layer": "transportation",
3359
- filter: [
3360
- "all",
3361
- [
3362
- "==",
3363
- "brunnel",
3364
- "bridge"
3365
- ],
3366
- [
3367
- "in",
3368
- "class",
3369
- "minor"
3370
- ]
3371
- ],
3372
- layout: {
3373
- "line-join": "round"
3374
- },
3375
- paint: {
3376
- "line-color": "rgb(255, 255, 255)",
3377
- "line-opacity": 1,
3378
- "line-width": {
3379
- base: 1.2,
3380
- stops: [
3381
- [
3382
- 13.5,
3383
- 0
3384
- ],
3385
- [
3386
- 14,
3387
- 2.5
3388
- ],
3389
- [
3390
- 20,
3391
- 18
3392
- ]
3393
- ]
3394
- }
3395
- }
3396
- },
3397
- {
3398
- id: "bridge_secondary_tertiary",
3399
- type: "line",
3400
- metadata: {
3401
- },
3402
- source: "openmaptiles",
3403
- "source-layer": "transportation",
3404
- filter: [
3405
- "all",
3406
- [
3407
- "==",
3408
- "brunnel",
3409
- "bridge"
3410
- ],
3411
- [
3412
- "in",
3413
- "class",
3414
- "secondary",
3415
- "tertiary"
3416
- ]
3417
- ],
3418
- layout: {
3419
- "line-join": "round"
3420
- },
3421
- paint: {
3422
- "line-color": "rgb(255, 255, 255)",
3423
- "line-width": {
3424
- base: 1.2,
3425
- stops: [
3426
- [
3427
- 6.5,
3428
- 0
3429
- ],
3430
- [
3431
- 8,
3432
- 0.5
3433
- ],
3434
- [
3435
- 20,
3436
- 13
3437
- ]
3438
- ]
3439
- }
3440
- }
3441
- },
3442
- {
3443
- id: "bridge_trunk_primary",
3444
- type: "line",
3445
- metadata: {
3446
- },
3447
- source: "openmaptiles",
3448
- "source-layer": "transportation",
3449
- filter: [
3450
- "all",
3451
- [
3452
- "==",
3453
- "brunnel",
3454
- "bridge"
3455
- ],
3456
- [
3457
- "in",
3458
- "class",
3459
- "primary",
3460
- "trunk"
3461
- ]
3462
- ],
3463
- layout: {
3464
- "line-join": "round"
3465
- },
3466
- paint: {
3467
- "line-color": "rgba(223, 219, 202, 1)",
3468
- "line-width": {
3469
- base: 1.2,
3470
- stops: [
3471
- [
3472
- 5,
3473
- 0
3474
- ],
3475
- [
3476
- 7,
3477
- 1
3478
- ],
3479
- [
3480
- 20,
3481
- 18
3482
- ]
3483
- ]
3484
- }
3485
- }
3486
- },
3487
- {
3488
- id: "bridge_motorway",
3489
- type: "line",
3490
- metadata: {
3491
- },
3492
- source: "openmaptiles",
3493
- "source-layer": "transportation",
3494
- filter: [
3495
- "all",
3496
- [
3497
- "==",
3498
- "class",
3499
- "motorway"
3500
- ],
3501
- [
3502
- "==",
3503
- "brunnel",
3504
- "bridge"
3505
- ],
3506
- [
3507
- "!=",
3508
- "ramp",
3509
- 1
3510
- ]
3511
- ],
3512
- layout: {
3513
- "line-join": "round"
3514
- },
3515
- paint: {
3516
- "line-color": "rgba(223, 219, 202, 1)",
3517
- "line-width": {
3518
- base: 1.2,
3519
- stops: [
3520
- [
3521
- 5,
3522
- 0
3523
- ],
3524
- [
3525
- 7,
3526
- 1
3527
- ],
3528
- [
3529
- 20,
3530
- 18
3531
- ]
3532
- ]
3533
- }
3534
- }
3535
- },
3536
- {
3537
- id: "bridge_major_rail",
3538
- type: "line",
3539
- metadata: {
3540
- },
3541
- source: "openmaptiles",
3542
- "source-layer": "transportation",
3543
- filter: [
3544
- "all",
3545
- [
3546
- "==",
3547
- "class",
3548
- "rail"
3549
- ],
3550
- [
3551
- "==",
3552
- "brunnel",
3553
- "bridge"
3554
- ]
3555
- ],
3556
- paint: {
3557
- "line-color": "rgb(208, 208, 208)",
3558
- "line-width": {
3559
- base: 1.4,
3560
- stops: [
3561
- [
3562
- 14,
3563
- 0.4
3564
- ],
3565
- [
3566
- 15,
3567
- 0.75
3568
- ],
3569
- [
3570
- 20,
3571
- 2
3572
- ]
3573
- ]
3574
- }
3575
- }
3576
- },
3577
- {
3578
- id: "bridge_major_rail_hatching",
3579
- type: "line",
3580
- metadata: {
3581
- },
3582
- source: "openmaptiles",
3583
- "source-layer": "transportation",
3584
- filter: [
3585
- "all",
3586
- [
3587
- "==",
3588
- "class",
3589
- "rail"
3590
- ],
3591
- [
3592
- "==",
3593
- "brunnel",
3594
- "bridge"
3595
- ]
3596
- ],
3597
- paint: {
3598
- "line-color": "rgb(208, 208, 208)",
3599
- "line-dasharray": [
3600
- 0.2,
3601
- 8
3602
- ],
3603
- "line-width": {
3604
- base: 1.4,
3605
- stops: [
3606
- [
3607
- 14.5,
3608
- 0
3609
- ],
3610
- [
3611
- 15,
3612
- 3
3613
- ],
3614
- [
3615
- 20,
3616
- 8
3617
- ]
3618
- ]
3619
- }
3620
- }
3621
- },
3622
- {
3623
- id: "cablecar",
3624
- type: "line",
3625
- source: "openmaptiles",
3626
- "source-layer": "transportation",
3627
- minzoom: 13,
3628
- filter: [
3629
- "==",
3630
- "class",
3631
- "cable_car"
3632
- ],
3633
- layout: {
3634
- "line-cap": "round",
3635
- visibility: "visible"
3636
- },
3637
- paint: {
3638
- "line-color": "rgb(199, 199, 199)",
3639
- "line-width": {
3640
- base: 1,
3641
- stops: [
3642
- [
3643
- 11,
3644
- 1
3645
- ],
3646
- [
3647
- 19,
3648
- 2.5
3649
- ]
3650
- ]
3651
- }
3652
- }
3653
- },
3654
- {
3655
- id: "cablecar-dash",
3656
- type: "line",
3657
- source: "openmaptiles",
3658
- "source-layer": "transportation",
3659
- minzoom: 13,
3660
- filter: [
3661
- "==",
3662
- "class",
3663
- "cable_car"
3664
- ],
3665
- layout: {
3666
- "line-cap": "round",
3667
- visibility: "visible"
3668
- },
3669
- paint: {
3670
- "line-color": "rgb(199, 199, 199)",
3671
- "line-dasharray": [
3672
- 2,
3673
- 3
3674
- ],
3675
- "line-width": {
3676
- base: 1,
3677
- stops: [
3678
- [
3679
- 11,
3680
- 3
3681
- ],
3682
- [
3683
- 19,
3684
- 5.5
3685
- ]
3686
- ]
3687
- }
3688
- }
3689
- },
3690
- {
3691
- id: "boundary_3",
3692
- type: "line",
3693
- metadata: {
3694
- },
3695
- source: "openmaptiles",
3696
- "source-layer": "boundary",
3697
- filter: [
3698
- "match",
3699
- [
3700
- "get",
3701
- "admin_level"
3702
- ],
3703
- [
3704
- 3,
3705
- 4
3706
- ],
3707
- true,
3708
- false
3709
- ],
3710
- layout: {
3711
- "line-join": "round",
3712
- visibility: "visible"
3713
- },
3714
- paint: {
3715
- "line-color": "rgb(197, 208, 216)",
3716
- "line-dasharray": [
3717
- 1,
3718
- 1
3719
- ],
3720
- "line-width": {
3721
- base: 1,
3722
- stops: [
3723
- [
3724
- 4,
3725
- 0.4
3726
- ],
3727
- [
3728
- 5,
3729
- 1
3730
- ],
3731
- [
3732
- 12,
3733
- 1.8
3734
- ]
3735
- ]
3736
- },
3737
- "line-opacity": 0.5
3738
- }
3739
- },
3740
- {
3741
- id: "boundary_2",
3742
- type: "line",
3743
- metadata: {
3744
- },
3745
- source: "openmaptiles",
3746
- "source-layer": "boundary",
3747
- filter: [
3748
- "all",
3749
- [
3750
- "==",
3751
- "admin_level",
3752
- 2
3753
- ],
3754
- [
3755
- "!=",
3756
- "disputed",
3757
- 1
3758
- ]
3759
- ],
3760
- layout: {
3761
- "line-cap": "round",
3762
- "line-join": "round",
3763
- visibility: "visible"
3764
- },
3765
- paint: {
3766
- "line-color": "rgb(197, 208, 216)",
3767
- "line-opacity": {
3768
- base: 1,
3769
- stops: [
3770
- [
3771
- 0,
3772
- 0.4
3773
- ],
3774
- [
3775
- 4,
3776
- 0.8
3777
- ]
3778
- ]
3779
- },
3780
- "line-width": {
3781
- base: 1,
3782
- stops: [
3783
- [
3784
- 3,
3785
- 1
3786
- ],
3787
- [
3788
- 5,
3789
- 1.2
3790
- ],
3791
- [
3792
- 12,
3793
- 3
3794
- ]
3795
- ]
3796
- }
3797
- }
3798
- },
3799
- {
3800
- id: "boundary_disputed_level_2",
3801
- type: "line",
3802
- source: "openmaptiles",
3803
- "source-layer": "boundary",
3804
- minzoom: 0,
3805
- filter: [
3806
- "all",
3807
- [
3808
- "<=",
3809
- "admin_level",
3810
- 2
3811
- ],
3812
- [
3813
- "==",
3814
- "disputed",
3815
- 1
3816
- ]
3817
- ],
3818
- layout: {
3819
- "line-cap": "round",
3820
- "line-join": "round",
3821
- visibility: "visible"
3822
- },
3823
- paint: {
3824
- "line-color": "rgb(197, 208, 216)",
3825
- "line-width": 1,
3826
- "line-opacity": 0.7,
3827
- "line-dasharray": [
3828
- 6,
3829
- 6
3830
- ]
3831
- }
3832
- },
3833
- {
3834
- id: "water_name_line",
3835
- type: "symbol",
3836
- metadata: {
3837
- },
3838
- source: "openmaptiles",
3839
- "source-layer": "water_name",
3840
- minzoom: 0,
3841
- filter: [
3842
- "all",
3843
- [
3844
- "==",
3845
- "$type",
3846
- "LineString"
3847
- ]
3848
- ],
3849
- layout: {
3850
- "symbol-placement": "line",
3851
- "text-field": "{name_en}",
3852
- "text-font": [
3853
- "Open Sans Regular"
3854
- ],
3855
- "text-max-width": 5,
3856
- "text-size": 12
3857
- },
3858
- paint: {
3859
- "text-color": "rgb(178, 178, 178)",
3860
- "text-halo-color": "rgba(255, 255, 255, 0.7)",
3861
- "text-halo-width": 1
3862
- }
3863
- },
3864
- {
3865
- id: "water_name_point",
3866
- type: "symbol",
3867
- metadata: {
3868
- },
3869
- source: "openmaptiles",
3870
- "source-layer": "water_name",
3871
- minzoom: 2,
3872
- maxzoom: 24,
3873
- filter: [
3874
- "all",
3875
- [
3876
- "==",
3877
- "$type",
3878
- "Point"
3879
- ],
3880
- [
3881
- "!=",
3882
- "class",
3883
- "ocean"
3884
- ]
3885
- ],
3886
- layout: {
3887
- "text-field": "{name_en}",
3888
- "text-font": [
3889
- "Open Sans Regular"
3890
- ],
3891
- "text-max-width": 5,
3892
- "text-size": 12
3893
- },
3894
- paint: {
3895
- "text-color": "rgba(159, 178, 195, 0.8)",
3896
- "text-halo-color": "rgba(255, 255, 255, 0)",
3897
- "text-halo-width": 1
3898
- }
3899
- },
3900
- {
3901
- id: "water_ocean_name_point",
3902
- type: "symbol",
3903
- metadata: {
3904
- },
3905
- source: "openmaptiles",
3906
- "source-layer": "water_name",
3907
- minzoom: 0,
3908
- filter: [
3909
- "all",
3910
- [
3911
- "==",
3912
- "$type",
3913
- "Point"
3914
- ],
3915
- [
3916
- "==",
3917
- "class",
3918
- "ocean"
3919
- ]
3920
- ],
3921
- layout: {
3922
- "text-field": "{name_en}",
3923
- "text-font": [
3924
- "Open Sans Regular"
3925
- ],
3926
- "text-max-width": 5,
3927
- "text-size": 12
3928
- },
3929
- paint: {
3930
- "text-color": "rgba(159, 178, 195, 0.6)",
3931
- "text-halo-color": "rgba(255, 255, 255, 0)",
3932
- "text-halo-width": 1
3933
- }
3934
- },
3935
- {
3936
- id: "poi_z16_subclass",
3937
- type: "symbol",
3938
- metadata: {
3939
- },
3940
- source: "openmaptiles",
3941
- "source-layer": "poi",
3942
- minzoom: 16,
3943
- filter: [
3944
- "all",
3945
- [
3946
- "==",
3947
- "$type",
3948
- "Point"
3949
- ],
3950
- [
3951
- ">=",
3952
- "rank",
3953
- 20
3954
- ],
3955
- [
3956
- "any",
3957
- [
3958
- "all",
3959
- [
3960
- "in",
3961
- "class",
3962
- "pitch"
3963
- ],
3964
- [
3965
- "in",
3966
- "subclass",
3967
- "soccer",
3968
- "tennis",
3969
- "baseball",
3970
- "basketball",
3971
- "swimming",
3972
- "golf"
3973
- ]
3974
- ]
3975
- ],
3976
- [
3977
- "any",
3978
- [
3979
- "!has",
3980
- "level"
3981
- ],
3982
- [
3983
- "==",
3984
- "level",
3985
- 0
3986
- ]
3987
- ]
3988
- ],
3989
- layout: {
3990
- "text-anchor": "top",
3991
- "text-field": "{name_en}",
3992
- "text-font": [
3993
- "Open Sans Italic"
3994
- ],
3995
- "text-max-width": 9,
3996
- "text-offset": [
3997
- 0,
3998
- 0.6
3999
- ],
4000
- "text-padding": 2,
4001
- "text-size": 12,
4002
- visibility: "none"
4003
- },
4004
- paint: {
4005
- "text-color": "#666",
4006
- "text-halo-blur": 0.5,
4007
- "text-halo-color": "#ffffff",
4008
- "text-halo-width": 1
4009
- }
4010
- },
4011
- {
4012
- id: "poi_z16",
4013
- type: "symbol",
4014
- metadata: {
4015
- },
4016
- source: "openmaptiles",
4017
- "source-layer": "poi",
4018
- minzoom: 16,
4019
- filter: [
4020
- "all",
4021
- [
4022
- "==",
4023
- "$type",
4024
- "Point"
4025
- ],
4026
- [
4027
- ">=",
4028
- "rank",
4029
- 20
4030
- ],
4031
- [
4032
- "none",
4033
- [
4034
- "all",
4035
- [
4036
- "in",
4037
- "class",
4038
- "pitch"
4039
- ],
4040
- [
4041
- "in",
4042
- "subclass",
4043
- "soccer",
4044
- "tennis",
4045
- "baseball",
4046
- "basketball",
4047
- "swimming",
4048
- "golf"
4049
- ]
4050
- ]
4051
- ],
4052
- [
4053
- "any",
4054
- [
4055
- "!has",
4056
- "level"
4057
- ],
4058
- [
4059
- "==",
4060
- "level",
4061
- 0
4062
- ]
4063
- ]
4064
- ],
4065
- layout: {
4066
- "text-anchor": "top",
4067
- "text-field": "{name_en}",
4068
- "text-font": [
4069
- "Open Sans Italic"
4070
- ],
4071
- "text-max-width": 9,
4072
- "text-offset": [
4073
- 0,
4074
- 0.6
4075
- ],
4076
- "text-padding": 2,
4077
- "text-size": 12,
4078
- visibility: "none"
4079
- },
4080
- paint: {
4081
- "text-color": "rgb(216, 220, 223)",
4082
- "text-halo-blur": 0.5,
4083
- "text-halo-color": "rgb(255, 255, 255)",
4084
- "text-halo-width": 1
4085
- }
4086
- },
4087
- {
4088
- id: "poi_z15",
4089
- type: "symbol",
4090
- metadata: {
4091
- },
4092
- source: "openmaptiles",
4093
- "source-layer": "poi",
4094
- minzoom: 15,
4095
- filter: [
4096
- "all",
4097
- [
4098
- "==",
4099
- "$type",
4100
- "Point"
4101
- ],
4102
- [
4103
- ">=",
4104
- "rank",
4105
- 7
4106
- ],
4107
- [
4108
- "<",
4109
- "rank",
4110
- 20
4111
- ],
4112
- [
4113
- "any",
4114
- [
4115
- "!has",
4116
- "level"
4117
- ],
4118
- [
4119
- "==",
4120
- "level",
4121
- 0
4122
- ]
4123
- ]
4124
- ],
4125
- layout: {
4126
- "text-anchor": "top",
4127
- "text-field": "{name_en}",
4128
- "text-font": [
4129
- "Open Sans Italic"
4130
- ],
4131
- "text-max-width": 9,
4132
- "text-offset": [
4133
- 0,
4134
- 0.6
4135
- ],
4136
- "text-padding": 2,
4137
- "text-size": 12,
4138
- visibility: "none"
4139
- },
4140
- paint: {
4141
- "text-color": "rgb(216, 220, 223)",
4142
- "text-halo-blur": 0.5,
4143
- "text-halo-color": "rgb(255, 255, 255)",
4144
- "text-halo-width": 1
4145
- }
4146
- },
4147
- {
4148
- id: "poi_z14",
4149
- type: "symbol",
4150
- metadata: {
4151
- },
4152
- source: "openmaptiles",
4153
- "source-layer": "poi",
4154
- minzoom: 14.2,
4155
- filter: [
4156
- "all",
4157
- [
4158
- "==",
4159
- "$type",
4160
- "Point"
4161
- ],
4162
- [
4163
- "any",
4164
- [
4165
- "<",
4166
- "rank",
4167
- 7
4168
- ]
4169
- ],
4170
- [
4171
- "any",
4172
- [
4173
- "!has",
4174
- "level"
4175
- ],
4176
- [
4177
- "==",
4178
- "level",
4179
- 0
4180
- ]
4181
- ]
4182
- ],
4183
- layout: {
4184
- "icon-size": 0.9,
4185
- "text-anchor": "top",
4186
- "text-field": "{name_en}",
4187
- "text-font": [
4188
- "Open Sans Italic"
4189
- ],
4190
- "text-max-width": 9,
4191
- "text-offset": [
4192
- 0,
4193
- 0.6
4194
- ],
4195
- "text-padding": 2,
4196
- "text-size": 12,
4197
- visibility: "none"
4198
- },
4199
- paint: {
4200
- "text-color": "rgb(216, 220, 223)",
4201
- "text-halo-blur": 0.5,
4202
- "text-halo-color": "rgb(255, 255, 255)",
4203
- "text-halo-width": 1
4204
- }
4205
- },
4206
- {
4207
- id: "poi_transit",
4208
- type: "symbol",
4209
- metadata: {
4210
- },
4211
- source: "openmaptiles",
4212
- "source-layer": "poi",
4213
- minzoom: 15,
4214
- filter: [
4215
- "all",
4216
- [
4217
- "in",
4218
- "class",
4219
- "bus",
4220
- "railway",
4221
- "airport"
4222
- ],
4223
- [
4224
- "==",
4225
- "subclass",
4226
- "station"
4227
- ]
4228
- ],
4229
- layout: {
4230
- "icon-size": 0.9,
4231
- "text-anchor": "left",
4232
- "text-field": "{name_en}",
4233
- "text-font": [
4234
- "Open Sans Italic"
4235
- ],
4236
- "text-max-width": 9,
4237
- "text-offset": [
4238
- 0.9,
4239
- 0
4240
- ],
4241
- "text-padding": 2,
4242
- "text-size": 12,
4243
- visibility: "visible"
4244
- },
4245
- paint: {
4246
- "text-color": "rgb(216, 220, 223)",
4247
- "text-halo-blur": 0.5,
4248
- "text-halo-color": "rgb(255, 255, 255)",
4249
- "text-halo-width": 1
4250
- }
4251
- },
4252
- {
4253
- id: "road_oneway",
4254
- type: "symbol",
4255
- source: "openmaptiles",
4256
- "source-layer": "transportation",
4257
- minzoom: 15,
4258
- filter: [
4259
- "all",
4260
- [
4261
- "==",
4262
- "oneway",
4263
- 1
4264
- ],
4265
- [
4266
- "in",
4267
- "class",
4268
- "motorway",
4269
- "trunk",
4270
- "primary",
4271
- "secondary",
4272
- "tertiary",
4273
- "minor",
4274
- "service"
4275
- ]
4276
- ],
4277
- layout: {
4278
- "icon-padding": 2,
4279
- "icon-rotate": 90,
4280
- "icon-rotation-alignment": "map",
4281
- "icon-size": {
4282
- stops: [
4283
- [
4284
- 15,
4285
- 0.5
4286
- ],
4287
- [
4288
- 19,
4289
- 1
4290
- ]
4291
- ]
4292
- },
4293
- "symbol-placement": "line",
4294
- "symbol-spacing": 75
4295
- },
4296
- paint: {
4297
- "icon-opacity": 0.5
4298
- }
4299
- },
4300
- {
4301
- id: "road_oneway_opposite",
4302
- type: "symbol",
4303
- source: "openmaptiles",
4304
- "source-layer": "transportation",
4305
- minzoom: 15,
4306
- filter: [
4307
- "all",
4308
- [
4309
- "==",
4310
- "oneway",
4311
- -1
4312
- ],
4313
- [
4314
- "in",
4315
- "class",
4316
- "motorway",
4317
- "trunk",
4318
- "primary",
4319
- "secondary",
4320
- "tertiary",
4321
- "minor",
4322
- "service"
4323
- ]
4324
- ],
4325
- layout: {
4326
- "icon-padding": 2,
4327
- "icon-rotate": -90,
4328
- "icon-rotation-alignment": "map",
4329
- "icon-size": {
4330
- stops: [
4331
- [
4332
- 15,
4333
- 0.5
4334
- ],
4335
- [
4336
- 19,
4337
- 1
4338
- ]
4339
- ]
4340
- },
4341
- "symbol-placement": "line",
4342
- "symbol-spacing": 75
4343
- },
4344
- paint: {
4345
- "icon-opacity": 0.5
4346
- }
4347
- },
4348
- {
4349
- id: "road_label",
4350
- type: "symbol",
4351
- metadata: {
4352
- },
4353
- source: "openmaptiles",
4354
- "source-layer": "transportation_name",
4355
- filter: [
4356
- "all"
4357
- ],
4358
- layout: {
4359
- "symbol-placement": "line",
4360
- "text-anchor": "center",
4361
- "text-field": "{name_en} ",
4362
- "text-font": [
4363
- "Open Sans Regular"
4364
- ],
4365
- "text-offset": [
4366
- 0,
4367
- 0.15
4368
- ],
4369
- "text-size": {
4370
- base: 1,
4371
- stops: [
4372
- [
4373
- 13,
4374
- 12
4375
- ],
4376
- [
4377
- 14,
4378
- 13
4379
- ]
4380
- ]
4381
- }
4382
- },
4383
- paint: {
4384
- "text-color": "rgba(161, 169, 176, 1)",
4385
- "text-halo-blur": 0.5,
4386
- "text-halo-width": 1
4387
- }
4388
- },
4389
- {
4390
- id: "highway-shield",
4391
- type: "symbol",
4392
- source: "openmaptiles",
4393
- "source-layer": "transportation_name",
4394
- minzoom: 8,
4395
- filter: [
4396
- "all",
4397
- [
4398
- "<=",
4399
- "ref_length",
4400
- 6
4401
- ],
4402
- [
4403
- "==",
4404
- "$type",
4405
- "LineString"
4406
- ],
4407
- [
4408
- "!in",
4409
- "network",
4410
- "us-interstate",
4411
- "us-highway",
4412
- "us-state"
4413
- ]
4414
- ],
4415
- layout: {
4416
- "icon-rotation-alignment": "viewport",
4417
- "icon-size": 1,
4418
- "symbol-avoid-edges": true,
4419
- "symbol-placement": {
4420
- base: 1,
4421
- stops: [
4422
- [
4423
- 10,
4424
- "point"
4425
- ],
4426
- [
4427
- 11,
4428
- "line"
4429
- ]
4430
- ]
4431
- },
4432
- "symbol-spacing": 200,
4433
- "text-field": "{ref}",
4434
- "text-font": [
4435
- "Open Sans Regular"
4436
- ],
4437
- "text-rotation-alignment": "viewport",
4438
- "text-size": 10,
4439
- visibility: "none"
4440
- },
4441
- paint: {
4442
- "icon-color": "rgba(161, 169, 176, 1)",
4443
- "text-color": "rgba(161, 169, 176, 1)"
4444
- }
4445
- },
4446
- {
4447
- id: "highway-shield-us-interstate",
4448
- type: "symbol",
4449
- source: "openmaptiles",
4450
- "source-layer": "transportation_name",
4451
- minzoom: 7,
4452
- filter: [
4453
- "all",
4454
- [
4455
- "<=",
4456
- "ref_length",
4457
- 6
4458
- ],
4459
- [
4460
- "==",
4461
- "$type",
4462
- "LineString"
4463
- ],
4464
- [
4465
- "in",
4466
- "network",
4467
- "us-interstate"
4468
- ]
4469
- ],
4470
- layout: {
4471
- "icon-rotation-alignment": "viewport",
4472
- "icon-size": 1,
4473
- "symbol-avoid-edges": true,
4474
- "symbol-placement": {
4475
- base: 1,
4476
- stops: [
4477
- [
4478
- 7,
4479
- "point"
4480
- ],
4481
- [
4482
- 7,
4483
- "line"
4484
- ],
4485
- [
4486
- 8,
4487
- "line"
4488
- ]
4489
- ]
4490
- },
4491
- "symbol-spacing": 200,
4492
- "text-field": "{ref}",
4493
- "text-font": [
4494
- "Open Sans Regular"
4495
- ],
4496
- "text-rotation-alignment": "viewport",
4497
- "text-size": 9,
4498
- visibility: "none"
4499
- },
4500
- paint: {
4501
- "text-color": "rgb(255, 255, 255)"
4502
- }
4503
- },
4504
- {
4505
- id: "highway-shield-us-other",
4506
- type: "symbol",
4507
- source: "openmaptiles",
4508
- "source-layer": "transportation_name",
4509
- minzoom: 9,
4510
- filter: [
4511
- "all",
4512
- [
4513
- "<=",
4514
- "ref_length",
4515
- 6
4516
- ],
4517
- [
4518
- "==",
4519
- "$type",
4520
- "LineString"
4521
- ],
4522
- [
4523
- "in",
4524
- "network",
4525
- "us-highway",
4526
- "us-state"
4527
- ]
4528
- ],
4529
- layout: {
4530
- "icon-rotation-alignment": "viewport",
4531
- "icon-size": 1,
4532
- "symbol-avoid-edges": true,
4533
- "symbol-placement": {
4534
- base: 1,
4535
- stops: [
4536
- [
4537
- 10,
4538
- "point"
4539
- ],
4540
- [
4541
- 11,
4542
- "line"
4543
- ]
4544
- ]
4545
- },
4546
- "symbol-spacing": 200,
4547
- "text-field": "{ref}",
4548
- "text-font": [
4549
- "Open Sans Regular"
4550
- ],
4551
- "text-rotation-alignment": "viewport",
4552
- "text-size": 9,
4553
- visibility: "none"
4554
- },
4555
- paint: {
4556
- "text-color": "rgb(57, 57, 57)"
4557
- }
4558
- },
4559
- {
4560
- id: "place_other",
4561
- type: "symbol",
4562
- metadata: {
4563
- },
4564
- source: "openmaptiles",
4565
- "source-layer": "place",
4566
- filter: [
4567
- "all",
4568
- [
4569
- "in",
4570
- "class",
4571
- "hamlet",
4572
- "island",
4573
- "islet",
4574
- "neighbourhood",
4575
- "suburb"
4576
- ]
4577
- ],
4578
- layout: {
4579
- "text-field": "{name_en}",
4580
- "text-font": [
4581
- "Open Sans Italic"
4582
- ],
4583
- "text-letter-spacing": 0.1,
4584
- "text-max-width": 9,
4585
- "text-size": {
4586
- base: 1.2,
4587
- stops: [
4588
- [
4589
- 12,
4590
- 10
4591
- ],
4592
- [
4593
- 15,
4594
- 14
4595
- ]
4596
- ]
4597
- },
4598
- "text-transform": "uppercase",
4599
- visibility: "visible"
4600
- },
4601
- paint: {
4602
- "text-color": "rgb(173, 182, 190)",
4603
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4604
- "text-halo-width": 1.2
4605
- }
4606
- },
4607
- {
4608
- id: "place_village",
4609
- type: "symbol",
4610
- metadata: {
4611
- },
4612
- source: "openmaptiles",
4613
- "source-layer": "place",
4614
- filter: [
4615
- "all",
4616
- [
4617
- "==",
4618
- "class",
4619
- "village"
4620
- ]
4621
- ],
4622
- layout: {
4623
- "text-field": "{name_en}",
4624
- "text-font": [
4625
- "Open Sans Regular"
4626
- ],
4627
- "text-max-width": 8,
4628
- "text-size": {
4629
- base: 1.2,
4630
- stops: [
4631
- [
4632
- 10,
4633
- 12
4634
- ],
4635
- [
4636
- 15,
4637
- 22
4638
- ]
4639
- ]
4640
- },
4641
- visibility: "none"
4642
- },
4643
- paint: {
4644
- "text-color": "rgb(161, 169, 176)",
4645
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4646
- "text-halo-width": 1.2
4647
- }
4648
- },
4649
- {
4650
- id: "place_town",
4651
- type: "symbol",
4652
- metadata: {
4653
- },
4654
- source: "openmaptiles",
4655
- "source-layer": "place",
4656
- filter: [
4657
- "all",
4658
- [
4659
- "==",
4660
- "class",
4661
- "town"
4662
- ]
4663
- ],
4664
- layout: {
4665
- "text-anchor": "bottom",
4666
- "text-field": "{name_en}",
4667
- "text-font": [
4668
- "Open Sans Regular"
4669
- ],
4670
- "text-max-width": 8,
4671
- "text-offset": [
4672
- 0,
4673
- 0
4674
- ],
4675
- "text-size": {
4676
- base: 1.2,
4677
- stops: [
4678
- [
4679
- 7,
4680
- 12
4681
- ],
4682
- [
4683
- 11,
4684
- 16
4685
- ]
4686
- ]
4687
- }
4688
- },
4689
- paint: {
4690
- "text-color": "rgba(161, 169, 176, 0.8)",
4691
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4692
- "text-halo-width": 1.2
4693
- }
4694
- },
4695
- {
4696
- id: "place_city",
4697
- type: "symbol",
4698
- metadata: {
4699
- },
4700
- source: "openmaptiles",
4701
- "source-layer": "place",
4702
- minzoom: 5,
4703
- filter: [
4704
- "all",
4705
- [
4706
- "==",
4707
- "class",
4708
- "city"
4709
- ]
4710
- ],
4711
- layout: {
4712
- "icon-allow-overlap": true,
4713
- "icon-optional": false,
4714
- "text-anchor": "bottom",
4715
- "text-field": "{name_en}",
4716
- "text-font": [
4717
- "Open Sans Semibold"
4718
- ],
4719
- "text-max-width": 8,
4720
- "text-offset": [
4721
- 0,
4722
- 0
4723
- ],
4724
- "text-size": {
4725
- base: 1.2,
4726
- stops: [
4727
- [
4728
- 7,
4729
- 14
4730
- ],
4731
- [
4732
- 11,
4733
- 24
4734
- ]
4735
- ]
4736
- }
4737
- },
4738
- paint: {
4739
- "text-color": "rgba(161, 169, 176, 0.8)",
4740
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4741
- "text-halo-width": 1.2
4742
- }
4743
- },
4744
- {
4745
- id: "country_other",
4746
- type: "symbol",
4747
- metadata: {
4748
- },
4749
- source: "openmaptiles",
4750
- "source-layer": "place",
4751
- filter: [
4752
- "all",
4753
- [
4754
- "==",
4755
- "class",
4756
- "country"
4757
- ],
4758
- [
4759
- "!has",
4760
- "iso_a2"
4761
- ]
4762
- ],
4763
- layout: {
4764
- "text-field": "{name_en}",
4765
- "text-font": [
4766
- "Open Sans Italic"
4767
- ],
4768
- "text-max-width": 6.25,
4769
- "text-size": {
4770
- stops: [
4771
- [
4772
- 3,
4773
- 9
4774
- ],
4775
- [
4776
- 7,
4777
- 15
4778
- ]
4779
- ]
4780
- },
4781
- "text-transform": "none"
4782
- },
4783
- paint: {
4784
- "text-color": "rgba(159, 178, 195, 0.55)",
4785
- "text-halo-blur": 1,
4786
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4787
- "text-halo-width": 0.8
4788
- }
4789
- },
4790
- {
4791
- id: "country_3",
4792
- type: "symbol",
4793
- metadata: {
4794
- },
4795
- source: "openmaptiles",
4796
- "source-layer": "place",
4797
- minzoom: 2,
4798
- filter: [
4799
- "all",
4800
- [
4801
- ">=",
4802
- "rank",
4803
- 3
4804
- ],
4805
- [
4806
- "==",
4807
- "class",
4808
- "country"
4809
- ]
4810
- ],
4811
- layout: {
4812
- "text-field": "{name_en}",
4813
- "text-font": [
4814
- "Open Sans Italic"
4815
- ],
4816
- "text-max-width": 6.25,
4817
- "text-size": {
4818
- stops: [
4819
- [
4820
- 3,
4821
- 11
4822
- ],
4823
- [
4824
- 7,
4825
- 17
4826
- ]
4827
- ]
4828
- },
4829
- "text-transform": "none",
4830
- visibility: "visible"
4831
- },
4832
- paint: {
4833
- "text-color": "rgba(159, 178, 195, 0.55)",
4834
- "text-halo-blur": 1,
4835
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4836
- "text-halo-width": 0.8
4837
- }
4838
- },
4839
- {
4840
- id: "country_2",
4841
- type: "symbol",
4842
- metadata: {
4843
- },
4844
- source: "openmaptiles",
4845
- "source-layer": "place",
4846
- minzoom: 2,
4847
- filter: [
4848
- "all",
4849
- [
4850
- "==",
4851
- "rank",
4852
- 2
4853
- ],
4854
- [
4855
- "==",
4856
- "class",
4857
- "country"
4858
- ]
4859
- ],
4860
- layout: {
4861
- "text-field": "{name_en}",
4862
- "text-font": [
4863
- "Open Sans Italic"
4864
- ],
4865
- "text-max-width": 6.25,
4866
- "text-size": {
4867
- stops: [
4868
- [
4869
- 2,
4870
- 11
4871
- ],
4872
- [
4873
- 5,
4874
- 17
4875
- ]
4876
- ]
4877
- },
4878
- "text-transform": "none",
4879
- visibility: "visible"
4880
- },
4881
- paint: {
4882
- "text-color": "rgba(159, 178, 195, 0.55)",
4883
- "text-halo-blur": 1,
4884
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4885
- "text-halo-width": 0.8
4886
- }
4887
- },
4888
- {
4889
- id: "country_1",
4890
- type: "symbol",
4891
- metadata: {
4892
- },
4893
- source: "openmaptiles",
4894
- "source-layer": "place",
4895
- minzoom: 2,
4896
- filter: [
4897
- "all",
4898
- [
4899
- "==",
4900
- "rank",
4901
- 1
4902
- ],
4903
- [
4904
- "==",
4905
- "class",
4906
- "country"
4907
- ]
4908
- ],
4909
- layout: {
4910
- "text-field": "{name_en}",
4911
- "text-font": [
4912
- "Open Sans Italic"
4913
- ],
4914
- "text-max-width": 6.25,
4915
- "text-size": {
4916
- stops: [
4917
- [
4918
- 1,
4919
- 11
4920
- ],
4921
- [
4922
- 4,
4923
- 17
4924
- ]
4925
- ]
4926
- },
4927
- "text-transform": "none",
4928
- visibility: "visible"
4929
- },
4930
- paint: {
4931
- "text-color": "rgba(159, 178, 195, 0.55)",
4932
- "text-halo-blur": 1,
4933
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4934
- "text-halo-width": 0.8
4935
- }
4936
- },
4937
- {
4938
- id: "continent",
4939
- type: "symbol",
4940
- metadata: {
4941
- },
4942
- source: "openmaptiles",
4943
- "source-layer": "place",
4944
- maxzoom: 1,
4945
- filter: [
4946
- "all",
4947
- [
4948
- "==",
4949
- "class",
4950
- "continent"
4951
- ]
4952
- ],
4953
- layout: {
4954
- "text-field": "{name_en}",
4955
- "text-font": [
4956
- "Open Sans Italic"
4957
- ],
4958
- "text-justify": "center",
4959
- "text-size": 13,
4960
- "text-transform": "uppercase"
4961
- },
4962
- paint: {
4963
- "text-color": "rgb(168, 196, 220)",
4964
- "text-halo-color": "rgba(255, 255, 255, 0.6)",
4965
- "text-halo-width": 1
4966
- }
4967
- }
4968
- ];
4969
- var version = 8;
4970
- var mapLibreBaseSettings = {
4971
- bearing: bearing,
4972
- name: name,
4973
- owner: owner,
4974
- glyphs: glyphs,
4975
- sources: sources,
4976
- layers: layers,
4977
- version: version
4978
- };
4979
-
4980
- export { bearing, mapLibreBaseSettings as default, glyphs, layers, name, owner, sources, version };
4981
- //# sourceMappingURL=mapboxgl-settings.json.js.map