@trailstash/ultra 3.0.0-dev

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 (415) hide show
  1. package/.gitlab-ci.yml +15 -0
  2. package/Examples/alt-bbox-format.ultra +9 -0
  3. package/Examples/atp-usps-dropboxes.ultra +68 -0
  4. package/Examples/bike-infra.ultra +111 -0
  5. package/Examples/contribution-heatmap.ultra +17 -0
  6. package/Examples/custom-style.ultra +114 -0
  7. package/Examples/glow-effect.ultra +27 -0
  8. package/Examples/index.md +7 -0
  9. package/Examples/landmarks-prototype.ultra +68 -0
  10. package/Examples/minimalist-ski-map.ultra +55 -0
  11. package/Examples/opentrailstash-3d.ultra +40 -0
  12. package/Examples/overture-landcover-plus-hillshade.ultra +45 -0
  13. package/Examples/overture-places-and-osm.ultra +29 -0
  14. package/Examples/trees.ultra +60 -0
  15. package/Examples/wikidata-photo.ultra +28 -0
  16. package/Examples/within-bounds.ultra +12 -0
  17. package/LICENSE +23 -0
  18. package/MapLibre-Examples/3d-buildings.ultra +43 -0
  19. package/MapLibre-Examples/3d-extrusion-floorplan.ultra +28 -0
  20. package/MapLibre-Examples/3d-terrain.ultra +39 -0
  21. package/MapLibre-Examples/add-image.ultra +26 -0
  22. package/MapLibre-Examples/attribution-position.ultra +12 -0
  23. package/MapLibre-Examples/change-case-of-labels.ultra +26 -0
  24. package/MapLibre-Examples/cluster.ultra +59 -0
  25. package/MapLibre-Examples/cooperative-gestures.ultra +11 -0
  26. package/MapLibre-Examples/custom-marker-icons.ultra +65 -0
  27. package/MapLibre-Examples/data-driven-lines.ultra +169 -0
  28. package/MapLibre-Examples/disable-rotation.ultra +11 -0
  29. package/MapLibre-Examples/disable-scroll-zoom.ultra +9 -0
  30. package/MapLibre-Examples/display-and-style-rich-text-labels.ultra +22 -0
  31. package/MapLibre-Examples/fill-pattern.ultra +43 -0
  32. package/MapLibre-Examples/fullscreen.ultra +10 -0
  33. package/MapLibre-Examples/geojson-layer-in-stack.ultra +23 -0
  34. package/MapLibre-Examples/geojson-line.ultra +114 -0
  35. package/MapLibre-Examples/geojson-markers.ultra +217 -0
  36. package/MapLibre-Examples/geojson-polygon.ultra +104 -0
  37. package/MapLibre-Examples/heatmap-layer.ultra +111 -0
  38. package/MapLibre-Examples/index.md +4 -0
  39. package/MapLibre-Examples/locate-user.ultra +14 -0
  40. package/MapLibre-Examples/map-tiles.ultra +9 -0
  41. package/MapLibre-Examples/pmtiles.ultra +25 -0
  42. package/MapLibre-Examples/wms.ultra +14 -0
  43. package/README.md +46 -0
  44. package/bin/dev.cmd +3 -0
  45. package/bin/dev.js +6 -0
  46. package/bin/run.cmd +3 -0
  47. package/bin/run.js +5 -0
  48. package/build-examples-docs.js +104 -0
  49. package/build-examples-images.js +87 -0
  50. package/build-sprites.sh +30 -0
  51. package/cli/build.js +53 -0
  52. package/cli/serve.js +34 -0
  53. package/components/button-modal.js +111 -0
  54. package/components/button.css +22 -0
  55. package/components/button.js +6 -0
  56. package/components/code-editor.js +87 -0
  57. package/components/download-button.js +69 -0
  58. package/components/fontawesome-icon.js +80 -0
  59. package/components/fs-button.js +52 -0
  60. package/components/help-modal.js +98 -0
  61. package/components/map-popup.js +57 -0
  62. package/components/nav-bar.js +76 -0
  63. package/components/run-button.js +78 -0
  64. package/components/share-button.js +35 -0
  65. package/components/share-modal.js +139 -0
  66. package/components/style-picker.js +47 -0
  67. package/components/ultra-ide.js +298 -0
  68. package/components/ultra-loader.js +60 -0
  69. package/components/ultra-map.js +312 -0
  70. package/configs/minimal.js +9 -0
  71. package/configs/overpass-ultra.js +185 -0
  72. package/docs/assets/Examples/alt-bbox-format.png +0 -0
  73. package/docs/assets/Examples/atp-usps-dropboxes.png +0 -0
  74. package/docs/assets/Examples/bike-infra.png +0 -0
  75. package/docs/assets/Examples/contribution-heatmap.png +0 -0
  76. package/docs/assets/Examples/custom-style.png +0 -0
  77. package/docs/assets/Examples/glow-effect.png +0 -0
  78. package/docs/assets/Examples/landmarks-prototype.png +0 -0
  79. package/docs/assets/Examples/minimalist-ski-map.png +0 -0
  80. package/docs/assets/Examples/opentrailstash-3d.png +0 -0
  81. package/docs/assets/Examples/overture-landcover-plus-hillshade.png +0 -0
  82. package/docs/assets/Examples/overture-places-and-osm.png +0 -0
  83. package/docs/assets/Examples/trees.png +0 -0
  84. package/docs/assets/Examples/wikidata-photo.png +0 -0
  85. package/docs/assets/Examples/within-bounds.png +0 -0
  86. package/docs/assets/MapLibre-Examples/3d-buildings.png +0 -0
  87. package/docs/assets/MapLibre-Examples/3d-extrusion-floorplan.png +0 -0
  88. package/docs/assets/MapLibre-Examples/3d-terrain.png +0 -0
  89. package/docs/assets/MapLibre-Examples/add-image.png +0 -0
  90. package/docs/assets/MapLibre-Examples/attribution-position.png +0 -0
  91. package/docs/assets/MapLibre-Examples/change-case-of-labels.png +0 -0
  92. package/docs/assets/MapLibre-Examples/cluster.png +0 -0
  93. package/docs/assets/MapLibre-Examples/cooperative-gestures.png +0 -0
  94. package/docs/assets/MapLibre-Examples/custom-marker-icons.png +0 -0
  95. package/docs/assets/MapLibre-Examples/data-driven-lines.png +0 -0
  96. package/docs/assets/MapLibre-Examples/disable-rotation.png +0 -0
  97. package/docs/assets/MapLibre-Examples/disable-scroll-zoom.png +0 -0
  98. package/docs/assets/MapLibre-Examples/display-and-style-rich-text-labels.png +0 -0
  99. package/docs/assets/MapLibre-Examples/fill-pattern.png +0 -0
  100. package/docs/assets/MapLibre-Examples/fullscreen.png +0 -0
  101. package/docs/assets/MapLibre-Examples/geojson-layer-in-stack.png +0 -0
  102. package/docs/assets/MapLibre-Examples/geojson-line.png +0 -0
  103. package/docs/assets/MapLibre-Examples/geojson-markers.png +0 -0
  104. package/docs/assets/MapLibre-Examples/geojson-polygon.png +0 -0
  105. package/docs/assets/MapLibre-Examples/heatmap-layer.png +0 -0
  106. package/docs/assets/MapLibre-Examples/locate-user.png +0 -0
  107. package/docs/assets/MapLibre-Examples/map-tiles.png +0 -0
  108. package/docs/assets/MapLibre-Examples/pmtiles.png +0 -0
  109. package/docs/assets/MapLibre-Examples/wms.png +0 -0
  110. package/docs/assets/data/Examples/atp_usps_collection_boxes.geojson +1 -0
  111. package/docs/further-reading.md +15 -0
  112. package/docs/index.md +55 -0
  113. package/docs/overrides/partials/integrations/analytics/custom.html +11 -0
  114. package/docs/query-shortcuts.md +21 -0
  115. package/docs/style.md +120 -0
  116. package/docs/url-parameters.md +45 -0
  117. package/docs/yaml.md +117 -0
  118. package/index.js +53 -0
  119. package/lib/base.css +12 -0
  120. package/lib/bounds.js +8 -0
  121. package/lib/dom.js +21 -0
  122. package/lib/glyphFallback.js +31 -0
  123. package/lib/localStorage.js +34 -0
  124. package/lib/normalize.js +5 -0
  125. package/lib/queryMap.js +50 -0
  126. package/lib/queryParams.js +142 -0
  127. package/lib/queryProviders/auto.js +47 -0
  128. package/lib/queryProviders/geojson.js +134 -0
  129. package/lib/queryProviders/gpx.js +101 -0
  130. package/lib/queryProviders/index.js +22 -0
  131. package/lib/queryProviders/kml.js +132 -0
  132. package/lib/queryProviders/osm.js +199 -0
  133. package/lib/queryProviders/overpass.js +162 -0
  134. package/lib/queryProviders/raster.js +23 -0
  135. package/lib/queryProviders/tcx.js +105 -0
  136. package/lib/queryProviders/vector.js +13 -0
  137. package/lib/settings.js +72 -0
  138. package/lib/sprites.js +18 -0
  139. package/lib/style.js +222 -0
  140. package/mkdocs.yml +26 -0
  141. package/package.json +80 -0
  142. package/screenshot.png +0 -0
  143. package/static/embed.js +18 -0
  144. package/static/font/0-255.pbf +0 -0
  145. package/static/font/1024-1279.pbf +0 -0
  146. package/static/font/10240-10495.pbf +3 -0
  147. package/static/font/10496-10751.pbf +0 -0
  148. package/static/font/10752-11007.pbf +3 -0
  149. package/static/font/11008-11263.pbf +0 -0
  150. package/static/font/11264-11519.pbf +0 -0
  151. package/static/font/11520-11775.pbf +0 -0
  152. package/static/font/11776-12031.pbf +0 -0
  153. package/static/font/12032-12287.pbf +0 -0
  154. package/static/font/12288-12543.pbf +0 -0
  155. package/static/font/12544-12799.pbf +0 -0
  156. package/static/font/1280-1535.pbf +0 -0
  157. package/static/font/12800-13055.pbf +0 -0
  158. package/static/font/13056-13311.pbf +0 -0
  159. package/static/font/13312-13567.pbf +0 -0
  160. package/static/font/13568-13823.pbf +0 -0
  161. package/static/font/13824-14079.pbf +0 -0
  162. package/static/font/14080-14335.pbf +0 -0
  163. package/static/font/14336-14591.pbf +0 -0
  164. package/static/font/14592-14847.pbf +0 -0
  165. package/static/font/14848-15103.pbf +0 -0
  166. package/static/font/15104-15359.pbf +0 -0
  167. package/static/font/1536-1791.pbf +0 -0
  168. package/static/font/15360-15615.pbf +0 -0
  169. package/static/font/15616-15871.pbf +0 -0
  170. package/static/font/15872-16127.pbf +0 -0
  171. package/static/font/16128-16383.pbf +0 -0
  172. package/static/font/16384-16639.pbf +0 -0
  173. package/static/font/16640-16895.pbf +0 -0
  174. package/static/font/16896-17151.pbf +0 -0
  175. package/static/font/17152-17407.pbf +0 -0
  176. package/static/font/17408-17663.pbf +0 -0
  177. package/static/font/17664-17919.pbf +0 -0
  178. package/static/font/1792-2047.pbf +0 -0
  179. package/static/font/17920-18175.pbf +0 -0
  180. package/static/font/18176-18431.pbf +0 -0
  181. package/static/font/18432-18687.pbf +0 -0
  182. package/static/font/18688-18943.pbf +0 -0
  183. package/static/font/18944-19199.pbf +0 -0
  184. package/static/font/19200-19455.pbf +0 -0
  185. package/static/font/19456-19711.pbf +0 -0
  186. package/static/font/19712-19967.pbf +0 -0
  187. package/static/font/19968-20223.pbf +0 -0
  188. package/static/font/20224-20479.pbf +0 -0
  189. package/static/font/2048-2303.pbf +0 -0
  190. package/static/font/20480-20735.pbf +0 -0
  191. package/static/font/20736-20991.pbf +0 -0
  192. package/static/font/20992-21247.pbf +0 -0
  193. package/static/font/21248-21503.pbf +0 -0
  194. package/static/font/21504-21759.pbf +0 -0
  195. package/static/font/21760-22015.pbf +0 -0
  196. package/static/font/22016-22271.pbf +0 -0
  197. package/static/font/22272-22527.pbf +192 -26
  198. package/static/font/22528-22783.pbf +0 -0
  199. package/static/font/22784-23039.pbf +0 -0
  200. package/static/font/2304-2559.pbf +0 -0
  201. package/static/font/23040-23295.pbf +0 -0
  202. package/static/font/23296-23551.pbf +0 -0
  203. package/static/font/23552-23807.pbf +0 -0
  204. package/static/font/23808-24063.pbf +0 -0
  205. package/static/font/24064-24319.pbf +0 -0
  206. package/static/font/24320-24575.pbf +0 -0
  207. package/static/font/24576-24831.pbf +0 -0
  208. package/static/font/24832-25087.pbf +0 -0
  209. package/static/font/25088-25343.pbf +0 -0
  210. package/static/font/25344-25599.pbf +0 -0
  211. package/static/font/256-511.pbf +0 -0
  212. package/static/font/2560-2815.pbf +0 -0
  213. package/static/font/25600-25855.pbf +0 -0
  214. package/static/font/25856-26111.pbf +0 -0
  215. package/static/font/26112-26367.pbf +0 -0
  216. package/static/font/26368-26623.pbf +0 -0
  217. package/static/font/26624-26879.pbf +0 -0
  218. package/static/font/26880-27135.pbf +0 -0
  219. package/static/font/27136-27391.pbf +0 -0
  220. package/static/font/27392-27647.pbf +0 -0
  221. package/static/font/27648-27903.pbf +0 -0
  222. package/static/font/27904-28159.pbf +0 -0
  223. package/static/font/2816-3071.pbf +0 -0
  224. package/static/font/28160-28415.pbf +0 -0
  225. package/static/font/28416-28671.pbf +0 -0
  226. package/static/font/28672-28927.pbf +0 -0
  227. package/static/font/28928-29183.pbf +0 -0
  228. package/static/font/29184-29439.pbf +0 -0
  229. package/static/font/29440-29695.pbf +0 -0
  230. package/static/font/29696-29951.pbf +0 -0
  231. package/static/font/29952-30207.pbf +0 -0
  232. package/static/font/30208-30463.pbf +0 -0
  233. package/static/font/30464-30719.pbf +0 -0
  234. package/static/font/3072-3327.pbf +0 -0
  235. package/static/font/30720-30975.pbf +0 -0
  236. package/static/font/30976-31231.pbf +0 -0
  237. package/static/font/31232-31487.pbf +0 -0
  238. package/static/font/31488-31743.pbf +0 -0
  239. package/static/font/31744-31999.pbf +0 -0
  240. package/static/font/32000-32255.pbf +0 -0
  241. package/static/font/32256-32511.pbf +0 -0
  242. package/static/font/32512-32767.pbf +0 -0
  243. package/static/font/32768-33023.pbf +0 -0
  244. package/static/font/33024-33279.pbf +0 -0
  245. package/static/font/3328-3583.pbf +0 -0
  246. package/static/font/33280-33535.pbf +0 -0
  247. package/static/font/33536-33791.pbf +0 -0
  248. package/static/font/33792-34047.pbf +0 -0
  249. package/static/font/34048-34303.pbf +0 -0
  250. package/static/font/34304-34559.pbf +0 -0
  251. package/static/font/34560-34815.pbf +0 -0
  252. package/static/font/34816-35071.pbf +0 -0
  253. package/static/font/35072-35327.pbf +0 -0
  254. package/static/font/35328-35583.pbf +0 -0
  255. package/static/font/35584-35839.pbf +0 -0
  256. package/static/font/3584-3839.pbf +0 -0
  257. package/static/font/35840-36095.pbf +0 -0
  258. package/static/font/36096-36351.pbf +0 -0
  259. package/static/font/36352-36607.pbf +0 -0
  260. package/static/font/36608-36863.pbf +0 -0
  261. package/static/font/36864-37119.pbf +0 -0
  262. package/static/font/37120-37375.pbf +0 -0
  263. package/static/font/37376-37631.pbf +0 -0
  264. package/static/font/37632-37887.pbf +0 -0
  265. package/static/font/37888-38143.pbf +0 -0
  266. package/static/font/38144-38399.pbf +0 -0
  267. package/static/font/3840-4095.pbf +0 -0
  268. package/static/font/38400-38655.pbf +45 -4
  269. package/static/font/38656-38911.pbf +0 -0
  270. package/static/font/38912-39167.pbf +0 -0
  271. package/static/font/39168-39423.pbf +0 -0
  272. package/static/font/39424-39679.pbf +0 -0
  273. package/static/font/39680-39935.pbf +0 -0
  274. package/static/font/39936-40191.pbf +0 -0
  275. package/static/font/40192-40447.pbf +0 -0
  276. package/static/font/40448-40703.pbf +0 -0
  277. package/static/font/40704-40959.pbf +0 -0
  278. package/static/font/4096-4351.pbf +0 -0
  279. package/static/font/40960-41215.pbf +3 -0
  280. package/static/font/41216-41471.pbf +3 -0
  281. package/static/font/41472-41727.pbf +3 -0
  282. package/static/font/41728-41983.pbf +3 -0
  283. package/static/font/41984-42239.pbf +3 -0
  284. package/static/font/42240-42495.pbf +3 -0
  285. package/static/font/42496-42751.pbf +3 -0
  286. package/static/font/42752-43007.pbf +0 -0
  287. package/static/font/43008-43263.pbf +0 -0
  288. package/static/font/43264-43519.pbf +0 -0
  289. package/static/font/4352-4607.pbf +0 -0
  290. package/static/font/43520-43775.pbf +0 -0
  291. package/static/font/43776-44031.pbf +0 -0
  292. package/static/font/44032-44287.pbf +0 -0
  293. package/static/font/44288-44543.pbf +0 -0
  294. package/static/font/44544-44799.pbf +0 -0
  295. package/static/font/44800-45055.pbf +0 -0
  296. package/static/font/45056-45311.pbf +0 -0
  297. package/static/font/45312-45567.pbf +0 -0
  298. package/static/font/45568-45823.pbf +0 -0
  299. package/static/font/45824-46079.pbf +0 -0
  300. package/static/font/4608-4863.pbf +0 -0
  301. package/static/font/46080-46335.pbf +0 -0
  302. package/static/font/46336-46591.pbf +0 -0
  303. package/static/font/46592-46847.pbf +0 -0
  304. package/static/font/46848-47103.pbf +0 -0
  305. package/static/font/47104-47359.pbf +0 -0
  306. package/static/font/47360-47615.pbf +0 -0
  307. package/static/font/47616-47871.pbf +0 -0
  308. package/static/font/47872-48127.pbf +0 -0
  309. package/static/font/48128-48383.pbf +0 -0
  310. package/static/font/48384-48639.pbf +0 -0
  311. package/static/font/4864-5119.pbf +0 -0
  312. package/static/font/48640-48895.pbf +0 -0
  313. package/static/font/48896-49151.pbf +0 -0
  314. package/static/font/49152-49407.pbf +0 -0
  315. package/static/font/49408-49663.pbf +0 -0
  316. package/static/font/49664-49919.pbf +0 -0
  317. package/static/font/49920-50175.pbf +0 -0
  318. package/static/font/50176-50431.pbf +0 -0
  319. package/static/font/50432-50687.pbf +0 -0
  320. package/static/font/50688-50943.pbf +0 -0
  321. package/static/font/50944-51199.pbf +0 -0
  322. package/static/font/512-767.pbf +0 -0
  323. package/static/font/5120-5375.pbf +3 -0
  324. package/static/font/51200-51455.pbf +0 -0
  325. package/static/font/51456-51711.pbf +0 -0
  326. package/static/font/51712-51967.pbf +0 -0
  327. package/static/font/51968-52223.pbf +0 -0
  328. package/static/font/52224-52479.pbf +0 -0
  329. package/static/font/52480-52735.pbf +0 -0
  330. package/static/font/52736-52991.pbf +0 -0
  331. package/static/font/52992-53247.pbf +0 -0
  332. package/static/font/53248-53503.pbf +0 -0
  333. package/static/font/53504-53759.pbf +0 -0
  334. package/static/font/5376-5631.pbf +3 -0
  335. package/static/font/53760-54015.pbf +0 -0
  336. package/static/font/54016-54271.pbf +0 -0
  337. package/static/font/54272-54527.pbf +0 -0
  338. package/static/font/54528-54783.pbf +0 -0
  339. package/static/font/54784-55039.pbf +0 -0
  340. package/static/font/55040-55295.pbf +0 -0
  341. package/static/font/55296-55551.pbf +3 -0
  342. package/static/font/55552-55807.pbf +3 -0
  343. package/static/font/55808-56063.pbf +3 -0
  344. package/static/font/56064-56319.pbf +3 -0
  345. package/static/font/5632-5887.pbf +3 -0
  346. package/static/font/56320-56575.pbf +3 -0
  347. package/static/font/56576-56831.pbf +3 -0
  348. package/static/font/56832-57087.pbf +3 -0
  349. package/static/font/57088-57343.pbf +3 -0
  350. package/static/font/57344-57599.pbf +3 -0
  351. package/static/font/57600-57855.pbf +3 -0
  352. package/static/font/57856-58111.pbf +3 -0
  353. package/static/font/58112-58367.pbf +3 -0
  354. package/static/font/58368-58623.pbf +3 -0
  355. package/static/font/58624-58879.pbf +3 -0
  356. package/static/font/5888-6143.pbf +0 -0
  357. package/static/font/58880-59135.pbf +3 -0
  358. package/static/font/59136-59391.pbf +3 -0
  359. package/static/font/59392-59647.pbf +3 -0
  360. package/static/font/59648-59903.pbf +3 -0
  361. package/static/font/59904-60159.pbf +3 -0
  362. package/static/font/60160-60415.pbf +3 -0
  363. package/static/font/60416-60671.pbf +3 -0
  364. package/static/font/60672-60927.pbf +3 -0
  365. package/static/font/60928-61183.pbf +3 -0
  366. package/static/font/61184-61439.pbf +3 -0
  367. package/static/font/6144-6399.pbf +0 -0
  368. package/static/font/61440-61695.pbf +3 -0
  369. package/static/font/61696-61951.pbf +3 -0
  370. package/static/font/61952-62207.pbf +3 -0
  371. package/static/font/62208-62463.pbf +3 -0
  372. package/static/font/62464-62719.pbf +3 -0
  373. package/static/font/62720-62975.pbf +3 -0
  374. package/static/font/62976-63231.pbf +3 -0
  375. package/static/font/63232-63487.pbf +3 -0
  376. package/static/font/63488-63743.pbf +3 -0
  377. package/static/font/63744-63999.pbf +0 -0
  378. package/static/font/6400-6655.pbf +0 -0
  379. package/static/font/64000-64255.pbf +0 -0
  380. package/static/font/64256-64511.pbf +0 -0
  381. package/static/font/64512-64767.pbf +0 -0
  382. package/static/font/64768-65023.pbf +0 -0
  383. package/static/font/65024-65279.pbf +0 -0
  384. package/static/font/65280-65535.pbf +0 -0
  385. package/static/font/6656-6911.pbf +3 -0
  386. package/static/font/6912-7167.pbf +0 -0
  387. package/static/font/7168-7423.pbf +0 -0
  388. package/static/font/7424-7679.pbf +0 -0
  389. package/static/font/768-1023.pbf +0 -0
  390. package/static/font/7680-7935.pbf +0 -0
  391. package/static/font/7936-8191.pbf +0 -0
  392. package/static/font/8192-8447.pbf +0 -0
  393. package/static/font/8448-8703.pbf +0 -0
  394. package/static/font/8704-8959.pbf +0 -0
  395. package/static/font/8960-9215.pbf +0 -0
  396. package/static/font/9216-9471.pbf +0 -0
  397. package/static/font/9472-9727.pbf +0 -0
  398. package/static/font/9728-9983.pbf +0 -0
  399. package/static/font/9984-10239.pbf +0 -0
  400. package/static/index.html +59 -0
  401. package/static/logo.png +0 -0
  402. package/static/logo.svg +78 -0
  403. package/static/mapbox-gl-rtl-text@0.2.3.js +9851 -0
  404. package/static/minimal.js +9 -0
  405. package/static/minimal.json +7 -0
  406. package/static/sprites/maki.json +1706 -0
  407. package/static/sprites/maki.license +116 -0
  408. package/static/sprites/maki.png +0 -0
  409. package/static/sprites/maki@2x.json +1706 -0
  410. package/static/sprites/maki@2x.png +0 -0
  411. package/static/sprites/temaki.json +4306 -0
  412. package/static/sprites/temaki.license +118 -0
  413. package/static/sprites/temaki.png +0 -0
  414. package/static/sprites/temaki@2x.json +4306 -0
  415. package/static/sprites/temaki@2x.png +0 -0
@@ -0,0 +1,1706 @@
1
+ {
2
+ "aerialway": {
3
+ "height": 66,
4
+ "width": 66,
5
+ "x": 0,
6
+ "y": 0,
7
+ "pixelRatio": 2,
8
+ "sdf": true
9
+ },
10
+ "airfield": {
11
+ "height": 66,
12
+ "width": 66,
13
+ "x": 66,
14
+ "y": 0,
15
+ "pixelRatio": 2,
16
+ "sdf": true
17
+ },
18
+ "airport": {
19
+ "height": 66,
20
+ "width": 66,
21
+ "x": 0,
22
+ "y": 66,
23
+ "pixelRatio": 2,
24
+ "sdf": true
25
+ },
26
+ "alcohol-shop": {
27
+ "height": 66,
28
+ "width": 66,
29
+ "x": 66,
30
+ "y": 66,
31
+ "pixelRatio": 2,
32
+ "sdf": true
33
+ },
34
+ "american-football": {
35
+ "height": 66,
36
+ "width": 66,
37
+ "x": 132,
38
+ "y": 0,
39
+ "pixelRatio": 2,
40
+ "sdf": true
41
+ },
42
+ "amusement-park": {
43
+ "height": 66,
44
+ "width": 66,
45
+ "x": 132,
46
+ "y": 66,
47
+ "pixelRatio": 2,
48
+ "sdf": true
49
+ },
50
+ "animal-shelter": {
51
+ "height": 66,
52
+ "width": 66,
53
+ "x": 0,
54
+ "y": 132,
55
+ "pixelRatio": 2,
56
+ "sdf": true
57
+ },
58
+ "aquarium": {
59
+ "height": 66,
60
+ "width": 66,
61
+ "x": 66,
62
+ "y": 132,
63
+ "pixelRatio": 2,
64
+ "sdf": true
65
+ },
66
+ "arrow": {
67
+ "height": 66,
68
+ "width": 66,
69
+ "x": 132,
70
+ "y": 132,
71
+ "pixelRatio": 2,
72
+ "sdf": true
73
+ },
74
+ "art-gallery": {
75
+ "height": 66,
76
+ "width": 66,
77
+ "x": 198,
78
+ "y": 0,
79
+ "pixelRatio": 2,
80
+ "sdf": true
81
+ },
82
+ "attraction": {
83
+ "height": 66,
84
+ "width": 66,
85
+ "x": 198,
86
+ "y": 66,
87
+ "pixelRatio": 2,
88
+ "sdf": true
89
+ },
90
+ "bakery": {
91
+ "height": 66,
92
+ "width": 66,
93
+ "x": 198,
94
+ "y": 132,
95
+ "pixelRatio": 2,
96
+ "sdf": true
97
+ },
98
+ "bank-JP": {
99
+ "height": 66,
100
+ "width": 66,
101
+ "x": 0,
102
+ "y": 198,
103
+ "pixelRatio": 2,
104
+ "sdf": true
105
+ },
106
+ "bank": {
107
+ "height": 66,
108
+ "width": 66,
109
+ "x": 66,
110
+ "y": 198,
111
+ "pixelRatio": 2,
112
+ "sdf": true
113
+ },
114
+ "bar": {
115
+ "height": 66,
116
+ "width": 66,
117
+ "x": 132,
118
+ "y": 198,
119
+ "pixelRatio": 2,
120
+ "sdf": true
121
+ },
122
+ "barrier": {
123
+ "height": 66,
124
+ "width": 66,
125
+ "x": 198,
126
+ "y": 198,
127
+ "pixelRatio": 2,
128
+ "sdf": true
129
+ },
130
+ "baseball": {
131
+ "height": 66,
132
+ "width": 66,
133
+ "x": 264,
134
+ "y": 0,
135
+ "pixelRatio": 2,
136
+ "sdf": true
137
+ },
138
+ "basketball": {
139
+ "height": 66,
140
+ "width": 66,
141
+ "x": 264,
142
+ "y": 66,
143
+ "pixelRatio": 2,
144
+ "sdf": true
145
+ },
146
+ "bbq": {
147
+ "height": 66,
148
+ "width": 66,
149
+ "x": 264,
150
+ "y": 132,
151
+ "pixelRatio": 2,
152
+ "sdf": true
153
+ },
154
+ "beach": {
155
+ "height": 66,
156
+ "width": 66,
157
+ "x": 264,
158
+ "y": 198,
159
+ "pixelRatio": 2,
160
+ "sdf": true
161
+ },
162
+ "beer": {
163
+ "height": 66,
164
+ "width": 66,
165
+ "x": 0,
166
+ "y": 264,
167
+ "pixelRatio": 2,
168
+ "sdf": true
169
+ },
170
+ "bicycle-share": {
171
+ "height": 66,
172
+ "width": 66,
173
+ "x": 66,
174
+ "y": 264,
175
+ "pixelRatio": 2,
176
+ "sdf": true
177
+ },
178
+ "bicycle": {
179
+ "height": 66,
180
+ "width": 66,
181
+ "x": 132,
182
+ "y": 264,
183
+ "pixelRatio": 2,
184
+ "sdf": true
185
+ },
186
+ "blood-bank": {
187
+ "height": 66,
188
+ "width": 66,
189
+ "x": 198,
190
+ "y": 264,
191
+ "pixelRatio": 2,
192
+ "sdf": true
193
+ },
194
+ "bowling-alley": {
195
+ "height": 66,
196
+ "width": 66,
197
+ "x": 264,
198
+ "y": 264,
199
+ "pixelRatio": 2,
200
+ "sdf": true
201
+ },
202
+ "bridge": {
203
+ "height": 66,
204
+ "width": 66,
205
+ "x": 330,
206
+ "y": 0,
207
+ "pixelRatio": 2,
208
+ "sdf": true
209
+ },
210
+ "building-alt1": {
211
+ "height": 66,
212
+ "width": 66,
213
+ "x": 330,
214
+ "y": 66,
215
+ "pixelRatio": 2,
216
+ "sdf": true
217
+ },
218
+ "building": {
219
+ "height": 66,
220
+ "width": 66,
221
+ "x": 330,
222
+ "y": 132,
223
+ "pixelRatio": 2,
224
+ "sdf": true
225
+ },
226
+ "bus": {
227
+ "height": 66,
228
+ "width": 66,
229
+ "x": 330,
230
+ "y": 198,
231
+ "pixelRatio": 2,
232
+ "sdf": true
233
+ },
234
+ "cafe": {
235
+ "height": 66,
236
+ "width": 66,
237
+ "x": 330,
238
+ "y": 264,
239
+ "pixelRatio": 2,
240
+ "sdf": true
241
+ },
242
+ "campsite": {
243
+ "height": 66,
244
+ "width": 66,
245
+ "x": 0,
246
+ "y": 330,
247
+ "pixelRatio": 2,
248
+ "sdf": true
249
+ },
250
+ "car-rental": {
251
+ "height": 66,
252
+ "width": 66,
253
+ "x": 66,
254
+ "y": 330,
255
+ "pixelRatio": 2,
256
+ "sdf": true
257
+ },
258
+ "car-repair": {
259
+ "height": 66,
260
+ "width": 66,
261
+ "x": 132,
262
+ "y": 330,
263
+ "pixelRatio": 2,
264
+ "sdf": true
265
+ },
266
+ "car": {
267
+ "height": 66,
268
+ "width": 66,
269
+ "x": 198,
270
+ "y": 330,
271
+ "pixelRatio": 2,
272
+ "sdf": true
273
+ },
274
+ "casino": {
275
+ "height": 66,
276
+ "width": 66,
277
+ "x": 264,
278
+ "y": 330,
279
+ "pixelRatio": 2,
280
+ "sdf": true
281
+ },
282
+ "castle-JP": {
283
+ "height": 66,
284
+ "width": 66,
285
+ "x": 330,
286
+ "y": 330,
287
+ "pixelRatio": 2,
288
+ "sdf": true
289
+ },
290
+ "castle": {
291
+ "height": 66,
292
+ "width": 66,
293
+ "x": 396,
294
+ "y": 0,
295
+ "pixelRatio": 2,
296
+ "sdf": true
297
+ },
298
+ "caution": {
299
+ "height": 66,
300
+ "width": 66,
301
+ "x": 396,
302
+ "y": 66,
303
+ "pixelRatio": 2,
304
+ "sdf": true
305
+ },
306
+ "cemetery-JP": {
307
+ "height": 66,
308
+ "width": 66,
309
+ "x": 396,
310
+ "y": 132,
311
+ "pixelRatio": 2,
312
+ "sdf": true
313
+ },
314
+ "cemetery": {
315
+ "height": 66,
316
+ "width": 66,
317
+ "x": 396,
318
+ "y": 198,
319
+ "pixelRatio": 2,
320
+ "sdf": true
321
+ },
322
+ "charging-station": {
323
+ "height": 66,
324
+ "width": 66,
325
+ "x": 396,
326
+ "y": 264,
327
+ "pixelRatio": 2,
328
+ "sdf": true
329
+ },
330
+ "cinema": {
331
+ "height": 66,
332
+ "width": 66,
333
+ "x": 396,
334
+ "y": 330,
335
+ "pixelRatio": 2,
336
+ "sdf": true
337
+ },
338
+ "circle-stroked": {
339
+ "height": 66,
340
+ "width": 66,
341
+ "x": 0,
342
+ "y": 396,
343
+ "pixelRatio": 2,
344
+ "sdf": true
345
+ },
346
+ "circle": {
347
+ "height": 66,
348
+ "width": 66,
349
+ "x": 66,
350
+ "y": 396,
351
+ "pixelRatio": 2,
352
+ "sdf": true
353
+ },
354
+ "city": {
355
+ "height": 66,
356
+ "width": 66,
357
+ "x": 132,
358
+ "y": 396,
359
+ "pixelRatio": 2,
360
+ "sdf": true
361
+ },
362
+ "clothing-store": {
363
+ "height": 66,
364
+ "width": 66,
365
+ "x": 198,
366
+ "y": 396,
367
+ "pixelRatio": 2,
368
+ "sdf": true
369
+ },
370
+ "college-JP": {
371
+ "height": 66,
372
+ "width": 66,
373
+ "x": 264,
374
+ "y": 396,
375
+ "pixelRatio": 2,
376
+ "sdf": true
377
+ },
378
+ "college": {
379
+ "height": 66,
380
+ "width": 66,
381
+ "x": 330,
382
+ "y": 396,
383
+ "pixelRatio": 2,
384
+ "sdf": true
385
+ },
386
+ "commercial": {
387
+ "height": 66,
388
+ "width": 66,
389
+ "x": 396,
390
+ "y": 396,
391
+ "pixelRatio": 2,
392
+ "sdf": true
393
+ },
394
+ "communications-tower": {
395
+ "height": 66,
396
+ "width": 66,
397
+ "x": 462,
398
+ "y": 0,
399
+ "pixelRatio": 2,
400
+ "sdf": true
401
+ },
402
+ "confectionery": {
403
+ "height": 66,
404
+ "width": 66,
405
+ "x": 462,
406
+ "y": 66,
407
+ "pixelRatio": 2,
408
+ "sdf": true
409
+ },
410
+ "construction": {
411
+ "height": 66,
412
+ "width": 66,
413
+ "x": 462,
414
+ "y": 132,
415
+ "pixelRatio": 2,
416
+ "sdf": true
417
+ },
418
+ "convenience": {
419
+ "height": 66,
420
+ "width": 66,
421
+ "x": 462,
422
+ "y": 198,
423
+ "pixelRatio": 2,
424
+ "sdf": true
425
+ },
426
+ "cricket": {
427
+ "height": 66,
428
+ "width": 66,
429
+ "x": 462,
430
+ "y": 264,
431
+ "pixelRatio": 2,
432
+ "sdf": true
433
+ },
434
+ "cross": {
435
+ "height": 66,
436
+ "width": 66,
437
+ "x": 462,
438
+ "y": 330,
439
+ "pixelRatio": 2,
440
+ "sdf": true
441
+ },
442
+ "dam": {
443
+ "height": 66,
444
+ "width": 66,
445
+ "x": 462,
446
+ "y": 396,
447
+ "pixelRatio": 2,
448
+ "sdf": true
449
+ },
450
+ "danger": {
451
+ "height": 66,
452
+ "width": 66,
453
+ "x": 0,
454
+ "y": 462,
455
+ "pixelRatio": 2,
456
+ "sdf": true
457
+ },
458
+ "defibrillator": {
459
+ "height": 66,
460
+ "width": 66,
461
+ "x": 66,
462
+ "y": 462,
463
+ "pixelRatio": 2,
464
+ "sdf": true
465
+ },
466
+ "dentist": {
467
+ "height": 66,
468
+ "width": 66,
469
+ "x": 132,
470
+ "y": 462,
471
+ "pixelRatio": 2,
472
+ "sdf": true
473
+ },
474
+ "diamond": {
475
+ "height": 66,
476
+ "width": 66,
477
+ "x": 198,
478
+ "y": 462,
479
+ "pixelRatio": 2,
480
+ "sdf": true
481
+ },
482
+ "doctor": {
483
+ "height": 66,
484
+ "width": 66,
485
+ "x": 264,
486
+ "y": 462,
487
+ "pixelRatio": 2,
488
+ "sdf": true
489
+ },
490
+ "dog-park": {
491
+ "height": 66,
492
+ "width": 66,
493
+ "x": 330,
494
+ "y": 462,
495
+ "pixelRatio": 2,
496
+ "sdf": true
497
+ },
498
+ "drinking-water": {
499
+ "height": 66,
500
+ "width": 66,
501
+ "x": 396,
502
+ "y": 462,
503
+ "pixelRatio": 2,
504
+ "sdf": true
505
+ },
506
+ "elevator": {
507
+ "height": 66,
508
+ "width": 66,
509
+ "x": 462,
510
+ "y": 462,
511
+ "pixelRatio": 2,
512
+ "sdf": true
513
+ },
514
+ "embassy": {
515
+ "height": 66,
516
+ "width": 66,
517
+ "x": 528,
518
+ "y": 0,
519
+ "pixelRatio": 2,
520
+ "sdf": true
521
+ },
522
+ "emergency-phone": {
523
+ "height": 66,
524
+ "width": 66,
525
+ "x": 528,
526
+ "y": 66,
527
+ "pixelRatio": 2,
528
+ "sdf": true
529
+ },
530
+ "entrance-alt1": {
531
+ "height": 66,
532
+ "width": 66,
533
+ "x": 528,
534
+ "y": 132,
535
+ "pixelRatio": 2,
536
+ "sdf": true
537
+ },
538
+ "entrance": {
539
+ "height": 66,
540
+ "width": 66,
541
+ "x": 528,
542
+ "y": 198,
543
+ "pixelRatio": 2,
544
+ "sdf": true
545
+ },
546
+ "farm": {
547
+ "height": 66,
548
+ "width": 66,
549
+ "x": 528,
550
+ "y": 264,
551
+ "pixelRatio": 2,
552
+ "sdf": true
553
+ },
554
+ "fast-food": {
555
+ "height": 66,
556
+ "width": 66,
557
+ "x": 528,
558
+ "y": 330,
559
+ "pixelRatio": 2,
560
+ "sdf": true
561
+ },
562
+ "fence": {
563
+ "height": 66,
564
+ "width": 66,
565
+ "x": 528,
566
+ "y": 396,
567
+ "pixelRatio": 2,
568
+ "sdf": true
569
+ },
570
+ "ferry-JP": {
571
+ "height": 66,
572
+ "width": 66,
573
+ "x": 528,
574
+ "y": 462,
575
+ "pixelRatio": 2,
576
+ "sdf": true
577
+ },
578
+ "ferry": {
579
+ "height": 66,
580
+ "width": 66,
581
+ "x": 0,
582
+ "y": 528,
583
+ "pixelRatio": 2,
584
+ "sdf": true
585
+ },
586
+ "fire-station-JP": {
587
+ "height": 66,
588
+ "width": 66,
589
+ "x": 66,
590
+ "y": 528,
591
+ "pixelRatio": 2,
592
+ "sdf": true
593
+ },
594
+ "fire-station": {
595
+ "height": 66,
596
+ "width": 66,
597
+ "x": 132,
598
+ "y": 528,
599
+ "pixelRatio": 2,
600
+ "sdf": true
601
+ },
602
+ "fitness-centre": {
603
+ "height": 66,
604
+ "width": 66,
605
+ "x": 198,
606
+ "y": 528,
607
+ "pixelRatio": 2,
608
+ "sdf": true
609
+ },
610
+ "florist": {
611
+ "height": 66,
612
+ "width": 66,
613
+ "x": 264,
614
+ "y": 528,
615
+ "pixelRatio": 2,
616
+ "sdf": true
617
+ },
618
+ "fuel": {
619
+ "height": 66,
620
+ "width": 66,
621
+ "x": 330,
622
+ "y": 528,
623
+ "pixelRatio": 2,
624
+ "sdf": true
625
+ },
626
+ "furniture": {
627
+ "height": 66,
628
+ "width": 66,
629
+ "x": 396,
630
+ "y": 528,
631
+ "pixelRatio": 2,
632
+ "sdf": true
633
+ },
634
+ "gaming": {
635
+ "height": 66,
636
+ "width": 66,
637
+ "x": 462,
638
+ "y": 528,
639
+ "pixelRatio": 2,
640
+ "sdf": true
641
+ },
642
+ "garden-centre": {
643
+ "height": 66,
644
+ "width": 66,
645
+ "x": 528,
646
+ "y": 528,
647
+ "pixelRatio": 2,
648
+ "sdf": true
649
+ },
650
+ "garden": {
651
+ "height": 66,
652
+ "width": 66,
653
+ "x": 594,
654
+ "y": 0,
655
+ "pixelRatio": 2,
656
+ "sdf": true
657
+ },
658
+ "gate": {
659
+ "height": 66,
660
+ "width": 66,
661
+ "x": 594,
662
+ "y": 66,
663
+ "pixelRatio": 2,
664
+ "sdf": true
665
+ },
666
+ "gift": {
667
+ "height": 66,
668
+ "width": 66,
669
+ "x": 594,
670
+ "y": 132,
671
+ "pixelRatio": 2,
672
+ "sdf": true
673
+ },
674
+ "globe": {
675
+ "height": 66,
676
+ "width": 66,
677
+ "x": 594,
678
+ "y": 198,
679
+ "pixelRatio": 2,
680
+ "sdf": true
681
+ },
682
+ "golf": {
683
+ "height": 66,
684
+ "width": 66,
685
+ "x": 594,
686
+ "y": 264,
687
+ "pixelRatio": 2,
688
+ "sdf": true
689
+ },
690
+ "grocery": {
691
+ "height": 66,
692
+ "width": 66,
693
+ "x": 594,
694
+ "y": 330,
695
+ "pixelRatio": 2,
696
+ "sdf": true
697
+ },
698
+ "hairdresser": {
699
+ "height": 66,
700
+ "width": 66,
701
+ "x": 594,
702
+ "y": 396,
703
+ "pixelRatio": 2,
704
+ "sdf": true
705
+ },
706
+ "harbor": {
707
+ "height": 66,
708
+ "width": 66,
709
+ "x": 594,
710
+ "y": 462,
711
+ "pixelRatio": 2,
712
+ "sdf": true
713
+ },
714
+ "hardware": {
715
+ "height": 66,
716
+ "width": 66,
717
+ "x": 594,
718
+ "y": 528,
719
+ "pixelRatio": 2,
720
+ "sdf": true
721
+ },
722
+ "heart": {
723
+ "height": 66,
724
+ "width": 66,
725
+ "x": 0,
726
+ "y": 594,
727
+ "pixelRatio": 2,
728
+ "sdf": true
729
+ },
730
+ "heliport": {
731
+ "height": 66,
732
+ "width": 66,
733
+ "x": 66,
734
+ "y": 594,
735
+ "pixelRatio": 2,
736
+ "sdf": true
737
+ },
738
+ "highway-rest-area": {
739
+ "height": 66,
740
+ "width": 66,
741
+ "x": 132,
742
+ "y": 594,
743
+ "pixelRatio": 2,
744
+ "sdf": true
745
+ },
746
+ "historic": {
747
+ "height": 66,
748
+ "width": 66,
749
+ "x": 198,
750
+ "y": 594,
751
+ "pixelRatio": 2,
752
+ "sdf": true
753
+ },
754
+ "home": {
755
+ "height": 66,
756
+ "width": 66,
757
+ "x": 264,
758
+ "y": 594,
759
+ "pixelRatio": 2,
760
+ "sdf": true
761
+ },
762
+ "horse-riding": {
763
+ "height": 66,
764
+ "width": 66,
765
+ "x": 330,
766
+ "y": 594,
767
+ "pixelRatio": 2,
768
+ "sdf": true
769
+ },
770
+ "hospital-JP": {
771
+ "height": 66,
772
+ "width": 66,
773
+ "x": 396,
774
+ "y": 594,
775
+ "pixelRatio": 2,
776
+ "sdf": true
777
+ },
778
+ "hospital": {
779
+ "height": 66,
780
+ "width": 66,
781
+ "x": 462,
782
+ "y": 594,
783
+ "pixelRatio": 2,
784
+ "sdf": true
785
+ },
786
+ "hot-spring": {
787
+ "height": 66,
788
+ "width": 66,
789
+ "x": 528,
790
+ "y": 594,
791
+ "pixelRatio": 2,
792
+ "sdf": true
793
+ },
794
+ "ice-cream": {
795
+ "height": 66,
796
+ "width": 66,
797
+ "x": 594,
798
+ "y": 594,
799
+ "pixelRatio": 2,
800
+ "sdf": true
801
+ },
802
+ "industry": {
803
+ "height": 66,
804
+ "width": 66,
805
+ "x": 660,
806
+ "y": 0,
807
+ "pixelRatio": 2,
808
+ "sdf": true
809
+ },
810
+ "information": {
811
+ "height": 66,
812
+ "width": 66,
813
+ "x": 660,
814
+ "y": 66,
815
+ "pixelRatio": 2,
816
+ "sdf": true
817
+ },
818
+ "jewelry-store": {
819
+ "height": 66,
820
+ "width": 66,
821
+ "x": 660,
822
+ "y": 132,
823
+ "pixelRatio": 2,
824
+ "sdf": true
825
+ },
826
+ "karaoke": {
827
+ "height": 66,
828
+ "width": 66,
829
+ "x": 660,
830
+ "y": 198,
831
+ "pixelRatio": 2,
832
+ "sdf": true
833
+ },
834
+ "landmark-JP": {
835
+ "height": 66,
836
+ "width": 66,
837
+ "x": 660,
838
+ "y": 264,
839
+ "pixelRatio": 2,
840
+ "sdf": true
841
+ },
842
+ "landmark": {
843
+ "height": 66,
844
+ "width": 66,
845
+ "x": 660,
846
+ "y": 330,
847
+ "pixelRatio": 2,
848
+ "sdf": true
849
+ },
850
+ "landuse": {
851
+ "height": 66,
852
+ "width": 66,
853
+ "x": 660,
854
+ "y": 396,
855
+ "pixelRatio": 2,
856
+ "sdf": true
857
+ },
858
+ "laundry": {
859
+ "height": 66,
860
+ "width": 66,
861
+ "x": 660,
862
+ "y": 462,
863
+ "pixelRatio": 2,
864
+ "sdf": true
865
+ },
866
+ "library": {
867
+ "height": 66,
868
+ "width": 66,
869
+ "x": 660,
870
+ "y": 528,
871
+ "pixelRatio": 2,
872
+ "sdf": true
873
+ },
874
+ "lift-gate": {
875
+ "height": 66,
876
+ "width": 66,
877
+ "x": 660,
878
+ "y": 594,
879
+ "pixelRatio": 2,
880
+ "sdf": true
881
+ },
882
+ "lighthouse-JP": {
883
+ "height": 66,
884
+ "width": 66,
885
+ "x": 0,
886
+ "y": 660,
887
+ "pixelRatio": 2,
888
+ "sdf": true
889
+ },
890
+ "lighthouse": {
891
+ "height": 66,
892
+ "width": 66,
893
+ "x": 66,
894
+ "y": 660,
895
+ "pixelRatio": 2,
896
+ "sdf": true
897
+ },
898
+ "lodging": {
899
+ "height": 66,
900
+ "width": 66,
901
+ "x": 132,
902
+ "y": 660,
903
+ "pixelRatio": 2,
904
+ "sdf": true
905
+ },
906
+ "logging": {
907
+ "height": 66,
908
+ "width": 66,
909
+ "x": 198,
910
+ "y": 660,
911
+ "pixelRatio": 2,
912
+ "sdf": true
913
+ },
914
+ "marker-stroked": {
915
+ "height": 66,
916
+ "width": 66,
917
+ "x": 264,
918
+ "y": 660,
919
+ "pixelRatio": 2,
920
+ "sdf": true
921
+ },
922
+ "marker": {
923
+ "height": 66,
924
+ "width": 66,
925
+ "x": 330,
926
+ "y": 660,
927
+ "pixelRatio": 2,
928
+ "sdf": true
929
+ },
930
+ "mobile-phone": {
931
+ "height": 66,
932
+ "width": 66,
933
+ "x": 396,
934
+ "y": 660,
935
+ "pixelRatio": 2,
936
+ "sdf": true
937
+ },
938
+ "monument-JP": {
939
+ "height": 66,
940
+ "width": 66,
941
+ "x": 462,
942
+ "y": 660,
943
+ "pixelRatio": 2,
944
+ "sdf": true
945
+ },
946
+ "monument": {
947
+ "height": 66,
948
+ "width": 66,
949
+ "x": 528,
950
+ "y": 660,
951
+ "pixelRatio": 2,
952
+ "sdf": true
953
+ },
954
+ "mountain": {
955
+ "height": 66,
956
+ "width": 66,
957
+ "x": 594,
958
+ "y": 660,
959
+ "pixelRatio": 2,
960
+ "sdf": true
961
+ },
962
+ "museum": {
963
+ "height": 66,
964
+ "width": 66,
965
+ "x": 660,
966
+ "y": 660,
967
+ "pixelRatio": 2,
968
+ "sdf": true
969
+ },
970
+ "music": {
971
+ "height": 66,
972
+ "width": 66,
973
+ "x": 726,
974
+ "y": 0,
975
+ "pixelRatio": 2,
976
+ "sdf": true
977
+ },
978
+ "natural": {
979
+ "height": 66,
980
+ "width": 66,
981
+ "x": 726,
982
+ "y": 66,
983
+ "pixelRatio": 2,
984
+ "sdf": true
985
+ },
986
+ "nightclub": {
987
+ "height": 66,
988
+ "width": 66,
989
+ "x": 726,
990
+ "y": 132,
991
+ "pixelRatio": 2,
992
+ "sdf": true
993
+ },
994
+ "observation-tower": {
995
+ "height": 66,
996
+ "width": 66,
997
+ "x": 726,
998
+ "y": 198,
999
+ "pixelRatio": 2,
1000
+ "sdf": true
1001
+ },
1002
+ "optician": {
1003
+ "height": 66,
1004
+ "width": 66,
1005
+ "x": 726,
1006
+ "y": 264,
1007
+ "pixelRatio": 2,
1008
+ "sdf": true
1009
+ },
1010
+ "paint": {
1011
+ "height": 66,
1012
+ "width": 66,
1013
+ "x": 726,
1014
+ "y": 330,
1015
+ "pixelRatio": 2,
1016
+ "sdf": true
1017
+ },
1018
+ "park-alt1": {
1019
+ "height": 66,
1020
+ "width": 66,
1021
+ "x": 726,
1022
+ "y": 396,
1023
+ "pixelRatio": 2,
1024
+ "sdf": true
1025
+ },
1026
+ "park": {
1027
+ "height": 66,
1028
+ "width": 66,
1029
+ "x": 726,
1030
+ "y": 462,
1031
+ "pixelRatio": 2,
1032
+ "sdf": true
1033
+ },
1034
+ "parking-garage": {
1035
+ "height": 66,
1036
+ "width": 66,
1037
+ "x": 726,
1038
+ "y": 528,
1039
+ "pixelRatio": 2,
1040
+ "sdf": true
1041
+ },
1042
+ "parking-paid": {
1043
+ "height": 66,
1044
+ "width": 66,
1045
+ "x": 726,
1046
+ "y": 594,
1047
+ "pixelRatio": 2,
1048
+ "sdf": true
1049
+ },
1050
+ "parking": {
1051
+ "height": 66,
1052
+ "width": 66,
1053
+ "x": 726,
1054
+ "y": 660,
1055
+ "pixelRatio": 2,
1056
+ "sdf": true
1057
+ },
1058
+ "pharmacy": {
1059
+ "height": 66,
1060
+ "width": 66,
1061
+ "x": 0,
1062
+ "y": 726,
1063
+ "pixelRatio": 2,
1064
+ "sdf": true
1065
+ },
1066
+ "picnic-site": {
1067
+ "height": 66,
1068
+ "width": 66,
1069
+ "x": 66,
1070
+ "y": 726,
1071
+ "pixelRatio": 2,
1072
+ "sdf": true
1073
+ },
1074
+ "pitch": {
1075
+ "height": 66,
1076
+ "width": 66,
1077
+ "x": 132,
1078
+ "y": 726,
1079
+ "pixelRatio": 2,
1080
+ "sdf": true
1081
+ },
1082
+ "place-of-worship": {
1083
+ "height": 66,
1084
+ "width": 66,
1085
+ "x": 198,
1086
+ "y": 726,
1087
+ "pixelRatio": 2,
1088
+ "sdf": true
1089
+ },
1090
+ "playground": {
1091
+ "height": 66,
1092
+ "width": 66,
1093
+ "x": 264,
1094
+ "y": 726,
1095
+ "pixelRatio": 2,
1096
+ "sdf": true
1097
+ },
1098
+ "police-JP": {
1099
+ "height": 66,
1100
+ "width": 66,
1101
+ "x": 330,
1102
+ "y": 726,
1103
+ "pixelRatio": 2,
1104
+ "sdf": true
1105
+ },
1106
+ "police": {
1107
+ "height": 66,
1108
+ "width": 66,
1109
+ "x": 396,
1110
+ "y": 726,
1111
+ "pixelRatio": 2,
1112
+ "sdf": true
1113
+ },
1114
+ "post-JP": {
1115
+ "height": 66,
1116
+ "width": 66,
1117
+ "x": 462,
1118
+ "y": 726,
1119
+ "pixelRatio": 2,
1120
+ "sdf": true
1121
+ },
1122
+ "post": {
1123
+ "height": 66,
1124
+ "width": 66,
1125
+ "x": 528,
1126
+ "y": 726,
1127
+ "pixelRatio": 2,
1128
+ "sdf": true
1129
+ },
1130
+ "prison": {
1131
+ "height": 66,
1132
+ "width": 66,
1133
+ "x": 594,
1134
+ "y": 726,
1135
+ "pixelRatio": 2,
1136
+ "sdf": true
1137
+ },
1138
+ "racetrack-boat": {
1139
+ "height": 66,
1140
+ "width": 66,
1141
+ "x": 660,
1142
+ "y": 726,
1143
+ "pixelRatio": 2,
1144
+ "sdf": true
1145
+ },
1146
+ "racetrack-cycling": {
1147
+ "height": 66,
1148
+ "width": 66,
1149
+ "x": 726,
1150
+ "y": 726,
1151
+ "pixelRatio": 2,
1152
+ "sdf": true
1153
+ },
1154
+ "racetrack-horse": {
1155
+ "height": 66,
1156
+ "width": 66,
1157
+ "x": 792,
1158
+ "y": 0,
1159
+ "pixelRatio": 2,
1160
+ "sdf": true
1161
+ },
1162
+ "racetrack": {
1163
+ "height": 66,
1164
+ "width": 66,
1165
+ "x": 792,
1166
+ "y": 66,
1167
+ "pixelRatio": 2,
1168
+ "sdf": true
1169
+ },
1170
+ "rail-light": {
1171
+ "height": 66,
1172
+ "width": 66,
1173
+ "x": 792,
1174
+ "y": 132,
1175
+ "pixelRatio": 2,
1176
+ "sdf": true
1177
+ },
1178
+ "rail-metro": {
1179
+ "height": 66,
1180
+ "width": 66,
1181
+ "x": 792,
1182
+ "y": 198,
1183
+ "pixelRatio": 2,
1184
+ "sdf": true
1185
+ },
1186
+ "rail": {
1187
+ "height": 66,
1188
+ "width": 66,
1189
+ "x": 792,
1190
+ "y": 264,
1191
+ "pixelRatio": 2,
1192
+ "sdf": true
1193
+ },
1194
+ "ranger-station": {
1195
+ "height": 66,
1196
+ "width": 66,
1197
+ "x": 792,
1198
+ "y": 330,
1199
+ "pixelRatio": 2,
1200
+ "sdf": true
1201
+ },
1202
+ "recycling": {
1203
+ "height": 66,
1204
+ "width": 66,
1205
+ "x": 792,
1206
+ "y": 396,
1207
+ "pixelRatio": 2,
1208
+ "sdf": true
1209
+ },
1210
+ "religious-buddhist": {
1211
+ "height": 66,
1212
+ "width": 66,
1213
+ "x": 792,
1214
+ "y": 462,
1215
+ "pixelRatio": 2,
1216
+ "sdf": true
1217
+ },
1218
+ "religious-christian": {
1219
+ "height": 66,
1220
+ "width": 66,
1221
+ "x": 792,
1222
+ "y": 528,
1223
+ "pixelRatio": 2,
1224
+ "sdf": true
1225
+ },
1226
+ "religious-jewish": {
1227
+ "height": 66,
1228
+ "width": 66,
1229
+ "x": 792,
1230
+ "y": 594,
1231
+ "pixelRatio": 2,
1232
+ "sdf": true
1233
+ },
1234
+ "religious-muslim": {
1235
+ "height": 66,
1236
+ "width": 66,
1237
+ "x": 792,
1238
+ "y": 660,
1239
+ "pixelRatio": 2,
1240
+ "sdf": true
1241
+ },
1242
+ "religious-shinto": {
1243
+ "height": 66,
1244
+ "width": 66,
1245
+ "x": 792,
1246
+ "y": 726,
1247
+ "pixelRatio": 2,
1248
+ "sdf": true
1249
+ },
1250
+ "residential-community": {
1251
+ "height": 66,
1252
+ "width": 66,
1253
+ "x": 0,
1254
+ "y": 792,
1255
+ "pixelRatio": 2,
1256
+ "sdf": true
1257
+ },
1258
+ "restaurant-bbq": {
1259
+ "height": 66,
1260
+ "width": 66,
1261
+ "x": 66,
1262
+ "y": 792,
1263
+ "pixelRatio": 2,
1264
+ "sdf": true
1265
+ },
1266
+ "restaurant-noodle": {
1267
+ "height": 66,
1268
+ "width": 66,
1269
+ "x": 132,
1270
+ "y": 792,
1271
+ "pixelRatio": 2,
1272
+ "sdf": true
1273
+ },
1274
+ "restaurant-pizza": {
1275
+ "height": 66,
1276
+ "width": 66,
1277
+ "x": 198,
1278
+ "y": 792,
1279
+ "pixelRatio": 2,
1280
+ "sdf": true
1281
+ },
1282
+ "restaurant-seafood": {
1283
+ "height": 66,
1284
+ "width": 66,
1285
+ "x": 264,
1286
+ "y": 792,
1287
+ "pixelRatio": 2,
1288
+ "sdf": true
1289
+ },
1290
+ "restaurant-sushi": {
1291
+ "height": 66,
1292
+ "width": 66,
1293
+ "x": 330,
1294
+ "y": 792,
1295
+ "pixelRatio": 2,
1296
+ "sdf": true
1297
+ },
1298
+ "restaurant": {
1299
+ "height": 66,
1300
+ "width": 66,
1301
+ "x": 396,
1302
+ "y": 792,
1303
+ "pixelRatio": 2,
1304
+ "sdf": true
1305
+ },
1306
+ "road-accident": {
1307
+ "height": 66,
1308
+ "width": 66,
1309
+ "x": 462,
1310
+ "y": 792,
1311
+ "pixelRatio": 2,
1312
+ "sdf": true
1313
+ },
1314
+ "roadblock": {
1315
+ "height": 66,
1316
+ "width": 66,
1317
+ "x": 528,
1318
+ "y": 792,
1319
+ "pixelRatio": 2,
1320
+ "sdf": true
1321
+ },
1322
+ "rocket": {
1323
+ "height": 66,
1324
+ "width": 66,
1325
+ "x": 594,
1326
+ "y": 792,
1327
+ "pixelRatio": 2,
1328
+ "sdf": true
1329
+ },
1330
+ "school-JP": {
1331
+ "height": 66,
1332
+ "width": 66,
1333
+ "x": 660,
1334
+ "y": 792,
1335
+ "pixelRatio": 2,
1336
+ "sdf": true
1337
+ },
1338
+ "school": {
1339
+ "height": 66,
1340
+ "width": 66,
1341
+ "x": 726,
1342
+ "y": 792,
1343
+ "pixelRatio": 2,
1344
+ "sdf": true
1345
+ },
1346
+ "scooter": {
1347
+ "height": 66,
1348
+ "width": 66,
1349
+ "x": 792,
1350
+ "y": 792,
1351
+ "pixelRatio": 2,
1352
+ "sdf": true
1353
+ },
1354
+ "shelter": {
1355
+ "height": 66,
1356
+ "width": 66,
1357
+ "x": 858,
1358
+ "y": 0,
1359
+ "pixelRatio": 2,
1360
+ "sdf": true
1361
+ },
1362
+ "shoe": {
1363
+ "height": 66,
1364
+ "width": 66,
1365
+ "x": 858,
1366
+ "y": 66,
1367
+ "pixelRatio": 2,
1368
+ "sdf": true
1369
+ },
1370
+ "shop": {
1371
+ "height": 66,
1372
+ "width": 66,
1373
+ "x": 858,
1374
+ "y": 132,
1375
+ "pixelRatio": 2,
1376
+ "sdf": true
1377
+ },
1378
+ "skateboard": {
1379
+ "height": 66,
1380
+ "width": 66,
1381
+ "x": 858,
1382
+ "y": 198,
1383
+ "pixelRatio": 2,
1384
+ "sdf": true
1385
+ },
1386
+ "skiing": {
1387
+ "height": 66,
1388
+ "width": 66,
1389
+ "x": 858,
1390
+ "y": 264,
1391
+ "pixelRatio": 2,
1392
+ "sdf": true
1393
+ },
1394
+ "slaughterhouse": {
1395
+ "height": 66,
1396
+ "width": 66,
1397
+ "x": 858,
1398
+ "y": 330,
1399
+ "pixelRatio": 2,
1400
+ "sdf": true
1401
+ },
1402
+ "slipway": {
1403
+ "height": 66,
1404
+ "width": 66,
1405
+ "x": 858,
1406
+ "y": 396,
1407
+ "pixelRatio": 2,
1408
+ "sdf": true
1409
+ },
1410
+ "snowmobile": {
1411
+ "height": 66,
1412
+ "width": 66,
1413
+ "x": 858,
1414
+ "y": 462,
1415
+ "pixelRatio": 2,
1416
+ "sdf": true
1417
+ },
1418
+ "soccer": {
1419
+ "height": 66,
1420
+ "width": 66,
1421
+ "x": 858,
1422
+ "y": 528,
1423
+ "pixelRatio": 2,
1424
+ "sdf": true
1425
+ },
1426
+ "square-stroked": {
1427
+ "height": 66,
1428
+ "width": 66,
1429
+ "x": 858,
1430
+ "y": 594,
1431
+ "pixelRatio": 2,
1432
+ "sdf": true
1433
+ },
1434
+ "square": {
1435
+ "height": 66,
1436
+ "width": 66,
1437
+ "x": 858,
1438
+ "y": 660,
1439
+ "pixelRatio": 2,
1440
+ "sdf": true
1441
+ },
1442
+ "stadium": {
1443
+ "height": 66,
1444
+ "width": 66,
1445
+ "x": 858,
1446
+ "y": 726,
1447
+ "pixelRatio": 2,
1448
+ "sdf": true
1449
+ },
1450
+ "star-stroked": {
1451
+ "height": 66,
1452
+ "width": 66,
1453
+ "x": 858,
1454
+ "y": 792,
1455
+ "pixelRatio": 2,
1456
+ "sdf": true
1457
+ },
1458
+ "star": {
1459
+ "height": 66,
1460
+ "width": 66,
1461
+ "x": 0,
1462
+ "y": 858,
1463
+ "pixelRatio": 2,
1464
+ "sdf": true
1465
+ },
1466
+ "suitcase": {
1467
+ "height": 66,
1468
+ "width": 66,
1469
+ "x": 66,
1470
+ "y": 858,
1471
+ "pixelRatio": 2,
1472
+ "sdf": true
1473
+ },
1474
+ "swimming": {
1475
+ "height": 66,
1476
+ "width": 66,
1477
+ "x": 132,
1478
+ "y": 858,
1479
+ "pixelRatio": 2,
1480
+ "sdf": true
1481
+ },
1482
+ "table-tennis": {
1483
+ "height": 66,
1484
+ "width": 66,
1485
+ "x": 198,
1486
+ "y": 858,
1487
+ "pixelRatio": 2,
1488
+ "sdf": true
1489
+ },
1490
+ "teahouse": {
1491
+ "height": 66,
1492
+ "width": 66,
1493
+ "x": 264,
1494
+ "y": 858,
1495
+ "pixelRatio": 2,
1496
+ "sdf": true
1497
+ },
1498
+ "telephone": {
1499
+ "height": 66,
1500
+ "width": 66,
1501
+ "x": 330,
1502
+ "y": 858,
1503
+ "pixelRatio": 2,
1504
+ "sdf": true
1505
+ },
1506
+ "tennis": {
1507
+ "height": 66,
1508
+ "width": 66,
1509
+ "x": 396,
1510
+ "y": 858,
1511
+ "pixelRatio": 2,
1512
+ "sdf": true
1513
+ },
1514
+ "terminal": {
1515
+ "height": 66,
1516
+ "width": 66,
1517
+ "x": 462,
1518
+ "y": 858,
1519
+ "pixelRatio": 2,
1520
+ "sdf": true
1521
+ },
1522
+ "theatre": {
1523
+ "height": 66,
1524
+ "width": 66,
1525
+ "x": 528,
1526
+ "y": 858,
1527
+ "pixelRatio": 2,
1528
+ "sdf": true
1529
+ },
1530
+ "toilet": {
1531
+ "height": 66,
1532
+ "width": 66,
1533
+ "x": 594,
1534
+ "y": 858,
1535
+ "pixelRatio": 2,
1536
+ "sdf": true
1537
+ },
1538
+ "toll": {
1539
+ "height": 66,
1540
+ "width": 66,
1541
+ "x": 660,
1542
+ "y": 858,
1543
+ "pixelRatio": 2,
1544
+ "sdf": true
1545
+ },
1546
+ "town-hall": {
1547
+ "height": 66,
1548
+ "width": 66,
1549
+ "x": 726,
1550
+ "y": 858,
1551
+ "pixelRatio": 2,
1552
+ "sdf": true
1553
+ },
1554
+ "town": {
1555
+ "height": 66,
1556
+ "width": 66,
1557
+ "x": 792,
1558
+ "y": 858,
1559
+ "pixelRatio": 2,
1560
+ "sdf": true
1561
+ },
1562
+ "triangle-stroked": {
1563
+ "height": 66,
1564
+ "width": 66,
1565
+ "x": 858,
1566
+ "y": 858,
1567
+ "pixelRatio": 2,
1568
+ "sdf": true
1569
+ },
1570
+ "triangle": {
1571
+ "height": 66,
1572
+ "width": 66,
1573
+ "x": 924,
1574
+ "y": 0,
1575
+ "pixelRatio": 2,
1576
+ "sdf": true
1577
+ },
1578
+ "tunnel": {
1579
+ "height": 66,
1580
+ "width": 66,
1581
+ "x": 924,
1582
+ "y": 66,
1583
+ "pixelRatio": 2,
1584
+ "sdf": true
1585
+ },
1586
+ "veterinary": {
1587
+ "height": 66,
1588
+ "width": 66,
1589
+ "x": 924,
1590
+ "y": 132,
1591
+ "pixelRatio": 2,
1592
+ "sdf": true
1593
+ },
1594
+ "viewpoint": {
1595
+ "height": 66,
1596
+ "width": 66,
1597
+ "x": 924,
1598
+ "y": 198,
1599
+ "pixelRatio": 2,
1600
+ "sdf": true
1601
+ },
1602
+ "village": {
1603
+ "height": 66,
1604
+ "width": 66,
1605
+ "x": 924,
1606
+ "y": 264,
1607
+ "pixelRatio": 2,
1608
+ "sdf": true
1609
+ },
1610
+ "volcano": {
1611
+ "height": 66,
1612
+ "width": 66,
1613
+ "x": 924,
1614
+ "y": 330,
1615
+ "pixelRatio": 2,
1616
+ "sdf": true
1617
+ },
1618
+ "volleyball": {
1619
+ "height": 66,
1620
+ "width": 66,
1621
+ "x": 924,
1622
+ "y": 396,
1623
+ "pixelRatio": 2,
1624
+ "sdf": true
1625
+ },
1626
+ "warehouse": {
1627
+ "height": 66,
1628
+ "width": 66,
1629
+ "x": 924,
1630
+ "y": 462,
1631
+ "pixelRatio": 2,
1632
+ "sdf": true
1633
+ },
1634
+ "waste-basket": {
1635
+ "height": 66,
1636
+ "width": 66,
1637
+ "x": 924,
1638
+ "y": 528,
1639
+ "pixelRatio": 2,
1640
+ "sdf": true
1641
+ },
1642
+ "watch": {
1643
+ "height": 66,
1644
+ "width": 66,
1645
+ "x": 924,
1646
+ "y": 594,
1647
+ "pixelRatio": 2,
1648
+ "sdf": true
1649
+ },
1650
+ "water": {
1651
+ "height": 66,
1652
+ "width": 66,
1653
+ "x": 924,
1654
+ "y": 660,
1655
+ "pixelRatio": 2,
1656
+ "sdf": true
1657
+ },
1658
+ "waterfall": {
1659
+ "height": 66,
1660
+ "width": 66,
1661
+ "x": 924,
1662
+ "y": 726,
1663
+ "pixelRatio": 2,
1664
+ "sdf": true
1665
+ },
1666
+ "watermill": {
1667
+ "height": 66,
1668
+ "width": 66,
1669
+ "x": 924,
1670
+ "y": 792,
1671
+ "pixelRatio": 2,
1672
+ "sdf": true
1673
+ },
1674
+ "wetland": {
1675
+ "height": 66,
1676
+ "width": 66,
1677
+ "x": 924,
1678
+ "y": 858,
1679
+ "pixelRatio": 2,
1680
+ "sdf": true
1681
+ },
1682
+ "wheelchair": {
1683
+ "height": 66,
1684
+ "width": 66,
1685
+ "x": 0,
1686
+ "y": 924,
1687
+ "pixelRatio": 2,
1688
+ "sdf": true
1689
+ },
1690
+ "windmill": {
1691
+ "height": 66,
1692
+ "width": 66,
1693
+ "x": 66,
1694
+ "y": 924,
1695
+ "pixelRatio": 2,
1696
+ "sdf": true
1697
+ },
1698
+ "zoo": {
1699
+ "height": 66,
1700
+ "width": 66,
1701
+ "x": 132,
1702
+ "y": 924,
1703
+ "pixelRatio": 2,
1704
+ "sdf": true
1705
+ }
1706
+ }