@mapvx/web-js 1.0.0

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 (397) hide show
  1. package/LICENSE.md +19 -0
  2. package/README.md +257 -0
  3. package/dist/cjs/assets/icons.js +87 -0
  4. package/dist/cjs/assets/icons.js.map +1 -0
  5. package/dist/cjs/assets/route_animation_icon.svg +15 -0
  6. package/dist/cjs/assets/user-dot-icon.svg +3 -0
  7. package/dist/cjs/config/sdkConfig.js +3 -0
  8. package/dist/cjs/config/sdkConfig.js.map +1 -0
  9. package/dist/cjs/controllers/routeController.js +1054 -0
  10. package/dist/cjs/controllers/routeController.js.map +1 -0
  11. package/dist/cjs/domain/models/_internal.js +15 -0
  12. package/dist/cjs/domain/models/_internal.js.map +1 -0
  13. package/dist/cjs/domain/models/_rtl.js +10 -0
  14. package/dist/cjs/domain/models/_rtl.js.map +1 -0
  15. package/dist/cjs/domain/models/animation.js +63 -0
  16. package/dist/cjs/domain/models/animation.js.map +1 -0
  17. package/dist/cjs/domain/models/banner.js +24 -0
  18. package/dist/cjs/domain/models/banner.js.map +1 -0
  19. package/dist/cjs/domain/models/categories.js +25 -0
  20. package/dist/cjs/domain/models/categories.js.map +1 -0
  21. package/dist/cjs/domain/models/cityFilterOption.js +3 -0
  22. package/dist/cjs/domain/models/cityFilterOption.js.map +1 -0
  23. package/dist/cjs/domain/models/configuration.js +3 -0
  24. package/dist/cjs/domain/models/configuration.js.map +1 -0
  25. package/dist/cjs/domain/models/cssCustomization.js +3 -0
  26. package/dist/cjs/domain/models/cssCustomization.js.map +1 -0
  27. package/dist/cjs/domain/models/fitOptions.js +3 -0
  28. package/dist/cjs/domain/models/fitOptions.js.map +1 -0
  29. package/dist/cjs/domain/models/innerFloors.js +3 -0
  30. package/dist/cjs/domain/models/innerFloors.js.map +1 -0
  31. package/dist/cjs/domain/models/institution.js +44 -0
  32. package/dist/cjs/domain/models/institution.js.map +1 -0
  33. package/dist/cjs/domain/models/latLng.js +3 -0
  34. package/dist/cjs/domain/models/latLng.js.map +1 -0
  35. package/dist/cjs/domain/models/location.js +3 -0
  36. package/dist/cjs/domain/models/location.js.map +1 -0
  37. package/dist/cjs/domain/models/loggeable.js +52 -0
  38. package/dist/cjs/domain/models/loggeable.js.map +1 -0
  39. package/dist/cjs/domain/models/mapCamera.js +3 -0
  40. package/dist/cjs/domain/models/mapCamera.js.map +1 -0
  41. package/dist/cjs/domain/models/mapConfig.js +15 -0
  42. package/dist/cjs/domain/models/mapConfig.js.map +1 -0
  43. package/dist/cjs/domain/models/marker.js +400 -0
  44. package/dist/cjs/domain/models/marker.js.map +1 -0
  45. package/dist/cjs/domain/models/multilanguage.js +18 -0
  46. package/dist/cjs/domain/models/multilanguage.js.map +1 -0
  47. package/dist/cjs/domain/models/openingHours.js +3 -0
  48. package/dist/cjs/domain/models/openingHours.js.map +1 -0
  49. package/dist/cjs/domain/models/place.js +101 -0
  50. package/dist/cjs/domain/models/place.js.map +1 -0
  51. package/dist/cjs/domain/models/platform.js +3 -0
  52. package/dist/cjs/domain/models/platform.js.map +1 -0
  53. package/dist/cjs/domain/models/popover.js +3 -0
  54. package/dist/cjs/domain/models/popover.js.map +1 -0
  55. package/dist/cjs/domain/models/product.js +3 -0
  56. package/dist/cjs/domain/models/product.js.map +1 -0
  57. package/dist/cjs/domain/models/property.js +104 -0
  58. package/dist/cjs/domain/models/property.js.map +1 -0
  59. package/dist/cjs/domain/models/route.js +166 -0
  60. package/dist/cjs/domain/models/route.js.map +1 -0
  61. package/dist/cjs/domain/models/routeConfiguration.js +80 -0
  62. package/dist/cjs/domain/models/routeConfiguration.js.map +1 -0
  63. package/dist/cjs/domain/models/routeInstance.js +30 -0
  64. package/dist/cjs/domain/models/routeInstance.js.map +1 -0
  65. package/dist/cjs/domain/models/routeStyle.js +3 -0
  66. package/dist/cjs/domain/models/routeStyle.js.map +1 -0
  67. package/dist/cjs/domain/models/transport.js +22 -0
  68. package/dist/cjs/domain/models/transport.js.map +1 -0
  69. package/dist/cjs/domain/ports/ICache.js +3 -0
  70. package/dist/cjs/domain/ports/ICache.js.map +1 -0
  71. package/dist/cjs/domain/ports/IHttpClient.js +3 -0
  72. package/dist/cjs/domain/ports/IHttpClient.js.map +1 -0
  73. package/dist/cjs/domain/ports/ILogger.js +23 -0
  74. package/dist/cjs/domain/ports/ILogger.js.map +1 -0
  75. package/dist/cjs/domain/ports/index.js +10 -0
  76. package/dist/cjs/domain/ports/index.js.map +1 -0
  77. package/dist/cjs/index.js +76 -0
  78. package/dist/cjs/index.js.map +1 -0
  79. package/dist/cjs/infrastructure/cache/CacheManager.js +236 -0
  80. package/dist/cjs/infrastructure/cache/CacheManager.js.map +1 -0
  81. package/dist/cjs/infrastructure/cache/LRUCache.js +153 -0
  82. package/dist/cjs/infrastructure/cache/LRUCache.js.map +1 -0
  83. package/dist/cjs/infrastructure/cache/PersistentCache.js +160 -0
  84. package/dist/cjs/infrastructure/cache/PersistentCache.js.map +1 -0
  85. package/dist/cjs/infrastructure/cache/cacheConfig.js +70 -0
  86. package/dist/cjs/infrastructure/cache/cacheConfig.js.map +1 -0
  87. package/dist/cjs/infrastructure/http/FetchHttpClient.js +75 -0
  88. package/dist/cjs/infrastructure/http/FetchHttpClient.js.map +1 -0
  89. package/dist/cjs/infrastructure/logging/CountlyLogger.js +78 -0
  90. package/dist/cjs/infrastructure/logging/CountlyLogger.js.map +1 -0
  91. package/dist/cjs/interfaces/cache.js +3 -0
  92. package/dist/cjs/interfaces/cache.js.map +1 -0
  93. package/dist/cjs/interfaces/healthResponse.js +3 -0
  94. package/dist/cjs/interfaces/healthResponse.js.map +1 -0
  95. package/dist/cjs/interfaces/institutionResponse.js +3 -0
  96. package/dist/cjs/interfaces/institutionResponse.js.map +1 -0
  97. package/dist/cjs/interfaces/metadata.js +3 -0
  98. package/dist/cjs/interfaces/metadata.js.map +1 -0
  99. package/dist/cjs/interfaces/placeResponse.js +3 -0
  100. package/dist/cjs/interfaces/placeResponse.js.map +1 -0
  101. package/dist/cjs/interfaces/routeCacheResponse.js +3 -0
  102. package/dist/cjs/interfaces/routeCacheResponse.js.map +1 -0
  103. package/dist/cjs/interfaces/routeResponse.js +3 -0
  104. package/dist/cjs/interfaces/routeResponse.js.map +1 -0
  105. package/dist/cjs/interfaces/styleResponse.js +3 -0
  106. package/dist/cjs/interfaces/styleResponse.js.map +1 -0
  107. package/dist/cjs/logger/logger.js +91 -0
  108. package/dist/cjs/logger/logger.js.map +1 -0
  109. package/dist/cjs/logger/rollbar.js +24 -0
  110. package/dist/cjs/logger/rollbar.js.map +1 -0
  111. package/dist/cjs/map/map.js +1457 -0
  112. package/dist/cjs/map/map.js.map +1 -0
  113. package/dist/cjs/repository/repository.js +574 -0
  114. package/dist/cjs/repository/repository.js.map +1 -0
  115. package/dist/cjs/repository/requester.js +590 -0
  116. package/dist/cjs/repository/requester.js.map +1 -0
  117. package/dist/cjs/sdk.js +351 -0
  118. package/dist/cjs/sdk.js.map +1 -0
  119. package/dist/cjs/utils/error.js +20 -0
  120. package/dist/cjs/utils/error.js.map +1 -0
  121. package/dist/cjs/utils/images.js +26 -0
  122. package/dist/cjs/utils/images.js.map +1 -0
  123. package/dist/cjs/utils/nav-functions.js +150 -0
  124. package/dist/cjs/utils/nav-functions.js.map +1 -0
  125. package/dist/cjs/utils/opening-hours-helper.js +911 -0
  126. package/dist/cjs/utils/opening-hours-helper.js.map +1 -0
  127. package/dist/cjs/utils/route-utils.js +58 -0
  128. package/dist/cjs/utils/route-utils.js.map +1 -0
  129. package/dist/cjs/utils/update-css.js +77 -0
  130. package/dist/cjs/utils/update-css.js.map +1 -0
  131. package/dist/cjs/utils/utils.js +105 -0
  132. package/dist/cjs/utils/utils.js.map +1 -0
  133. package/dist/es/assets/icons.d.ts +86 -0
  134. package/dist/es/assets/icons.d.ts.map +1 -0
  135. package/dist/es/assets/icons.js +83 -0
  136. package/dist/es/assets/icons.js.map +1 -0
  137. package/dist/es/assets/route_animation_icon.svg +15 -0
  138. package/dist/es/assets/user-dot-icon.svg +3 -0
  139. package/dist/es/config/sdkConfig.d.ts +105 -0
  140. package/dist/es/config/sdkConfig.d.ts.map +1 -0
  141. package/dist/es/config/sdkConfig.js +2 -0
  142. package/dist/es/config/sdkConfig.js.map +1 -0
  143. package/dist/es/controllers/routeController.d.ts +161 -0
  144. package/dist/es/controllers/routeController.d.ts.map +1 -0
  145. package/dist/es/controllers/routeController.js +1050 -0
  146. package/dist/es/controllers/routeController.js.map +1 -0
  147. package/dist/es/domain/models/_internal.d.ts +21 -0
  148. package/dist/es/domain/models/_internal.d.ts.map +1 -0
  149. package/dist/es/domain/models/_internal.js +11 -0
  150. package/dist/es/domain/models/_internal.js.map +1 -0
  151. package/dist/es/domain/models/_rtl.d.ts +7 -0
  152. package/dist/es/domain/models/_rtl.d.ts.map +1 -0
  153. package/dist/es/domain/models/_rtl.js +7 -0
  154. package/dist/es/domain/models/_rtl.js.map +1 -0
  155. package/dist/es/domain/models/animation.d.ts +161 -0
  156. package/dist/es/domain/models/animation.d.ts.map +1 -0
  157. package/dist/es/domain/models/animation.js +58 -0
  158. package/dist/es/domain/models/animation.js.map +1 -0
  159. package/dist/es/domain/models/banner.d.ts +64 -0
  160. package/dist/es/domain/models/banner.d.ts.map +1 -0
  161. package/dist/es/domain/models/banner.js +20 -0
  162. package/dist/es/domain/models/banner.js.map +1 -0
  163. package/dist/es/domain/models/categories.d.ts +157 -0
  164. package/dist/es/domain/models/categories.d.ts.map +1 -0
  165. package/dist/es/domain/models/categories.js +20 -0
  166. package/dist/es/domain/models/categories.js.map +1 -0
  167. package/dist/es/domain/models/cityFilterOption.d.ts +15 -0
  168. package/dist/es/domain/models/cityFilterOption.d.ts.map +1 -0
  169. package/dist/es/domain/models/cityFilterOption.js +2 -0
  170. package/dist/es/domain/models/cityFilterOption.js.map +1 -0
  171. package/dist/es/domain/models/configuration.d.ts +523 -0
  172. package/dist/es/domain/models/configuration.d.ts.map +1 -0
  173. package/dist/es/domain/models/configuration.js +2 -0
  174. package/dist/es/domain/models/configuration.js.map +1 -0
  175. package/dist/es/domain/models/cssCustomization.d.ts +63 -0
  176. package/dist/es/domain/models/cssCustomization.d.ts.map +1 -0
  177. package/dist/es/domain/models/cssCustomization.js +2 -0
  178. package/dist/es/domain/models/cssCustomization.js.map +1 -0
  179. package/dist/es/domain/models/fitOptions.d.ts +175 -0
  180. package/dist/es/domain/models/fitOptions.d.ts.map +1 -0
  181. package/dist/es/domain/models/fitOptions.js +2 -0
  182. package/dist/es/domain/models/fitOptions.js.map +1 -0
  183. package/dist/es/domain/models/innerFloors.d.ts +42 -0
  184. package/dist/es/domain/models/innerFloors.d.ts.map +1 -0
  185. package/dist/es/domain/models/innerFloors.js +2 -0
  186. package/dist/es/domain/models/innerFloors.js.map +1 -0
  187. package/dist/es/domain/models/institution.d.ts +64 -0
  188. package/dist/es/domain/models/institution.d.ts.map +1 -0
  189. package/dist/es/domain/models/institution.js +40 -0
  190. package/dist/es/domain/models/institution.js.map +1 -0
  191. package/dist/es/domain/models/latLng.d.ts +14 -0
  192. package/dist/es/domain/models/latLng.d.ts.map +1 -0
  193. package/dist/es/domain/models/latLng.js +2 -0
  194. package/dist/es/domain/models/latLng.js.map +1 -0
  195. package/dist/es/domain/models/location.d.ts +10 -0
  196. package/dist/es/domain/models/location.d.ts.map +1 -0
  197. package/dist/es/domain/models/location.js +2 -0
  198. package/dist/es/domain/models/location.js.map +1 -0
  199. package/dist/es/domain/models/loggeable.d.ts +43 -0
  200. package/dist/es/domain/models/loggeable.d.ts.map +1 -0
  201. package/dist/es/domain/models/loggeable.js +48 -0
  202. package/dist/es/domain/models/loggeable.js.map +1 -0
  203. package/dist/es/domain/models/mapCamera.d.ts +109 -0
  204. package/dist/es/domain/models/mapCamera.d.ts.map +1 -0
  205. package/dist/es/domain/models/mapCamera.js +2 -0
  206. package/dist/es/domain/models/mapCamera.js.map +1 -0
  207. package/dist/es/domain/models/mapConfig.d.ts +238 -0
  208. package/dist/es/domain/models/mapConfig.d.ts.map +1 -0
  209. package/dist/es/domain/models/mapConfig.js +12 -0
  210. package/dist/es/domain/models/mapConfig.js.map +1 -0
  211. package/dist/es/domain/models/marker.d.ts +301 -0
  212. package/dist/es/domain/models/marker.d.ts.map +1 -0
  213. package/dist/es/domain/models/marker.js +396 -0
  214. package/dist/es/domain/models/marker.js.map +1 -0
  215. package/dist/es/domain/models/multilanguage.d.ts +27 -0
  216. package/dist/es/domain/models/multilanguage.d.ts.map +1 -0
  217. package/dist/es/domain/models/multilanguage.js +14 -0
  218. package/dist/es/domain/models/multilanguage.js.map +1 -0
  219. package/dist/es/domain/models/openingHours.d.ts +30 -0
  220. package/dist/es/domain/models/openingHours.d.ts.map +1 -0
  221. package/dist/es/domain/models/openingHours.js +2 -0
  222. package/dist/es/domain/models/openingHours.js.map +1 -0
  223. package/dist/es/domain/models/place.d.ts +167 -0
  224. package/dist/es/domain/models/place.d.ts.map +1 -0
  225. package/dist/es/domain/models/place.js +97 -0
  226. package/dist/es/domain/models/place.js.map +1 -0
  227. package/dist/es/domain/models/platform.d.ts +6 -0
  228. package/dist/es/domain/models/platform.d.ts.map +1 -0
  229. package/dist/es/domain/models/platform.js +2 -0
  230. package/dist/es/domain/models/platform.js.map +1 -0
  231. package/dist/es/domain/models/popover.d.ts +14 -0
  232. package/dist/es/domain/models/popover.d.ts.map +1 -0
  233. package/dist/es/domain/models/popover.js +2 -0
  234. package/dist/es/domain/models/popover.js.map +1 -0
  235. package/dist/es/domain/models/product.d.ts +36 -0
  236. package/dist/es/domain/models/product.d.ts.map +1 -0
  237. package/dist/es/domain/models/product.js +2 -0
  238. package/dist/es/domain/models/product.js.map +1 -0
  239. package/dist/es/domain/models/property.d.ts +172 -0
  240. package/dist/es/domain/models/property.d.ts.map +1 -0
  241. package/dist/es/domain/models/property.js +100 -0
  242. package/dist/es/domain/models/property.js.map +1 -0
  243. package/dist/es/domain/models/route.d.ts +199 -0
  244. package/dist/es/domain/models/route.d.ts.map +1 -0
  245. package/dist/es/domain/models/route.js +160 -0
  246. package/dist/es/domain/models/route.js.map +1 -0
  247. package/dist/es/domain/models/routeConfiguration.d.ts +140 -0
  248. package/dist/es/domain/models/routeConfiguration.d.ts.map +1 -0
  249. package/dist/es/domain/models/routeConfiguration.js +75 -0
  250. package/dist/es/domain/models/routeConfiguration.js.map +1 -0
  251. package/dist/es/domain/models/routeInstance.d.ts +52 -0
  252. package/dist/es/domain/models/routeInstance.d.ts.map +1 -0
  253. package/dist/es/domain/models/routeInstance.js +26 -0
  254. package/dist/es/domain/models/routeInstance.js.map +1 -0
  255. package/dist/es/domain/models/routeStyle.d.ts +47 -0
  256. package/dist/es/domain/models/routeStyle.d.ts.map +1 -0
  257. package/dist/es/domain/models/routeStyle.js +2 -0
  258. package/dist/es/domain/models/routeStyle.js.map +1 -0
  259. package/dist/es/domain/models/transport.d.ts +176 -0
  260. package/dist/es/domain/models/transport.d.ts.map +1 -0
  261. package/dist/es/domain/models/transport.js +18 -0
  262. package/dist/es/domain/models/transport.js.map +1 -0
  263. package/dist/es/domain/ports/ICache.d.ts +70 -0
  264. package/dist/es/domain/ports/ICache.d.ts.map +1 -0
  265. package/dist/es/domain/ports/ICache.js +2 -0
  266. package/dist/es/domain/ports/ICache.js.map +1 -0
  267. package/dist/es/domain/ports/IHttpClient.d.ts +77 -0
  268. package/dist/es/domain/ports/IHttpClient.d.ts.map +1 -0
  269. package/dist/es/domain/ports/IHttpClient.js +2 -0
  270. package/dist/es/domain/ports/IHttpClient.js.map +1 -0
  271. package/dist/es/domain/ports/ILogger.d.ts +61 -0
  272. package/dist/es/domain/ports/ILogger.d.ts.map +1 -0
  273. package/dist/es/domain/ports/ILogger.js +19 -0
  274. package/dist/es/domain/ports/ILogger.js.map +1 -0
  275. package/dist/es/domain/ports/index.d.ts +9 -0
  276. package/dist/es/domain/ports/index.d.ts.map +1 -0
  277. package/dist/es/domain/ports/index.js +6 -0
  278. package/dist/es/domain/ports/index.js.map +1 -0
  279. package/dist/es/index.d.ts +58 -0
  280. package/dist/es/index.d.ts.map +1 -0
  281. package/dist/es/index.js +48 -0
  282. package/dist/es/index.js.map +1 -0
  283. package/dist/es/infrastructure/cache/CacheManager.d.ts +106 -0
  284. package/dist/es/infrastructure/cache/CacheManager.d.ts.map +1 -0
  285. package/dist/es/infrastructure/cache/CacheManager.js +232 -0
  286. package/dist/es/infrastructure/cache/CacheManager.js.map +1 -0
  287. package/dist/es/infrastructure/cache/LRUCache.d.ts +70 -0
  288. package/dist/es/infrastructure/cache/LRUCache.d.ts.map +1 -0
  289. package/dist/es/infrastructure/cache/LRUCache.js +149 -0
  290. package/dist/es/infrastructure/cache/LRUCache.js.map +1 -0
  291. package/dist/es/infrastructure/cache/PersistentCache.d.ts +58 -0
  292. package/dist/es/infrastructure/cache/PersistentCache.d.ts.map +1 -0
  293. package/dist/es/infrastructure/cache/PersistentCache.js +156 -0
  294. package/dist/es/infrastructure/cache/PersistentCache.js.map +1 -0
  295. package/dist/es/infrastructure/cache/cacheConfig.d.ts +51 -0
  296. package/dist/es/infrastructure/cache/cacheConfig.d.ts.map +1 -0
  297. package/dist/es/infrastructure/cache/cacheConfig.js +66 -0
  298. package/dist/es/infrastructure/cache/cacheConfig.js.map +1 -0
  299. package/dist/es/infrastructure/http/FetchHttpClient.d.ts +41 -0
  300. package/dist/es/infrastructure/http/FetchHttpClient.d.ts.map +1 -0
  301. package/dist/es/infrastructure/http/FetchHttpClient.js +71 -0
  302. package/dist/es/infrastructure/http/FetchHttpClient.js.map +1 -0
  303. package/dist/es/infrastructure/logging/CountlyLogger.d.ts +47 -0
  304. package/dist/es/infrastructure/logging/CountlyLogger.d.ts.map +1 -0
  305. package/dist/es/infrastructure/logging/CountlyLogger.js +74 -0
  306. package/dist/es/infrastructure/logging/CountlyLogger.js.map +1 -0
  307. package/dist/es/interfaces/cache.d.ts +5 -0
  308. package/dist/es/interfaces/cache.d.ts.map +1 -0
  309. package/dist/es/interfaces/cache.js +2 -0
  310. package/dist/es/interfaces/cache.js.map +1 -0
  311. package/dist/es/interfaces/healthResponse.d.ts +17 -0
  312. package/dist/es/interfaces/healthResponse.d.ts.map +1 -0
  313. package/dist/es/interfaces/healthResponse.js +2 -0
  314. package/dist/es/interfaces/healthResponse.js.map +1 -0
  315. package/dist/es/interfaces/institutionResponse.d.ts +12 -0
  316. package/dist/es/interfaces/institutionResponse.d.ts.map +1 -0
  317. package/dist/es/interfaces/institutionResponse.js +2 -0
  318. package/dist/es/interfaces/institutionResponse.js.map +1 -0
  319. package/dist/es/interfaces/metadata.d.ts +7 -0
  320. package/dist/es/interfaces/metadata.d.ts.map +1 -0
  321. package/dist/es/interfaces/metadata.js +2 -0
  322. package/dist/es/interfaces/metadata.js.map +1 -0
  323. package/dist/es/interfaces/placeResponse.d.ts +50 -0
  324. package/dist/es/interfaces/placeResponse.d.ts.map +1 -0
  325. package/dist/es/interfaces/placeResponse.js +2 -0
  326. package/dist/es/interfaces/placeResponse.js.map +1 -0
  327. package/dist/es/interfaces/routeCacheResponse.d.ts +13 -0
  328. package/dist/es/interfaces/routeCacheResponse.d.ts.map +1 -0
  329. package/dist/es/interfaces/routeCacheResponse.js +2 -0
  330. package/dist/es/interfaces/routeCacheResponse.js.map +1 -0
  331. package/dist/es/interfaces/routeResponse.d.ts +42 -0
  332. package/dist/es/interfaces/routeResponse.d.ts.map +1 -0
  333. package/dist/es/interfaces/routeResponse.js +2 -0
  334. package/dist/es/interfaces/routeResponse.js.map +1 -0
  335. package/dist/es/interfaces/styleResponse.d.ts +5 -0
  336. package/dist/es/interfaces/styleResponse.d.ts.map +1 -0
  337. package/dist/es/interfaces/styleResponse.js +2 -0
  338. package/dist/es/interfaces/styleResponse.js.map +1 -0
  339. package/dist/es/logger/logger.d.ts +14 -0
  340. package/dist/es/logger/logger.d.ts.map +1 -0
  341. package/dist/es/logger/logger.js +84 -0
  342. package/dist/es/logger/logger.js.map +1 -0
  343. package/dist/es/logger/rollbar.d.ts +4 -0
  344. package/dist/es/logger/rollbar.d.ts.map +1 -0
  345. package/dist/es/logger/rollbar.js +20 -0
  346. package/dist/es/logger/rollbar.js.map +1 -0
  347. package/dist/es/map/map.d.ts +598 -0
  348. package/dist/es/map/map.d.ts.map +1 -0
  349. package/dist/es/map/map.js +1430 -0
  350. package/dist/es/map/map.js.map +1 -0
  351. package/dist/es/repository/repository.d.ts +65 -0
  352. package/dist/es/repository/repository.d.ts.map +1 -0
  353. package/dist/es/repository/repository.js +570 -0
  354. package/dist/es/repository/repository.js.map +1 -0
  355. package/dist/es/repository/requester.d.ts +169 -0
  356. package/dist/es/repository/requester.d.ts.map +1 -0
  357. package/dist/es/repository/requester.js +586 -0
  358. package/dist/es/repository/requester.js.map +1 -0
  359. package/dist/es/sdk.d.ts +279 -0
  360. package/dist/es/sdk.d.ts.map +1 -0
  361. package/dist/es/sdk.js +346 -0
  362. package/dist/es/sdk.js.map +1 -0
  363. package/dist/es/utils/error.d.ts +8 -0
  364. package/dist/es/utils/error.d.ts.map +1 -0
  365. package/dist/es/utils/error.js +16 -0
  366. package/dist/es/utils/error.js.map +1 -0
  367. package/dist/es/utils/images.d.ts +8 -0
  368. package/dist/es/utils/images.d.ts.map +1 -0
  369. package/dist/es/utils/images.js +22 -0
  370. package/dist/es/utils/images.js.map +1 -0
  371. package/dist/es/utils/nav-functions.d.ts +85 -0
  372. package/dist/es/utils/nav-functions.d.ts.map +1 -0
  373. package/dist/es/utils/nav-functions.js +143 -0
  374. package/dist/es/utils/nav-functions.js.map +1 -0
  375. package/dist/es/utils/opening-hours-helper.d.ts +395 -0
  376. package/dist/es/utils/opening-hours-helper.d.ts.map +1 -0
  377. package/dist/es/utils/opening-hours-helper.js +906 -0
  378. package/dist/es/utils/opening-hours-helper.js.map +1 -0
  379. package/dist/es/utils/route-utils.d.ts +28 -0
  380. package/dist/es/utils/route-utils.d.ts.map +1 -0
  381. package/dist/es/utils/route-utils.js +54 -0
  382. package/dist/es/utils/route-utils.js.map +1 -0
  383. package/dist/es/utils/update-css.d.ts +12 -0
  384. package/dist/es/utils/update-css.d.ts.map +1 -0
  385. package/dist/es/utils/update-css.js +73 -0
  386. package/dist/es/utils/update-css.js.map +1 -0
  387. package/dist/es/utils/utils.d.ts +39 -0
  388. package/dist/es/utils/utils.d.ts.map +1 -0
  389. package/dist/es/utils/utils.js +97 -0
  390. package/dist/es/utils/utils.js.map +1 -0
  391. package/dist/umd/index.js +16874 -0
  392. package/dist/umd/index.js.map +1 -0
  393. package/dist/umd/styles.css +107 -0
  394. package/dist/umd/styles.css.map +1 -0
  395. package/dist/umd/styles.js +37 -0
  396. package/dist/umd/styles.js.map +1 -0
  397. package/package.json +198 -0
@@ -0,0 +1,598 @@
1
+ import { Map, type LayerSpecification } from "maplibre-gl";
2
+ import { type AnimationConfig, type AnimationDrawingConfig } from "../domain/models/animation";
3
+ import { type BoundsOptions, type FitOptions, type FloorUpdateOptions, type ZoomOptions } from "../domain/models/fitOptions";
4
+ import { type InnerFloor } from "../domain/models/innerFloors";
5
+ import { type LatLng } from "../domain/models/latLng";
6
+ import { Loggeable } from "../domain/models/loggeable";
7
+ import { type CameraAnimation, type MapCamera } from "../domain/models/mapCamera";
8
+ import { type MapConfig } from "../domain/models/mapConfig";
9
+ import { type MarkerConfig } from "../domain/models/marker";
10
+ import { type MVXPlace } from "../domain/models/place";
11
+ import { type PopOverConfig } from "../domain/models/popover";
12
+ import { MVXRoute } from "../domain/models/route";
13
+ import { type DrawRouteConfiguration, type GetRouteConfiguration } from "../domain/models/routeConfiguration";
14
+ import { type RouteStyle } from "../domain/models/routeStyle";
15
+ /**
16
+ * @group Map
17
+ */
18
+ export interface MapVXMap {
19
+ /**
20
+ * Destroy the current map
21
+ */
22
+ destroyMap(): void;
23
+ /**
24
+ * Adding a marker to the map and to the list of current marker references.
25
+ * @param marker specifications for marker creation.
26
+ * @returns returns the added marker id.
27
+ */
28
+ addMarker(marker: MarkerConfig): string;
29
+ /**
30
+ * update a marker to the map and to the list of current marker references.
31
+ * @param marker specifications for marker creation.
32
+ * @returns returns the added marker id.
33
+ */
34
+ updateMarker(marker: MarkerConfig): string;
35
+ /**
36
+ * Update the position of a marker on the map.
37
+ *
38
+ * @param markerId The id of the marker.
39
+ * @param newPosition The new position of the marker.
40
+ */
41
+ updateMarkerPosition(markerId: string, newPosition: LatLng): void;
42
+ /**
43
+ * Removes from the current map the marker that corresponds to the id provided
44
+ * @param markerId specifications for marker creation.
45
+ */
46
+ removeMarker(markerId: string): void;
47
+ /**
48
+ * Removes all markers from the map.
49
+ * This function will clear all markers currently displayed on the map.
50
+ */
51
+ removeAllMarkers(): void;
52
+ /**
53
+ * Shows the marker with the specified ID.
54
+ * This function will make the marker visible on the map.
55
+ *
56
+ * @param markerId - The ID of the marker to show.
57
+ */
58
+ showMarker(markerId: string): void;
59
+ /**
60
+ * Hides the marker with the specified ID.
61
+ * This function will make the marker invisible on the map.
62
+ *
63
+ * @param markerId - The ID of the marker to hide.
64
+ */
65
+ hideMarker(markerId: string): void;
66
+ /**
67
+ * Update the camera position on the map
68
+ * @param newCamera Options for camera update.
69
+ * @param callback Function to execute after the camera updates
70
+ */
71
+ updateCamera(newCamera: MapCamera & CameraAnimation, callback?: () => void): void;
72
+ /**
73
+ * Adjusts the lower zoom limit
74
+ * @param zoomLvl The minimum zoom level
75
+ * @param options Optional settings including onComplete callback
76
+ *
77
+ * @example
78
+ * ```typescript
79
+ * map.setMinZoom(5, {
80
+ * onComplete: () => console.log('Min zoom set')
81
+ * });
82
+ * ```
83
+ */
84
+ setMinZoom(zoomLvl: number, options?: ZoomOptions): void;
85
+ /**
86
+ * Adjusts the upper zoom limit
87
+ * @param zoomLvl The maximum zoom level
88
+ * @param options Optional settings including onComplete callback
89
+ *
90
+ * @example
91
+ * ```typescript
92
+ * map.setMaxZoom(18, {
93
+ * onComplete: () => console.log('Max zoom set')
94
+ * });
95
+ * ```
96
+ */
97
+ setMaxZoom(zoomLvl: number, options?: ZoomOptions): void;
98
+ /**
99
+ * Limits the movement of the map to a bounding box calculated with the coordinate array
100
+ * If the coordinates are less than 2, then the function does nothing.
101
+ * @param coordinates List of LatLng coordinates in which the map will be limited, to these coordinates is added one kilometer of padding.
102
+ * @param options Optional settings including onComplete callback
103
+ *
104
+ * @example
105
+ * ```typescript
106
+ * map.setMaxBounds(coordinates, {
107
+ * onComplete: () => console.log('Bounds set')
108
+ * });
109
+ * ```
110
+ */
111
+ setMaxBounds(coordinates: LatLng[], options?: BoundsOptions): void;
112
+ /**
113
+ * Change the camera of the map to contain the visible area within an specific list of LatLng.
114
+ * If coordinates is empty, it doesn't do anything. If it's only one coordinate, the map center will be at that point.
115
+ *
116
+ * The fit operation preserves the current bearing and pitch unless explicitly overridden in options.
117
+ *
118
+ * @param coordinates List of LatLng coordinates in where the map will fit
119
+ * @param options Support for various options for the fit, including:
120
+ * - `bearing`: Camera bearing (rotation) in degrees. Defaults to current bearing.
121
+ * - `pitch`: Camera pitch (tilt) in degrees. Defaults to current pitch.
122
+ * - `onComplete`: Callback executed when the fit animation completes.
123
+ *
124
+ * @example
125
+ * ```typescript
126
+ * // Fit with callback and custom bearing
127
+ * map.fitCoordinates(coordinates, {
128
+ * bearing: 45,
129
+ * pitch: 30,
130
+ * duration: 1000,
131
+ * onComplete: () => console.log('Fit completed')
132
+ * });
133
+ * ```
134
+ */
135
+ fitCoordinates(coordinates: LatLng[], options?: FitOptions): void;
136
+ /**
137
+ * Adjusts the map view to show only the steps within a specific place/building.
138
+ * This method filters route steps that belong to the specified place (either starting or ending inside it)
139
+ * and fits the map bounds to display those steps. This is particularly useful for indoor navigation
140
+ * where routes may cross multiple buildings or floors, allowing the map to focus on the current location.
141
+ *
142
+ * @example
143
+ * ```typescript
144
+ * const route = await map.addRoute(config);
145
+ * map.fitRouteByPlace(route, "building-123", {
146
+ * padding: { top: 150, right: 150, bottom: 150, left: 150 }
147
+ * });
148
+ * ```
149
+ *
150
+ * @param route The complete route containing all steps
151
+ * @param placeId The ID of the place/building to filter steps by
152
+ * @param options Optional fit options including padding, maxZoom, etc.
153
+ * If not provided, uses default padding values.
154
+ *
155
+ * @group Routes
156
+ */
157
+ fitRouteByPlace(route: MVXRoute, placeId: string, options?: FitOptions): void;
158
+ /**
159
+ * Returns the map's current bearing. The bearing is the compass direction that is "up"; for example, a bearing
160
+ * of 90° orients the map so that east is up.
161
+ *
162
+ * @returns The map's current bearing.
163
+ */
164
+ getBearing(): number;
165
+ /**
166
+ * Obtain the current zoom level of the map.
167
+ */
168
+ getZoomLevel(): number;
169
+ /**
170
+ * Obtain the id of the current floor.
171
+ * If not set the parent place, return a empty string.
172
+ */
173
+ getCurrentFloor(): string;
174
+ /**
175
+ * Updates the floor shown on the map and the reference to the current floor.
176
+ * @param floorId floor identifier.
177
+ * @param options Optional settings including onComplete callback
178
+ *
179
+ * @example
180
+ * ```typescript
181
+ * map.updateFloor('floor-1', {
182
+ * onComplete: () => console.log('Floor updated')
183
+ * });
184
+ * ```
185
+ */
186
+ updateFloor(floorId: string, options?: FloorUpdateOptions): void;
187
+ /**
188
+ * Update the current parent place and floor displayed on the map.
189
+ * @param parentPlaceId The id of the parent place to show.
190
+ * @param floorId The id of the floor to show.
191
+ * @param options Optional settings including onComplete callback
192
+ *
193
+ * @example
194
+ * ```typescript
195
+ * map.updateParentPlaceAndFloor('parent-1', 'floor-1', {
196
+ * onComplete: () => console.log('Parent place and floor updated')
197
+ * });
198
+ * ```
199
+ */
200
+ updateParentPlaceAndFloor(parentPlaceId: string, floorId?: string, options?: FloorUpdateOptions): void;
201
+ /**
202
+ * Returns the map's containing HTML element.
203
+ *
204
+ * @returns The map's container.
205
+ */
206
+ getContainer(): HTMLElement;
207
+ /**
208
+ * Adds a new route to the map or replaces the old one.
209
+ * @param routeConfig The parameters to get and draw a route.
210
+ * @returns The route added to the map.
211
+ */
212
+ addRoute(config: GetRouteConfiguration, drawConfig?: DrawRouteConfiguration): Promise<MVXRoute>;
213
+ /**
214
+ * Update the visual progress of a route based on an external user position.
215
+ * Splits the route into behind (already traveled) and ahead (remaining) portions
216
+ * at the point on the route closest to the given position.
217
+ *
218
+ * @param routeId The ID of the route to update.
219
+ * @param position The current user position (will be projected onto the route).
220
+ * @param behindStyle Optional style for the behind (traveled) portion. Defaults to gray solid.
221
+ */
222
+ updateRouteProgress(routeId: string, position: LatLng, behindStyle?: RouteStyle): void;
223
+ /**
224
+ * Removes a route from the map.
225
+ * When called without arguments, removes the most recently added route (backward compatible).
226
+ *
227
+ * @remarks
228
+ * Remove the routes added with {@link addRoute} or {@link startAnimateRoute}.
229
+ * @param routeId Optional ID of the specific route to remove.
230
+ */
231
+ removeRoute(routeId?: string): void;
232
+ /**
233
+ * Remove a specific route from the map by its ID.
234
+ * @param routeId The ID of the route to remove.
235
+ */
236
+ removeRouteById(routeId: string): void;
237
+ /**
238
+ * Remove all routes from the map.
239
+ */
240
+ removeAllRoutes(): void;
241
+ /**
242
+ * Get the IDs of all active routes on the map.
243
+ * @returns Array of route IDs.
244
+ */
245
+ getActiveRouteIds(): string[];
246
+ /**
247
+ * Add a new PopOver to the map
248
+ * @deprecated Not yet implemented.
249
+ * @hidden
250
+ * @param {PopOverConfig} popOverConfig, parameters for the specified PopOver
251
+ */
252
+ addPopOver(popOverConfig: PopOverConfig): string;
253
+ /**
254
+ * Removes the PopOver to which the provided id corresponds
255
+ * @deprecated Not yet implemented.
256
+ * @hidden
257
+ * @param {string} id, PopOver identifier
258
+ */
259
+ removePopOver(id: string): void;
260
+ /**
261
+ * Colors specific places on the map based on provided place IDs.
262
+ *
263
+ * It only function with the internal ids from MapVX and not the clients ids.
264
+ *
265
+ * The function sets map filters to highlight given places on the displayed floor.
266
+ * Places previously marked as selected will lose such effect unless their id is provided in the latest call of the function.
267
+ * Therefore, if input array is empty, no place will be marked as selected in the map after function call.
268
+ *
269
+ * You should use the `color `with caution because all future call will have that as the base color.
270
+ *
271
+ * If you only have a client id and need to use this function, you can obtain the corresponding
272
+ * mapvx id from the place data using the SDK function `getPlaceDetail` for example.
273
+ *
274
+ * @param placeIds - An array of strings representing the MapVX IDs of the places that need to be colored on the map.
275
+ * @param color - The color to use for the polygons instead of the current color defined in the style.
276
+ */
277
+ setPlacesAsSelected(placeIds: string[], color?: string): void;
278
+ /**
279
+ * Clear the colored places on the map.
280
+ * This clear the places colored with {@link setPlacesAsSelected}.
281
+ */
282
+ clearColoredPlaces(): void;
283
+ /**
284
+ * Add a border to the specific places on the map.
285
+ *
286
+ * It only function with the internal ids from MapVX and not the clients ids.
287
+ *
288
+ * If you only have a client id and need to use this function, you can obtain the corresponding
289
+ * mapvx id from the place data using the SDK function `getPlaceDetail` for example.
290
+ *
291
+ * The `color` and `width` optional arguments only function when both are sent.
292
+ * You should use them with caution, because all future call will have that as the base style.
293
+ *
294
+ * @param placeIds An array of strings representing the MapVX IDs of the places that need to have a border on the map.
295
+ * @param color The color to use for the border instead of the current color defined in the style.
296
+ * @param width The width for the borders instead of the current color defined in the style.
297
+ */
298
+ addBorderToPlaces(placeIds: string[], color?: string, width?: number): void;
299
+ /**
300
+ * Clear the borders added with {@link addBorderToPlaces}.
301
+ */
302
+ clearBorderedPlaces(): void;
303
+ /**
304
+ * Function to activate the listening to the clicks of places on the map
305
+ * @param callback The function that receive the id of the clicked place.
306
+ */
307
+ startClickListener(callback: (arg: string) => void): void;
308
+ /**
309
+ * Function to deactivate the listening to the clicks of places on the map
310
+ */
311
+ stopClickListener(): void;
312
+ /**
313
+ * Start of the route animation on the map
314
+ * @param routeConfig Parameters to get a route or the route object.
315
+ * @param drawConfig The configuration of how to draw the route on the map.
316
+ * @param animationConfig Parameters for the specified animation.
317
+ * @returns The route that will be animated.
318
+ */
319
+ startAnimateRoute(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
320
+ /**
321
+ * Start of the route animation on the map.
322
+ * Use a new endpoint for the route data.
323
+ * @param routeConfig Parameters to get a route or the route object.
324
+ * @param drawConfig The configuration of how to draw the route on the map.
325
+ * @param animationConfig Parameters for the specified animation.
326
+ * @returns The route that will be animated.
327
+ */
328
+ startAnimateRouteV2(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
329
+ /**
330
+ * Pause of the route animation on the map.
331
+ * @param routeId Optional ID of the specific route to pause. If not provided, pauses the last added route.
332
+ *
333
+ * @throws A error if not exist on the map a route added by {@link startAnimateRoute}.
334
+ */
335
+ pauseAnimateRoute(routeId?: string): void;
336
+ /**
337
+ * Resume of the route animation on the map.
338
+ * @param routeId Optional ID of the specific route to resume. If not provided, resumes the last added route.
339
+ *
340
+ * @throws A error if not exist on the map a route added by {@link startAnimateRoute}.
341
+ */
342
+ resumeAnimateRoute(routeId?: string): void;
343
+ /**
344
+ * Restart the animation of the route.
345
+ * @param routeId Optional ID of the specific route to restart. If not provided, restarts the last added route.
346
+ *
347
+ * @throws A error if not exist on the map a route added by {@link startAnimateRoute}.
348
+ */
349
+ restartAnimateRoute(routeId?: string): void;
350
+ /**
351
+ * Complete stop of the route animation on the map
352
+ * @deprecated Not yet implemented.
353
+ */
354
+ stopAnimateRoute(): void;
355
+ /**
356
+ * Add a step animation to the map.
357
+ * @param routeConfig Parameters to get a route or the route object
358
+ * @param drawConfig
359
+ * @param animationConfig
360
+ * @returns
361
+ */
362
+ addStepAnimation(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
363
+ /**
364
+ * Add a step animation to the map.
365
+ * Use a new endpoint for the route data.
366
+ * @param routeConfig Parameters to get a route or the route object
367
+ * @param drawConfig
368
+ * @param animationConfig
369
+ * @returns
370
+ */
371
+ addStepAnimationV2(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
372
+ /**
373
+ * Animate the current step and leave the map ready for the next step animation.
374
+ * @param routeId Optional ID of the specific route. If not provided, uses the last added route.
375
+ */
376
+ nextStepAnimation(routeId?: string): void;
377
+ /**
378
+ * Leave the map ready to animate the previous step.
379
+ * @param routeId Optional ID of the specific route. If not provided, uses the last added route.
380
+ */
381
+ previousStepAnimation(routeId?: string): void;
382
+ /**
383
+ * Center the map on the current marker position for animation based on steps
384
+ * @param routeId Optional ID of the specific route. If not provided, uses the last added route.
385
+ */
386
+ centerOnCurrentStepAnimation(routeId?: string): void;
387
+ /**
388
+ * Geolocate the user and track their current location on the current map
389
+ * @param enableHighAccuracy if `true`, it'll get try to receive the best possible location results
390
+ * @param geoLocation the geolocation object to use for tracking the user's location. If not provided, it'll use the default navigator.geolocation object.
391
+ * @param icon optional custom HTML element to use as the user location marker icon
392
+ */
393
+ addUserLocationTracking(enableHighAccuracy?: boolean, geoLocation?: Geolocation, icon?: HTMLElement): void;
394
+ /**
395
+ * Remove user location tracking from the map
396
+ */
397
+ removeUserLocationTracking(): void;
398
+ /**
399
+ * function to change the lang of requests
400
+ * @param lang request response language
401
+ */
402
+ setLang(lang: string): void;
403
+ /**
404
+ * Sets selected place as new parent place for loaded map and, if desired, loads new style
405
+ * @param place The new parent place
406
+ * @param updateStyle Defines whether the new parent place's style must be set
407
+ * @param onStyleReady A callback function to be executed when the style loading is completed
408
+ */
409
+ setParentPlace(place: MVXPlace, updateStyle: boolean, onStyleReady?: () => void): void;
410
+ /**
411
+ * Removes parent place property for current map
412
+ */
413
+ removeParentPlace(): void;
414
+ /**
415
+ * Check if given position is inside map bounds or not
416
+ * @param point position to check
417
+ * @returns True if inside bounds or if the map doesn't have max bounds set, False otherwise
418
+ */
419
+ isInsideBounds(point: LatLng): boolean;
420
+ /**
421
+ * Clears the tile cache, forcing tiles to be re-fetched on next request.
422
+ * This clears both the in-memory MapLibre cache and triggers a repaint.
423
+ *
424
+ * @remarks
425
+ * Useful when:
426
+ * - Style has been updated on the server
427
+ * - You want to free up memory
428
+ * - Tiles appear corrupted or outdated
429
+ */
430
+ clearTileCache(): void;
431
+ }
432
+ /**
433
+ * Class to interact with the map.
434
+ * @category Map
435
+ * @hidden
436
+ */
437
+ export declare class InternalMapVXMap extends Loggeable implements MapVXMap {
438
+ private readonly token;
439
+ private readonly repository;
440
+ private parentPlaceId?;
441
+ private parentPlace?;
442
+ private potentialParentPlaces;
443
+ private innerFloors;
444
+ private subPlaces;
445
+ private currentFloor;
446
+ private baseFilters;
447
+ map: Map;
448
+ private markers;
449
+ private userLocationMarker;
450
+ private watchPositionID;
451
+ private readonly routeController;
452
+ private clickCallback?;
453
+ private onFloorChange?;
454
+ private onParentPlaceChange?;
455
+ private enableHover;
456
+ private hoveredId;
457
+ private failedTiles;
458
+ private retryTimer;
459
+ private geoLocation;
460
+ private boundOnSourceData?;
461
+ private boundOnSourceDataAbort?;
462
+ private boundOnWebGLContextLost?;
463
+ private boundOnWebGLContextRestored?;
464
+ private readonly tileCacheConfig;
465
+ /**
466
+ * Creates a new map instance with the parameters specified in mapConfig and assigns it to the provided HTML container.
467
+ * @param mapConfig Configuration parameters for the map.
468
+ * @param container Container where the assignment of the created map is required.
469
+ * @param parentPlace Parent place required for map floor mapping, along with the display of subplaces.
470
+ * @param token The token provided for the creation and fetching of map information.
471
+ * @returns A new instance of MapVXMap.
472
+ */
473
+ constructor(mapConfig: MapConfig, container: HTMLElement, token: string);
474
+ private setRTLSupport;
475
+ /**
476
+ * Transform style sources to use cached-tile:// protocol for tile URLs.
477
+ * This enables the service worker to intercept and cache tile requests.
478
+ * @param style The original style specification
479
+ * @returns A new style with transformed tile URLs
480
+ */
481
+ private transformStyleForCaching;
482
+ private initialPlaceDetailSetUp;
483
+ private loadOtherPotentialParentPlaces;
484
+ private subPlacesLoad;
485
+ private initialMapStyleSetUp;
486
+ private onMapStyleLoaded;
487
+ private setBaseFilters;
488
+ private setLayersForLanguage;
489
+ /**
490
+ * Add values to identify the client.
491
+ * @param segmentation The pair values to use as segmentation.
492
+ * @returns The segmentation with the added values.
493
+ */
494
+ protected prepareSegmentation(segmentation: Record<string, string>): Record<string, string>;
495
+ destroyMap(): void;
496
+ clearTileCache(): void;
497
+ getCurrentFloor(): string;
498
+ /**
499
+ * Performs changes when parent place is updated
500
+ * @param place new parent place
501
+ * @param updateStyle defines if new parent place style must be set
502
+ */
503
+ private changeParentPlaceTo;
504
+ /**
505
+ * Update the parent place and the current floor.
506
+ * Does not update layers, markers, etc.
507
+ * @param parentPlaceId
508
+ * @param floorId
509
+ * @throws A error if the parent place is not one of the allowed places to show.
510
+ */
511
+ private updatePlaceAndFloor;
512
+ updateParentPlaceAndFloor(parentPlaceId: string, floorId?: string, options?: FloorUpdateOptions): void;
513
+ setLang(lang: string): void;
514
+ setParentPlace(place: MVXPlace, updateStyle: boolean, onStyleReady?: () => void): void;
515
+ /**
516
+ * Removes current parent place and updates style to default
517
+ */
518
+ removeParentPlace(): void;
519
+ /**
520
+ * Applies filters and changes to layers according to given style.
521
+ * Expected to be called every time a new style is loaded
522
+ * @param newStyle
523
+ */
524
+ private whenStyleUpdates;
525
+ addMarker(marker: MarkerConfig): string;
526
+ updateMarker(markerConfig: MarkerConfig): string;
527
+ updateMarkerPosition(markerId: string, newPosition: LatLng): void;
528
+ showMarker(markerId: string): void;
529
+ hideMarker(markerId: string): void;
530
+ removeMarker(markerId: string): void;
531
+ removeAllMarkers(): void;
532
+ /**
533
+ * Use it to change the current layer
534
+ * @param floorKey floor id
535
+ */
536
+ private filterByFloorKey;
537
+ getContainer(): HTMLElement;
538
+ private updateMarkersTo;
539
+ private updateFiltersTo;
540
+ applyLayerFilters(layer: LayerSpecification, floorId: string | null | undefined): void;
541
+ /**
542
+ * Floors of the parent place
543
+ * @returns Inner floors of the parent place
544
+ */
545
+ getInnerFloors(): InnerFloor[];
546
+ updateCamera(newCamera: MapCamera & CameraAnimation, callback?: () => void): void;
547
+ setMaxZoom(zoomLvl: number, options?: ZoomOptions): void;
548
+ setMinZoom(zoomLvl: number, options?: ZoomOptions): void;
549
+ isInsideBounds(point: LatLng): boolean;
550
+ setMaxBounds(coordinates: LatLng[], options?: BoundsOptions): void;
551
+ fitCoordinates(coordinates: LatLng[], options?: FitOptions): void;
552
+ fitRouteByPlace(route: MVXRoute, placeId: string, options?: FitOptions): void;
553
+ getZoomLevel(): number;
554
+ updateFloor(floorId: string, options?: FloorUpdateOptions): void;
555
+ updatePlaceAndFloorForRouting(placeId: string, floorId: string): void;
556
+ addRoute(config: GetRouteConfiguration, drawConfig?: DrawRouteConfiguration): Promise<MVXRoute>;
557
+ updateRouteProgress(routeId: string, position: LatLng, behindStyle?: RouteStyle): void;
558
+ removeRoute(routeId?: string): void;
559
+ removeRouteById(routeId: string): void;
560
+ removeAllRoutes(): void;
561
+ getActiveRouteIds(): string[];
562
+ addPopOver(popOverConfig: PopOverConfig): string;
563
+ removePopOver(id: string): void;
564
+ startClickListener(callback: (arg: string) => void): void;
565
+ stopClickListener(): void;
566
+ private defaultClickListener;
567
+ private onHover;
568
+ setPlacesAsSelected(placeIds: string[], color?: string): void;
569
+ private is3DStyle;
570
+ private createColoredPlacesLayer;
571
+ private createBasicFilters;
572
+ private hasLayer;
573
+ clearColoredPlaces(): void;
574
+ startAnimateRoute(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
575
+ startAnimateRouteV2(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
576
+ pauseAnimateRoute(routeId?: string): void;
577
+ resumeAnimateRoute(routeId?: string): void;
578
+ restartAnimateRoute(routeId?: string): void;
579
+ stopAnimateRoute(): void;
580
+ addStepAnimation(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
581
+ addStepAnimationV2(routeConfig: GetRouteConfiguration | MVXRoute, drawConfig?: AnimationDrawingConfig, animationConfig?: AnimationConfig): Promise<MVXRoute>;
582
+ nextStepAnimation(routeId?: string): void;
583
+ previousStepAnimation(routeId?: string): void;
584
+ centerOnCurrentStepAnimation(routeId?: string): void;
585
+ addUserLocationTracking(enableHighAccuracy?: boolean, geoLocation?: Geolocation, icon?: HTMLElement): void;
586
+ removeUserLocationTracking(): void;
587
+ getBearing(): number;
588
+ addBorderToPlaces(placeIds: string[], color?: string, width?: number): void;
589
+ private createBorderedPlacesLayer;
590
+ clearBorderedPlaces(): void;
591
+ private onWebGLContextLost;
592
+ private onWebGLContextRestored;
593
+ private onSourceData;
594
+ private onSourceDataAbort;
595
+ private subscribeToFailedTiles;
596
+ private unsubscribeFromFailedTiles;
597
+ }
598
+ //# sourceMappingURL=map.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../../../src/map/map.ts"],"names":[],"mappings":"AAAA,OAAmB,EAEjB,GAAG,EAMH,KAAK,kBAAkB,EAKxB,MAAM,aAAa,CAAA;AA6GpB,OAAO,EAGL,KAAK,eAAe,EACpB,KAAK,sBAAsB,EAC5B,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,UAAU,EACf,KAAK,kBAAkB,EAGvB,KAAK,WAAW,EACjB,MAAM,6BAA6B,CAAA;AACpC,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,8BAA8B,CAAA;AAC9D,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,yBAAyB,CAAA;AACrD,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAA;AACtD,OAAO,EAAE,KAAK,eAAe,EAAE,KAAK,SAAS,EAAE,MAAM,4BAA4B,CAAA;AACjF,OAAO,EAEL,KAAK,SAAS,EAEf,MAAM,4BAA4B,CAAA;AACnC,OAAO,EAAmB,KAAK,YAAY,EAAE,MAAM,yBAAyB,CAAA;AAC5E,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACtD,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,0BAA0B,CAAA;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AACjD,OAAO,EAGL,KAAK,sBAAsB,EAC3B,KAAK,qBAAqB,EAC3B,MAAM,qCAAqC,CAAA;AAC5C,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,6BAA6B,CAAA;AAK7D;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,UAAU,IAAI,IAAI,CAAA;IAElB;;;;OAIG;IACH,SAAS,CAAC,MAAM,EAAE,YAAY,GAAG,MAAM,CAAA;IAEvC;;;;OAIG;IACH,YAAY,CAAC,MAAM,EAAE,YAAY,GAAG,MAAM,CAAA;IAE1C;;;;;OAKG;IACH,oBAAoB,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAEjE;;;OAGG;IACH,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;IACpC;;;OAGG;IACH,gBAAgB,IAAI,IAAI,CAAA;IAExB;;;;;OAKG;IACH,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;IAElC;;;;;OAKG;IACH,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;IAElC;;;;OAIG;IACH,YAAY,CAAC,SAAS,EAAE,SAAS,GAAG,eAAe,EAAE,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI,CAAA;IAEjF;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,GAAG,IAAI,CAAA;IAExD;;;;;;;;;;;OAWG;IACH,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,GAAG,IAAI,CAAA;IAExD;;;;;;;;;;;;OAYG;IACH,YAAY,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,IAAI,CAAA;IAElE;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACH,cAAc,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,IAAI,CAAA;IAEjE;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,eAAe,CAAC,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,IAAI,CAAA;IAE7E;;;;;OAKG;IACH,UAAU,IAAI,MAAM,CAAA;IAEpB;;OAEG;IACH,YAAY,IAAI,MAAM,CAAA;IAEtB;;;OAGG;IACH,eAAe,IAAI,MAAM,CAAA;IAEzB;;;;;;;;;;;OAWG;IACH,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,kBAAkB,GAAG,IAAI,CAAA;IAEhE;;;;;;;;;;;;OAYG;IACH,yBAAyB,CACvB,aAAa,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE,MAAM,EAChB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,IAAI,CAAA;IAEP;;;;OAIG;IACH,YAAY,IAAI,WAAW,CAAA;IAC3B;;;;OAIG;IACH,QAAQ,CAAC,MAAM,EAAE,qBAAqB,EAAE,UAAU,CAAC,EAAE,sBAAsB,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAA;IAE/F;;;;;;;;OAQG;IACH,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,UAAU,GAAG,IAAI,CAAA;IAEtF;;;;;;;OAOG;IACH,WAAW,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAEnC;;;OAGG;IACH,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;IAEtC;;OAEG;IACH,eAAe,IAAI,IAAI,CAAA;IAEvB;;;OAGG;IACH,iBAAiB,IAAI,MAAM,EAAE,CAAA;IAE7B;;;;;OAKG;IACH,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM,CAAA;IAEhD;;;;;OAKG;IACH,aAAa,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAA;IAE/B;;;;;;;;;;;;;;;;OAgBG;IACH,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAE7D;;;OAGG;IACH,kBAAkB,IAAI,IAAI,CAAA;IAE1B;;;;;;;;;;;;;;OAcG;IACH,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAE3E;;OAEG;IACH,mBAAmB,IAAI,IAAI,CAAA;IAE3B;;;OAGG;IACH,kBAAkB,CAAC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,GAAG,IAAI,CAAA;IACzD;;OAEG;IACH,iBAAiB,IAAI,IAAI,CAAA;IAEzB;;;;;;OAMG;IACH,iBAAiB,CACf,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,CAAC,EAAE,sBAAsB,EACnC,eAAe,CAAC,EAAE,eAAe,GAChC,OAAO,CAAC,QAAQ,CAAC,CAAA;IAEpB;;;;;;;OAOG;IACH,mBAAmB,CACjB,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,CAAC,EAAE,sBAAsB,EACnC,eAAe,CAAC,EAAE,eAAe,GAChC,OAAO,CAAC,QAAQ,CAAC,CAAA;IAEpB;;;;;OAKG;IACH,iBAAiB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAEzC;;;;;OAKG;IACH,kBAAkB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAE1C;;;;;OAKG;IACH,mBAAmB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAE3C;;;OAGG;IACH,gBAAgB,IAAI,IAAI,CAAA;IAExB;;;;;;OAMG;IACH,gBAAgB,CACd,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,CAAC,EAAE,sBAAsB,EACnC,eAAe,CAAC,EAAE,eAAe,GAChC,OAAO,CAAC,QAAQ,CAAC,CAAA;IAEpB;;;;;;;OAOG;IACH,kBAAkB,CAChB,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,CAAC,EAAE,sBAAsB,EACnC,eAAe,CAAC,EAAE,eAAe,GAChC,OAAO,CAAC,QAAQ,CAAC,CAAA;IAEpB;;;OAGG;IACH,iBAAiB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAEzC;;;OAGG;IACH,qBAAqB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAE7C;;;OAGG;IACH,4BAA4B,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAEpD;;;;;OAKG;IACH,uBAAuB,CACrB,kBAAkB,CAAC,EAAE,OAAO,EAC5B,WAAW,CAAC,EAAE,WAAW,EACzB,IAAI,CAAC,EAAE,WAAW,GACjB,IAAI,CAAA;IAEP;;OAEG;IACH,0BAA0B,IAAI,IAAI,CAAA;IAElC;;;OAGG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAA;IAE3B;;;;;OAKG;IACH,cAAc,CAAC,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,OAAO,EAAE,YAAY,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI,CAAA;IAEtF;;OAEG;IACH,iBAAiB,IAAI,IAAI,CAAA;IAEzB;;;;OAIG;IACH,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAA;IAEtC;;;;;;;;;OASG;IACH,cAAc,IAAI,IAAI,CAAA;CACvB;AAED;;;;GAIG;AACH,qBAAa,gBAAiB,SAAQ,SAAU,YAAW,QAAQ;IACjE,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAQ;IAC9B,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAY;IACvC,OAAO,CAAC,aAAa,CAAC,CAAQ;IAC9B,OAAO,CAAC,WAAW,CAAC,CAAU;IAC9B,OAAO,CAAC,qBAAqB,CAAiB;IAC9C,OAAO,CAAC,WAAW,CAAmB;IACtC,OAAO,CAAC,SAAS,CAAiB;IAClC,OAAO,CAAC,YAAY,CAAgC;IACpD,OAAO,CAAC,WAAW,CAAoD;IACvE,GAAG,EAAG,GAAG,CAAA;IACT,OAAO,CAAC,OAAO,CAAwB;IACvC,OAAO,CAAC,kBAAkB,CAA6B;IACvD,OAAO,CAAC,eAAe,CAAoB;IAC3C,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAiB;IACjD,OAAO,CAAC,aAAa,CAAC,CAAuB;IAC7C,OAAO,CAAC,aAAa,CAAC,CAA8B;IACpD,OAAO,CAAC,mBAAmB,CAAC,CAAoC;IAChE,OAAO,CAAC,WAAW,CAAiB;IACpC,OAAO,CAAC,SAAS,CAAuB;IACxC,OAAO,CAAC,WAAW,CAAiB;IACpC,OAAO,CAAC,UAAU,CAA4B;IAC9C,OAAO,CAAC,WAAW,CAAqC;IACxD,OAAO,CAAC,iBAAiB,CAAC,CAAiC;IAC3D,OAAO,CAAC,sBAAsB,CAAC,CAAiC;IAChE,OAAO,CAAC,uBAAuB,CAAC,CAAkB;IAClD,OAAO,CAAC,2BAA2B,CAAC,CAAY;IAChD,OAAO,CAAC,QAAQ,CAAC,eAAe,CAA8B;IAE9D;;;;;;;OAOG;gBACS,SAAS,EAAE,SAAS,EAAE,SAAS,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM;IAsCvE,OAAO,CAAC,aAAa;IASrB;;;;;OAKG;IACH,OAAO,CAAC,wBAAwB;IA0BhC,OAAO,CAAC,uBAAuB;IAoB/B,OAAO,CAAC,8BAA8B;IAQtC,OAAO,CAAC,aAAa;IASrB,OAAO,CAAC,oBAAoB;IAkB5B,OAAO,CAAC,gBAAgB;IAmExB,OAAO,CAAC,cAAc;IA6BtB,OAAO,CAAC,oBAAoB;IAmE5B;;;;OAIG;IACH,SAAS,CAAC,mBAAmB,CAAC,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAQ3F,UAAU,IAAI,IAAI;IAKlB,cAAc,IAAI,IAAI;IAkBtB,eAAe,IAAI,MAAM;IAIzB;;;;OAIG;IAEH,OAAO,CAAC,mBAAmB;IA8B3B;;;;;;OAMG;IACH,OAAO,CAAC,mBAAmB;IAY3B,yBAAyB,CACvB,aAAa,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE,MAAM,EAChB,OAAO,CAAC,EAAE,kBAAkB,GAC3B,IAAI;IAaP,OAAO,CAAC,IAAI,EAAE,MAAM;IAIpB,cAAc,CAAC,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,OAAO,EAAE,YAAY,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;IAItF;;OAEG;IACH,iBAAiB,IAAI,IAAI;IAIzB;;;;OAIG;IACH,OAAO,CAAC,gBAAgB;IAQxB,SAAS,CAAC,MAAM,EAAE,YAAY,GAAG,MAAM;IA8BvC,YAAY,CAAC,YAAY,EAAE,YAAY,GAAG,MAAM;IAehD,oBAAoB,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,IAAI;IAcjE,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAalC,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAalC,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAcpC,gBAAgB,IAAI,IAAI;IAaxB;;;OAGG;IACH,OAAO,CAAC,gBAAgB;IAYxB,YAAY,IAAI,WAAW;IAI3B,OAAO,CAAC,eAAe;IASvB,OAAO,CAAC,eAAe;IA6BvB,iBAAiB,CAAC,KAAK,EAAE,kBAAkB,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI;IA+CtF;;;OAGG;IACH,cAAc,IAAI,UAAU,EAAE;IAI9B,YAAY,CAAC,SAAS,EAAE,SAAS,GAAG,eAAe,EAAE,QAAQ,CAAC,EAAE,MAAM,IAAI,GAAG,IAAI;IAQjF,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,GAAG,IAAI;IAKxD,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,GAAG,IAAI;IAKxD,cAAc,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAQtC,YAAY,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,IAAI;IAalE,cAAc,CAAC,WAAW,EAAE,MAAM,EAAE,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,IAAI;IA6DjE,eAAe,CAAC,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,UAAU,GAAG,IAAI;IAkB7E,YAAY,IAAI,MAAM;IAItB,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,kBAAkB,GAAG,IAAI;IAWhE,6BAA6B,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI;IAY/D,QAAQ,CACZ,MAAM,EAAE,qBAAqB,EAC7B,UAAU,GAAE,sBAA2B,GACtC,OAAO,CAAC,QAAQ,CAAC;IAcpB,mBAAmB,CACjB,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,MAAM,EAChB,WAAW,GAAE,UAAgD,GAC5D,IAAI;IAWP,WAAW,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI;IASnC,eAAe,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAStC,eAAe,IAAI,IAAI;IASvB,iBAAiB,IAAI,MAAM,EAAE;IAI7B,UAAU,CAAC,aAAa,EAAE,aAAa,GAAG,MAAM;IAiBhD,aAAa,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI;IAI/B,kBAAkB,CAAC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,GAAG,IAAI;IAIzD,iBAAiB,IAAI,IAAI;IAIzB,OAAO,CAAC,oBAAoB;IAqD5B,OAAO,CAAC,OAAO;IA2Bf,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI;IAmC7D,OAAO,CAAC,SAAS;IAKjB,OAAO,CAAC,wBAAwB;IA8BhC,OAAO,CAAC,kBAAkB;IA4B1B,OAAO,CAAC,QAAQ;IAKhB,kBAAkB,IAAI,IAAI;IAQpB,iBAAiB,CACrB,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,GAAE,sBAA2B,EACvC,eAAe,GAAE,eAAoB,GACpC,OAAO,CAAC,QAAQ,CAAC;IAmBd,mBAAmB,CACvB,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,GAAE,sBAA2B,EACvC,eAAe,GAAE,eAAoB,GACpC,OAAO,CAAC,QAAQ,CAAC;IAmBpB,iBAAiB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI;IASzC,kBAAkB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI;IAS1C,mBAAmB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI;IAS3C,gBAAgB,IAAI,IAAI;IAMlB,gBAAgB,CACpB,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,GAAE,sBAA2B,EACvC,eAAe,GAAE,eAAoB,GACpC,OAAO,CAAC,QAAQ,CAAC;IAsBd,kBAAkB,CACtB,WAAW,EAAE,qBAAqB,GAAG,QAAQ,EAC7C,UAAU,GAAE,sBAA2B,EACvC,eAAe,GAAE,eAAoB,GACpC,OAAO,CAAC,QAAQ,CAAC;IAsBpB,iBAAiB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI;IASzC,qBAAqB,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI;IAU7C,4BAA4B,CAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI;IAUpD,uBAAuB,CACrB,kBAAkB,CAAC,EAAE,OAAO,EAC5B,WAAW,CAAC,EAAE,WAAW,EACzB,IAAI,CAAC,EAAE,WAAW,GACjB,IAAI;IAsCP,0BAA0B,IAAI,IAAI;IAalC,UAAU,IAAI,MAAM;IAIpB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,KAAK,CAAC,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI;IA0B3E,OAAO,CAAC,yBAAyB;IAejC,mBAAmB,IAAI,IAAI;IAO3B,OAAO,CAAC,kBAAkB;IAsB1B,OAAO,CAAC,sBAAsB;IAK9B,OAAO,CAAC,YAAY;IAYpB,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,sBAAsB;IAoE9B,OAAO,CAAC,0BAA0B;CAyBnC"}