@rio-cloud/rio-uikit 0.16.2-beta.8 → 0.16.2

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 (270) hide show
  1. package/.DS_Store +0 -0
  2. package/AspectRatioPlaceholder.js +2 -0
  3. package/AspectRatioPlaceholder.ts +5 -0
  4. package/Map.d.ts +2 -1
  5. package/ResponsiveColumnStripe.d.ts +5 -0
  6. package/ResponsiveColumnStripe.js +2 -0
  7. package/RuleConnector.d.ts +2 -1
  8. package/RuleContainer.d.ts +3 -2
  9. package/RulesWrapper.d.ts +2 -1
  10. package/components/activity/Activity.js +6 -4
  11. package/components/animatedNumber/AnimatedNumber.js +6 -4
  12. package/components/applicationHeader/AppMenu.js +6 -3
  13. package/components/applicationHeader/AppMenuDropdown.js +6 -2
  14. package/components/applicationHeader/ApplicationHeader.js +16 -8
  15. package/components/applicationHeader/MobileAppMenu.js +8 -4
  16. package/components/applicationLayout/ApplicationLayout.js +8 -8
  17. package/components/applicationLayout/ApplicationLayoutBody.js +6 -3
  18. package/components/applicationLayout/ApplicationLayoutBodyBanner.js +4 -3
  19. package/components/applicationLayout/ApplicationLayoutBodyBottomBar.js +6 -4
  20. package/components/applicationLayout/ApplicationLayoutBodyNavigation.js +6 -4
  21. package/components/applicationLayout/ApplicationLayoutHeader.js +9 -7
  22. package/components/aspectRatioPlaceholder/AspectRatioPlaceholder.js +25 -0
  23. package/components/assetTree/AssetTree.js +6 -3
  24. package/components/assetTree/TypeCounter.js +6 -4
  25. package/components/clearableInput/ClearableInput.js +2 -1
  26. package/components/datepicker/DatePicker.js +8 -4
  27. package/components/dialog/MediaDialog.js +5 -1
  28. package/components/dialog/SaveDialog.js +5 -2
  29. package/components/fade/Fade.js +5 -0
  30. package/components/filepicker/FilePicker.js +1 -1
  31. package/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  32. package/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  33. package/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  34. package/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  35. package/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  36. package/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  37. package/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  38. package/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  39. package/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  40. package/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  41. package/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  42. package/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  43. package/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  44. package/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  45. package/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  46. package/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  47. package/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  48. package/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  49. package/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  50. package/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  51. package/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  52. package/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  53. package/components/map/components/Map.js +47 -36
  54. package/components/map/components/features/ContextMenu.js +1 -1
  55. package/components/map/components/features/Route.js +1 -10
  56. package/components/map/components/features/basics/Circle.js +11 -6
  57. package/components/map/components/features/basics/MapLayerGroup.js +8 -5
  58. package/components/map/components/features/basics/Polygon.js +6 -5
  59. package/components/map/components/features/basics/Polyline.js +42 -40
  60. package/components/map/components/features/basics/marker/DomMarker.js +9 -3
  61. package/components/map/components/features/basics/marker/Marker.js +101 -121
  62. package/components/map/components/features/basics/marker/TextMarker.js +15 -43
  63. package/components/map/components/features/layers/Layer.js +1 -1
  64. package/components/map/components/features/layers/MarkerLayer.js +7 -4
  65. package/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  66. package/components/map/components/features/layers/TrafficLayer.js +2 -2
  67. package/components/map/components/features/layers/baselayers/DefaultRasterLayer.js +2 -1
  68. package/components/map/components/features/layers/baselayers/useBaseLayer.js +4 -1
  69. package/components/map/components/features/layers/clustering/ClusterLayer.js +25 -9
  70. package/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +18 -3
  71. package/components/map/icons/MapIcon.js +46 -66
  72. package/components/map/utils/hooks.js +3 -3
  73. package/components/mapMarker/ClusterMapMarker.js +16 -20
  74. package/components/mapMarker/SingleMapMarker.js +16 -30
  75. package/components/numberControl/NumberControl.js +13 -7
  76. package/components/numberInput/NumberInput.js +30 -12
  77. package/components/responsiveColumnStripe/ResponsiveColumnStripe.js +255 -0
  78. package/components/rules/RuleContainer.js +4 -0
  79. package/components/rules/RulesWrapper.js +3 -3
  80. package/hooks/useDarkMode.js +3 -2
  81. package/hooks/useMutationObserver.js +13 -4
  82. package/hooks/useScrollPosition.js +6 -7
  83. package/index.d.ts +29 -29
  84. package/index.js +4 -0
  85. package/lib/es/AspectRatioPlaceholder.js +13 -0
  86. package/lib/es/AspectRatioPlaceholder.ts +5 -0
  87. package/lib/es/Map.d.ts +2 -1
  88. package/lib/es/ResponsiveColumnStripe.d.ts +5 -0
  89. package/lib/es/ResponsiveColumnStripe.js +13 -0
  90. package/lib/es/RuleConnector.d.ts +2 -1
  91. package/lib/es/RuleContainer.d.ts +3 -2
  92. package/lib/es/RulesWrapper.d.ts +2 -1
  93. package/lib/es/components/activity/Activity.js +9 -4
  94. package/lib/es/components/animatedNumber/AnimatedNumber.js +5 -3
  95. package/lib/es/components/applicationHeader/AppMenu.js +6 -3
  96. package/lib/es/components/applicationHeader/AppMenuDropdown.js +6 -2
  97. package/lib/es/components/applicationHeader/ApplicationHeader.js +15 -7
  98. package/lib/es/components/applicationHeader/MobileAppMenu.js +8 -4
  99. package/lib/es/components/applicationLayout/ApplicationLayout.js +11 -8
  100. package/lib/es/components/applicationLayout/ApplicationLayoutBody.js +5 -2
  101. package/lib/es/components/applicationLayout/ApplicationLayoutBodyBanner.js +7 -3
  102. package/lib/es/components/applicationLayout/ApplicationLayoutBodyBottomBar.js +9 -4
  103. package/lib/es/components/applicationLayout/ApplicationLayoutBodyNavigation.js +9 -4
  104. package/lib/es/components/applicationLayout/ApplicationLayoutHeader.js +12 -7
  105. package/lib/es/components/aspectRatioPlaceholder/AspectRatioPlaceholder.js +33 -0
  106. package/lib/es/components/assetTree/AssetTree.js +5 -2
  107. package/lib/es/components/assetTree/TypeCounter.js +9 -4
  108. package/lib/es/components/clearableInput/ClearableInput.js +2 -1
  109. package/lib/es/components/datepicker/DatePicker.js +7 -3
  110. package/lib/es/components/dialog/MediaDialog.js +5 -1
  111. package/lib/es/components/dialog/SaveDialog.js +5 -2
  112. package/lib/es/components/fade/Fade.js +5 -0
  113. package/lib/es/components/filepicker/FilePicker.js +1 -1
  114. package/lib/es/components/map/assets/icon_map_settings_bounding_box_active.svg +1 -1
  115. package/lib/es/components/map/assets/icon_map_settings_bounding_box_inactive.svg +1 -1
  116. package/lib/es/components/map/assets/icon_map_settings_construction_active.svg +1 -1
  117. package/lib/es/components/map/assets/icon_map_settings_construction_inactive.svg +1 -1
  118. package/lib/es/components/map/assets/icon_map_settings_layer_active.svg +1 -1
  119. package/lib/es/components/map/assets/icon_map_settings_layer_inactive.svg +1 -1
  120. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_active.svg +1 -1
  121. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_inactive.svg +1 -1
  122. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_active.svg +1 -1
  123. package/lib/es/components/map/assets/icon_map_settings_maptype_flat_truck_inactive.svg +1 -1
  124. package/lib/es/components/map/assets/icon_map_settings_maptype_night_active.svg +1 -12
  125. package/lib/es/components/map/assets/icon_map_settings_maptype_night_inactive.svg +1 -12
  126. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_active.svg +1 -1
  127. package/lib/es/components/map/assets/icon_map_settings_maptype_satelite_inactive.svg +1 -1
  128. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_active.svg +1 -1
  129. package/lib/es/components/map/assets/icon_map_settings_maptype_terrain_inactive.svg +1 -1
  130. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_active.svg +1 -1
  131. package/lib/es/components/map/assets/icon_map_settings_road_restrictions_inactive.svg +1 -1
  132. package/lib/es/components/map/assets/icon_map_settings_system_pois_active.svg +1 -1
  133. package/lib/es/components/map/assets/icon_map_settings_system_pois_inactive.svg +1 -1
  134. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_active.svg +1 -1
  135. package/lib/es/components/map/assets/icon_map_settings_workshop_pois_inactive.svg +1 -1
  136. package/lib/es/components/map/components/Map.js +47 -36
  137. package/lib/es/components/map/components/features/ContextMenu.js +1 -1
  138. package/lib/es/components/map/components/features/Route.js +1 -10
  139. package/lib/es/components/map/components/features/basics/Circle.js +10 -5
  140. package/lib/es/components/map/components/features/basics/MapLayerGroup.js +8 -5
  141. package/lib/es/components/map/components/features/basics/Polygon.js +6 -5
  142. package/lib/es/components/map/components/features/basics/Polyline.js +42 -42
  143. package/lib/es/components/map/components/features/basics/marker/DomMarker.js +8 -3
  144. package/lib/es/components/map/components/features/basics/marker/Marker.js +105 -120
  145. package/lib/es/components/map/components/features/basics/marker/TextMarker.js +15 -42
  146. package/lib/es/components/map/components/features/layers/Layer.js +1 -1
  147. package/lib/es/components/map/components/features/layers/MarkerLayer.js +7 -4
  148. package/lib/es/components/map/components/features/layers/RoadRestrictionLayer.js +1 -2
  149. package/lib/es/components/map/components/features/layers/TrafficLayer.js +2 -2
  150. package/lib/es/components/map/components/features/layers/baselayers/DefaultRasterLayer.js +2 -1
  151. package/lib/es/components/map/components/features/layers/baselayers/useBaseLayer.js +4 -1
  152. package/lib/es/components/map/components/features/layers/clustering/ClusterLayer.js +25 -9
  153. package/lib/es/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +18 -3
  154. package/lib/es/components/map/icons/MapIcon.js +46 -66
  155. package/lib/es/components/map/utils/hooks.js +3 -3
  156. package/lib/es/components/mapMarker/ClusterMapMarker.js +16 -20
  157. package/lib/es/components/mapMarker/SingleMapMarker.js +16 -30
  158. package/lib/es/components/numberControl/NumberControl.js +13 -7
  159. package/lib/es/components/numberInput/NumberInput.js +31 -12
  160. package/lib/es/components/responsiveColumnStripe/ResponsiveColumnStripe.js +266 -0
  161. package/lib/es/components/rules/RuleContainer.js +4 -0
  162. package/lib/es/components/rules/RulesWrapper.js +3 -3
  163. package/lib/es/hooks/useDarkMode.js +4 -3
  164. package/lib/es/hooks/useMutationObserver.js +15 -4
  165. package/lib/es/hooks/useScrollPosition.js +6 -7
  166. package/lib/es/index.d.ts +29 -29
  167. package/lib/es/index.js +24 -0
  168. package/lib/es/styles/components/Dialog.less +13 -10
  169. package/lib/es/styles/components/MapMarker.less +224 -14
  170. package/lib/es/styles/components/MapSettings.less +45 -29
  171. package/lib/es/styles/components/Notification.less +1 -1
  172. package/lib/es/styles/design/alerts.less +7 -9
  173. package/lib/es/styles/design/aspect-ratio.less +1 -0
  174. package/lib/es/styles/design/blur.less +7 -0
  175. package/lib/es/styles/design/border.less +51 -14
  176. package/lib/es/styles/design/callouts.less +12 -11
  177. package/lib/es/styles/design/colors.less +15 -6
  178. package/lib/es/styles/design/cols.less +19 -18
  179. package/lib/es/styles/design/divide.less +165 -0
  180. package/lib/es/styles/design/divider.less +90 -0
  181. package/lib/es/styles/design/responsive/_imports.less +1 -0
  182. package/lib/es/styles/design/responsive/gap.less +0 -8
  183. package/lib/es/styles/design/responsive/spacing.less +25 -0
  184. package/lib/es/styles/design/text.less +16 -2
  185. package/lib/es/styles/mapping/color-map.less +10 -0
  186. package/lib/es/styles/mapping/spacings-map.less +5 -0
  187. package/lib/es/styles/rio-uikit-core.less +2 -0
  188. package/lib/es/styles/variables/colors.json +6 -0
  189. package/lib/es/styles/variables/concated_css_variables.less +6 -0
  190. package/lib/es/styles/variables/dark_colors.less +7 -0
  191. package/lib/es/styles/variables/dark_css_variables_map.less +7 -0
  192. package/lib/es/styles/variables/light_colors.less +7 -0
  193. package/lib/es/styles/variables/light_css_variables_map.less +7 -0
  194. package/lib/es/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +14 -5
  195. package/lib/es/types.ts +69 -23
  196. package/lib/es/useDarkMode.d.ts +4 -0
  197. package/lib/es/useDarkMode.js +13 -0
  198. package/lib/es/useMutationObserver.d.ts +4 -0
  199. package/lib/es/useMutationObserver.js +13 -0
  200. package/lib/es/version.json +1 -1
  201. package/package.json +2 -2
  202. package/styles/components/Dialog.less +13 -10
  203. package/styles/components/MapMarker.less +224 -14
  204. package/styles/components/MapSettings.less +45 -29
  205. package/styles/components/Notification.less +1 -1
  206. package/styles/design/alerts.less +7 -9
  207. package/styles/design/aspect-ratio.less +1 -0
  208. package/styles/design/blur.less +7 -0
  209. package/styles/design/border.less +51 -14
  210. package/styles/design/callouts.less +12 -11
  211. package/styles/design/colors.less +15 -6
  212. package/styles/design/cols.less +19 -18
  213. package/styles/design/divide.less +165 -0
  214. package/styles/design/divider.less +90 -0
  215. package/styles/design/responsive/_imports.less +1 -0
  216. package/styles/design/responsive/gap.less +0 -8
  217. package/styles/design/responsive/spacing.less +25 -0
  218. package/styles/design/text.less +16 -2
  219. package/styles/mapping/color-map.less +10 -0
  220. package/styles/mapping/spacings-map.less +5 -0
  221. package/styles/rio-uikit-core.less +2 -0
  222. package/styles/variables/colors.json +6 -0
  223. package/styles/variables/concated_css_variables.less +6 -0
  224. package/styles/variables/dark_colors.less +7 -0
  225. package/styles/variables/dark_css_variables_map.less +7 -0
  226. package/styles/variables/light_colors.less +7 -0
  227. package/styles/variables/light_css_variables_map.less +7 -0
  228. package/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +15 -6
  229. package/types.ts +69 -23
  230. package/useDarkMode.d.ts +4 -0
  231. package/useDarkMode.js +2 -0
  232. package/useMutationObserver.d.ts +4 -0
  233. package/useMutationObserver.js +2 -0
  234. package/version.json +1 -1
  235. package/components/.DS_Store +0 -0
  236. package/components/map/.DS_Store +0 -0
  237. package/components/map/components/.DS_Store +0 -0
  238. package/components/map/components/features/layers/TruckLayer.js +0 -20
  239. package/components/map/components/features/layers/baselayers/BaseLayer.js +0 -33
  240. package/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -23
  241. package/hooks/useHereMap.ts +0 -23
  242. package/hooks/useScripts.ts +0 -52
  243. package/lib/.DS_Store +0 -0
  244. package/lib/es/.DS_Store +0 -0
  245. package/lib/es/components/.DS_Store +0 -0
  246. package/lib/es/components/map/components/features/layers/TruckLayer.js +0 -28
  247. package/lib/es/components/map/components/features/layers/baselayers/BaseLayer.js +0 -41
  248. package/lib/es/components/map/components/features/layers/baselayers/DefaultLayer.js +0 -30
  249. package/lib/es/hooks/useHereMap.ts +0 -23
  250. package/lib/es/hooks/useScripts.ts +0 -52
  251. package/lib/es/styles/.DS_Store +0 -0
  252. package/lib/es/styles/mixins/_mixins.less +0 -13
  253. package/lib/es/styles/mixins/alerts.less +0 -13
  254. package/lib/es/styles/shared/colors.json +0 -56
  255. package/lib/es/styles/shared/colors.less +0 -73
  256. package/lib/es/styles/shared/screens.less +0 -7
  257. package/lib/es/styles/shared/text.less +0 -23
  258. package/lib/es/styles/variables.less +0 -186
  259. package/lib/es/themes/.DS_Store +0 -0
  260. package/styles/.DS_Store +0 -0
  261. package/styles/mixins/_mixins.less +0 -13
  262. package/styles/mixins/alerts.less +0 -13
  263. package/styles/shared/colors.json +0 -56
  264. package/styles/shared/colors.less +0 -73
  265. package/styles/shared/screens.less +0 -7
  266. package/styles/shared/text.less +0 -23
  267. package/styles/variables.less +0 -186
  268. package/themes/.DS_Store +0 -0
  269. package/themes/Volkswagen/.DS_Store +0 -0
  270. package/themes/Website/.DS_Store +0 -0
@@ -211,20 +211,30 @@ var icons = {
211
211
  xmlns: "http://www.w3.org/2000/svg",
212
212
  width: "40",
213
213
  height: "40"
214
+ }, /*#__PURE__*/React.createElement("g", {
215
+ fill: "none",
216
+ fillRule: "evenodd"
214
217
  }, /*#__PURE__*/React.createElement("path", {
215
218
  fill: "#30B4C0",
216
- fillRule: "evenodd",
217
- d: "M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"
218
- })),
219
+ d: "m20 12.451 19.98 11.322L20 35.095.02 23.773l11.052-6.262a4.85 4.85 0 0 0 1.13.484l-2.775 1.572c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-2.446-1.384c.16-.005.32-.019.478-.04l2.222 1.274 3.354-1.924-2.296-1.3c.07-.097.138-.197.202-.3l2.235 1.28.147.085.052.03 3.352-1.924-3.353-1.9-1.854 1.052c.095-.38.142-.762.144-1.139l1.63-.924Zm-.093 17.57-3.353 1.9 3.353 1.922 3.354-1.924-3.354-1.899Zm3.746-2.05-3.353 1.9 3.354 1.922 3.353-1.924-3.354-1.899Zm-7.383-.026-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.01-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.015-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899ZM9 23.868l-3.354 1.9L9 27.691l3.353-1.924L9 23.868Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm14.53-.049-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.922 3.353-1.924-3.353-1.899Zm-10.92-1.988-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.899Zm-7.364-.013L2.03 23.707c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.243-.034-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.33-.055-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.899ZM9.13 19.756l-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.028-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.242-.038-3.353 1.901c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.329-.089-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.948-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.899Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.899Z"
220
+ }), /*#__PURE__*/React.createElement("path", {
221
+ fill: "#97D9DF",
222
+ d: "M8.403 15.762c.15.282.05.632-.227.792l-1.392.74a.584.584 0 0 1-.45.044.593.593 0 0 1-.105-1.09l1.39-.74a.592.592 0 0 1 .784.254ZM14.7 9.09a4.15 4.15 0 1 1-2.427 7.939 4.15 4.15 0 0 1 2.427-7.94Zm-6.333 1.784a.593.593 0 1 1-.347 1.134l-2.269-.693a.602.602 0 0 1-.393-.74c.1-.31.428-.485.74-.394l2.269.693ZM20.99 9.07a.593.593 0 0 1-.245.801l-1.392.74a.587.587 0 0 1-.452.044.564.564 0 0 1-.35-.289.586.586 0 0 1 .245-.801l1.392-.74a.593.593 0 0 1 .802.245ZM9.95 5.497c.153.05.279.16.35.304l.74 1.392a.588.588 0 0 1-.246.802.564.564 0 0 1-.451.044.587.587 0 0 1-.35-.29l-.74-1.392a.595.595 0 0 1 .235-.82.595.595 0 0 1 .462-.04Zm6.023-.566c.313.096.489.428.393.74l-.693 2.269a.593.593 0 1 1-1.134-.347l.693-2.268a.593.593 0 0 1 .74-.394ZM29.571 9.467a.791.791 0 0 0-.4.1.88.88 0 0 0 .067-.35c0-.55-.4-1-.89-1-.2 0-.355.075-.51.175-.222-.975-1-1.675-1.934-1.675-1.11 0-2 1-2 2.25 0 .1 0 .2.022.275-.088-.025-.155-.025-.244-.025-.622 0-1.111.55-1.111 1.25s.489 1.25 1.111 1.25h5.889c.555 0 1-.5 1-1.125s-.445-1.125-1-1.125ZM30.446 14.917c.117 0 .233.02.35.08a.652.652 0 0 1-.058-.28c0-.44.35-.8.777-.8a.85.85 0 0 1 .448.14c.194-.78.875-1.34 1.691-1.34.973 0 1.75.8 1.75 1.8 0 .08 0 .16-.019.22.078-.02.136-.02.214-.02.544 0 .972.44.972 1s-.428 1-.972 1h-5.153a.884.884 0 0 1-.875-.9c0-.462.331-.838.765-.893l.11-.007Z"
223
+ }))),
219
224
  mapTypeFlatInactive: /*#__PURE__*/React.createElement("svg", {
220
225
  xmlns: "http://www.w3.org/2000/svg",
221
226
  width: "40",
222
227
  height: "40"
228
+ }, /*#__PURE__*/React.createElement("g", {
229
+ fill: "none",
230
+ fillRule: "evenodd"
223
231
  }, /*#__PURE__*/React.createElement("path", {
224
232
  fill: "#939BA8",
225
- fillRule: "evenodd",
226
- d: "M.02 20.2L20 31.522 39.98 20.2 20 8.878.02 20.2zm5.363 1.856S2.03 20.132 2.03 20.134l3.353-1.902 3.354 1.9-3.354 1.924zM9 24.118l-3.354-1.923L9 20.295l3.353 1.899L9 24.118zm3.634 2.037s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zM9.13 20.006s-3.353-1.924-3.353-1.922l3.353-1.902 3.354 1.9-3.354 1.924zm3.617 2.062l-3.354-1.923 3.354-1.9 3.353 1.899-3.353 1.924zm3.634 2.037l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.637 2.075L20.3 26.297l3.353-1.9 3.354 1.899-3.354 1.924h.001zM12.78 17.916s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.616 2.062l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zM16.387 15.842l-3.353-1.923 3.353-1.9 3.354 1.899-3.354 1.924zm3.616 2.062L16.65 15.98l3.353-1.9 3.354 1.899-3.354 1.924v.001zm3.635 2.037s-3.353-1.925-3.353-1.923l3.353-1.901 3.353 1.9-3.353 1.924zm3.636 2.04l-3.353-1.923 3.353-1.9 3.353 1.899-3.353 1.924zm3.637 2.075s-3.353-1.925-3.353-1.923l3.353-1.9 3.353 1.898-3.353 1.925zm-10.83-10.343s-3.354-1.925-3.354-1.923l3.353-1.901 3.353 1.9-3.353 1.924h.001zm3.615 2.061s-3.353-1.924-3.353-1.922l3.353-1.901 3.354 1.899-3.354 1.924zm3.635 2.037s-3.353-1.924-3.353-1.922l3.353-1.902 3.353 1.9-3.353 1.924zm3.636 2.04s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.9-3.353 1.923zm3.637 2.075s-3.353-1.924-3.353-1.922l3.353-1.901 3.353 1.899-3.353 1.924z"
227
- })),
233
+ d: "m20 12.451 19.98 11.322L20 35.095.02 23.773l11.052-6.262a4.85 4.85 0 0 0 1.13.484l-2.775 1.572c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-2.446-1.384c.16-.005.32-.019.478-.04l2.222 1.274 3.354-1.924-2.296-1.3c.07-.097.138-.197.202-.3l2.235 1.28.147.085.052.03 3.352-1.924-3.353-1.9-1.854 1.052c.095-.38.142-.762.144-1.139l1.63-.924Zm-.093 17.57-3.353 1.9 3.353 1.922 3.354-1.924-3.354-1.899Zm3.746-2.05-3.353 1.9 3.354 1.922 3.353-1.924-3.354-1.899Zm-7.383-.026-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.01-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.015-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899ZM9 23.868l-3.354 1.9L9 27.691l3.353-1.924L9 23.868Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm14.53-.049-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.922 3.353-1.924-3.353-1.899Zm-10.92-1.988-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.899Zm-7.364-.013L2.03 23.707c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.243-.034-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.33-.055-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.899ZM9.13 19.756l-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.028-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.899Zm7.242-.038-3.353 1.901c0-.002 3.353 1.923 3.353 1.923l3.353-1.924-3.353-1.9Zm7.329-.089-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.948-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.899Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.901c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.899Z"
234
+ }), /*#__PURE__*/React.createElement("path", {
235
+ fill: "#C9CDD3",
236
+ d: "M8.403 15.762c.15.282.05.632-.227.792l-1.392.74a.584.584 0 0 1-.45.044.593.593 0 0 1-.105-1.09l1.39-.74a.592.592 0 0 1 .784.254ZM14.7 9.09a4.15 4.15 0 1 1-2.427 7.939 4.15 4.15 0 0 1 2.427-7.94Zm-6.333 1.784a.593.593 0 1 1-.347 1.134l-2.269-.693a.602.602 0 0 1-.393-.74c.1-.31.428-.485.74-.394l2.269.693ZM20.99 9.07a.593.593 0 0 1-.245.801l-1.392.74a.587.587 0 0 1-.452.044.564.564 0 0 1-.35-.289.586.586 0 0 1 .245-.801l1.392-.74a.593.593 0 0 1 .802.245ZM9.95 5.497c.153.05.279.16.35.304l.74 1.392a.588.588 0 0 1-.246.802.564.564 0 0 1-.451.044.587.587 0 0 1-.35-.29l-.74-1.392a.595.595 0 0 1 .235-.82.595.595 0 0 1 .462-.04Zm6.023-.566c.313.096.489.428.393.74l-.693 2.269a.593.593 0 1 1-1.134-.347l.693-2.268a.593.593 0 0 1 .74-.394ZM29.571 9.467a.791.791 0 0 0-.4.1.88.88 0 0 0 .067-.35c0-.55-.4-1-.89-1-.2 0-.355.075-.51.175-.222-.975-1-1.675-1.934-1.675-1.11 0-2 1-2 2.25 0 .1 0 .2.022.275-.088-.025-.155-.025-.244-.025-.622 0-1.111.55-1.111 1.25s.489 1.25 1.111 1.25h5.889c.555 0 1-.5 1-1.125s-.445-1.125-1-1.125ZM30.446 14.917c.117 0 .233.02.35.08a.652.652 0 0 1-.058-.28c0-.44.35-.8.777-.8a.85.85 0 0 1 .448.14c.194-.78.875-1.34 1.691-1.34.973 0 1.75.8 1.75 1.8 0 .08 0 .16-.019.22.078-.02.136-.02.214-.02.544 0 .972.44.972 1s-.428 1-.972 1h-5.153a.884.884 0 0 1-.875-.9c0-.462.331-.838.765-.893l.11-.007Z"
237
+ }))),
228
238
  mapTypeFlatTruckActive: /*#__PURE__*/React.createElement("svg", {
229
239
  xmlns: "http://www.w3.org/2000/svg",
230
240
  width: "40",
@@ -282,24 +292,28 @@ var icons = {
282
292
  width: "40",
283
293
  height: "40"
284
294
  }, /*#__PURE__*/React.createElement("g", {
285
- fill: "#30B4C0",
295
+ fill: "none",
286
296
  fillRule: "evenodd"
287
297
  }, /*#__PURE__*/React.createElement("path", {
288
- d: "M34.754 19.386l5.206 2.95-19.98 11.322L0 22.336l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001zm-5.981-3.39l-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922zm-14.142-1.95l-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001zm22.87 8.29l-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085a33.47 33.47 0 0 0-1.34-.827h-.001zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728zm-13.183 2.312c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478z"
298
+ fill: "#30B4C0",
299
+ d: "m34.754 19.386 5.206 2.95-19.98 11.322L0 22.336l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001Zm-5.981-3.39-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922Zm-14.142-1.95-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001Zm22.87 8.29-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689Zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085-.44-.286-.887-.562-1.34-.827h-.001Zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001Zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964Zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943Zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728Zm-13.183 2.312c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04Zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78Zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001Zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43Zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913Zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478Z"
289
300
  }), /*#__PURE__*/React.createElement("path", {
290
- d: "M5.094 21.941l1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.591v2.78H8.354v-2.78H5.093h.001v.001zm10.038-5.759l1.93-2.531H15.99L19.98 7l3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475H15.13h.002zm13.034 2.656l1.158-1.519h-.644l2.395-3.99 2.368 3.99H32.8l1.184 1.519h-2.445v2.085h-.929v-2.085h-2.445.001z"
301
+ fill: "#97D9DF",
302
+ d: "m5.094 21.941 1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.591v2.78H8.354v-2.78H5.093h.001v.001Zm10.038-5.759 1.93-2.531H15.99L19.98 7l3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475H15.13h.002Zm13.034 2.656 1.158-1.519h-.644l2.395-3.99 2.368 3.99H32.8l1.184 1.519h-2.445v2.085h-.929v-2.085h-2.445.001Z"
291
303
  }))),
292
304
  mapTypeSateliteInactive: /*#__PURE__*/React.createElement("svg", {
293
305
  xmlns: "http://www.w3.org/2000/svg",
294
306
  width: "40",
295
307
  height: "40"
296
308
  }, /*#__PURE__*/React.createElement("g", {
297
- fill: "#939BA8",
309
+ fill: "none",
298
310
  fillRule: "evenodd"
299
311
  }, /*#__PURE__*/React.createElement("path", {
300
- d: "M34.855 19.215l5.206 2.95-19.98 11.322L.101 22.165l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001zm-5.981-3.39l-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922zm-14.142-1.95l-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243c-.291-.154-.58-.312-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001zm22.87 8.29l-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085a33.47 33.47 0 0 0-1.34-.827h-.001zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728zM12.6 24.072c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478z"
312
+ fill: "#939BA8",
313
+ d: "m34.855 19.215 5.206 2.95-19.98 11.322L.101 22.165l4.948-2.804-.462.742h1.115l-.336.473-2.805 1.59 2.98 1.688c.778-.443 1.594-.91 2.415-1.4h.156v.259c-.767.46-1.53.9-2.263 1.316l3.44 1.95c1.227-.71 2.136-1.291 3.013-2.049-.344-.163-.688-.322-1.03-.48-.44-.205-.882-.41-1.32-.62v-.336c.482.233.968.459 1.455.684.378.176.76.353 1.143.536.403-.367.806-.776 1.236-1.26h.331l-.157-.198a26.9 26.9 0 0 0 .427-.504c.196-.238.388-.477.582-.716.325-.404.658-.812 1.006-1.215a19.65 19.65 0 0 0-.656.049c-.363.031-.775.066-1.226.08-.286.01-.57-.007-.852-.044l-.196-.33c.341.057.688.086 1.04.074.443-.013.833-.047 1.209-.079.336-.03.65-.055.954-.061.17-.189.342-.374.52-.553.473-.481.948-.88 1.49-1.157-.212.02-.426.03-.639.031a5.36 5.36 0 0 1-1.258-.156c-.69.332-1.381.678-2.04 1.065-.44.254-.872.523-1.299.798l-.156-.263c.425-.275.857-.54 1.294-.796a28.137 28.137 0 0 1 1.752-.925c-.587-.18-1.142-.42-1.676-.685l.711.002c.373.164.756.31 1.159.427.077.024.147.04.22.058.34-.162.68-.322 1.017-.478l.714.002-.42.195-.831.386c.684.115 1.208.062 1.829-.001.087-.01.177-.018.27-.027v.418c-.73.237-1.309.697-1.92 1.316-.112.113-.22.233-.328.35.889.045 1.728.342 2.804 1.383.215.207.42.423.62.641.2-.218.405-.434.62-.641 1.076-1.041 1.915-1.34 2.803-1.385-.104-.112-.208-.227-.316-.335-.614-.625-1.196-1.09-1.93-1.328v-.419l.268.027c.623.063 1.145.115 1.827.001-.425-.201-.851-.4-1.279-.594h.725c.345.16.692.324 1.04.49.072-.02.142-.037.22-.059a9.43 9.43 0 0 0 1.164-.43h.708c-.536.266-1.092.506-1.68.686.59.29 1.18.593 1.75.925a34.77 34.77 0 0 1 1.603.995 7.72 7.72 0 0 0 .822-.26h.775c-.41.185-.834.349-1.27.475.338.223.674.448 1.006.671.527.356 1.055.711 1.59 1.055.268.173.542.341.814.51 1-.523 1.99-1.064 2.97-1.624l-1.915-1.086h2.46-.001Zm-5.981-3.39-.62 1.044-1.133-.643c-.284.16-.572.32-.865.475l-.19-.245c.25-.13.497-.267.745-.406l-1.892-1.073-.827-1.066h1.394l-.005-.008 3.393 1.922Zm-14.142-1.95-.023.036h1.395l-.823 1.045-1.93 1.092c.25.141.498.279.748.41l-.191.243a30.88 30.88 0 0 1-.866-.475l-1.489.844-.62-1.043 3.799-2.153v.001Zm22.87 8.29-2.983-1.69c-.973.552-1.968 1.108-2.979 1.637 1.01.616 2.023 1.198 2.98 1.742l2.982-1.689Zm-11.757-3.427a29.093 29.093 0 0 0-2.04-1.061 5.36 5.36 0 0 1-1.259.156c-.211 0-.416-.013-.623-.03.535.275 1.003.674 1.49 1.168.173.176.34.357.504.539.304.006.62.033.956.061.377.032.764.065 1.208.079.373.014.741-.019 1.105-.085-.44-.286-.887-.562-1.34-.827h-.001Zm-11.22 3.202a18.949 18.949 0 0 1-1.783 1.914c.644.31 1.287.638 1.909.998a35.03 35.03 0 0 1 1.558.967c.244-.216.482-.437.711-.675.593-.614 1.136-1.29 1.661-1.943.385-.478.78-.962 1.197-1.434a14.496 14.496 0 0 0-.631-.655c-1.113-1.075-1.903-1.31-2.854-1.306-.406.462-.8.935-1.184 1.416-.194.24-.388.481-.585.718h.001Zm2.618 3.412a11.06 11.06 0 0 1-.671.64c.373.245.743.493 1.107.737.53.358 1.06.715 1.598 1.061.264.171.535.336.804.503.27-.167.54-.332.804-.503.538-.347 1.068-.704 1.599-1.061.363-.244.733-.492 1.106-.737a12.127 12.127 0 0 1-.67-.64c-.601-.624-1.15-1.305-1.68-1.964a41.762 41.762 0 0 0-1.159-1.391c-.403.457-.786.928-1.16 1.391-.528.659-1.076 1.34-1.678 1.964Zm5.9-.206c.228.237.468.459.71.674.51-.333 1.03-.66 1.558-.967.622-.36 1.266-.688 1.91-1a19.294 19.294 0 0 1-1.775-1.903c-.2-.242-.397-.486-.594-.73-.38-.47-.77-.95-1.18-1.413-.952-.003-1.742.231-2.855 1.307-.218.21-.427.43-.63.655.416.47.811.956 1.196 1.434.525.654 1.068 1.328 1.66 1.943Zm2.64-3.386c.661.798 1.246 1.42 1.832 1.95.381-.18.761-.358 1.137-.532.505-.235 1.01-.467 1.51-.711.255-.123.508-.253.76-.382-.221-.138-.445-.275-.665-.417-.538-.345-1.066-.702-1.597-1.06-.402-.271-.812-.545-1.226-.817a5.73 5.73 0 0 1-1.466.16 21.788 21.788 0 0 1-1.225-.081c-.232-.02-.449-.038-.657-.05.346.4.68.81 1.004 1.212.197.243.394.487.593.728ZM12.6 24.072c-.895.786-1.811 1.385-3.003 2.078l3.444 1.953c.993-.576 2.05-1.247 3.031-2.077a33.171 33.171 0 0 0-1.476-.914 28.18 28.18 0 0 0-1.996-1.04Zm3.735 2.127c-.967.83-2.007 1.5-2.992 2.075l3.449 1.954a112.11 112.11 0 0 0 3.003-1.756 41.95 41.95 0 0 1-.687-.43 96.77 96.77 0 0 1-1.604-1.063c-.384-.258-.775-.52-1.169-.78Zm3.746 2.452c-1.009.62-2.02 1.206-2.982 1.753l2.982 1.69 2.982-1.692a103.44 103.44 0 0 1-2.982-1.75v-.001Zm.285-.177c1.02.622 2.042 1.208 3.005 1.756l3.448-1.955c-.985-.575-2.022-1.245-2.991-2.075-.396.26-.787.52-1.171.78-.532.359-1.064.717-1.604 1.064-.227.147-.458.287-.687.43Zm3.724-2.448c.984.832 2.04 1.5 3.034 2.077l3.443-1.951c-1.195-.695-2.11-1.293-3.005-2.079-.674.324-1.348.664-1.995 1.04-.5.292-.992.596-1.477.913Zm3.774-2.097c.887.764 1.803 1.352 3.006 2.051l3.442-1.95a102.96 102.96 0 0 1-2.989-1.757c-.306.158-.613.315-.922.466-.502.243-1.01.478-1.516.712-.338.156-.679.316-1.021.478Z"
301
314
  }), /*#__PURE__*/React.createElement("path", {
302
- d: "M5.195 21.77l1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.692v2.78H8.455v-2.78H5.194h.001v.001zm10.038-5.759l1.93-2.531h-1.072l3.99-6.651 3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475h-4.076.002zm13.034 2.656l1.158-1.519h-.644l2.395-3.99 2.368 3.99h-.643l1.184 1.519H31.64v2.085h-.929v-2.085h-2.445.001z"
315
+ fill: "#C9CDD3",
316
+ d: "m5.195 21.77 1.545-2.026h-.858l3.192-5.32 3.158 5.32h-.858l1.58 2.025H9.692v2.78H8.455v-2.78H5.194h.001v.001Zm10.038-5.759 1.93-2.531h-1.072l3.99-6.651 3.948 6.651h-1.072l1.974 2.531h-4.076v3.475h-1.548v-3.475h-4.076.002Zm13.034 2.656 1.158-1.519h-.644l2.395-3.99 2.368 3.99h-.643l1.184 1.519H31.64v2.085h-.929v-2.085h-2.445.001Z"
303
317
  }))),
304
318
  mapTypeTerrainActive: /*#__PURE__*/React.createElement("svg", {
305
319
  xmlns: "http://www.w3.org/2000/svg",
@@ -308,7 +322,7 @@ var icons = {
308
322
  }, /*#__PURE__*/React.createElement("path", {
309
323
  fill: "#30B4C0",
310
324
  fillRule: "evenodd",
311
- d: "M0 20.2l20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866l-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"
325
+ d: "m0 20.2 20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"
312
326
  })),
313
327
  mapTypeTerrainInactive: /*#__PURE__*/React.createElement("svg", {
314
328
  xmlns: "http://www.w3.org/2000/svg",
@@ -317,70 +331,36 @@ var icons = {
317
331
  }, /*#__PURE__*/React.createElement("path", {
318
332
  fill: "#939BA8",
319
333
  fillRule: "evenodd",
320
- d: "M0 20.2l20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866l-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"
334
+ d: "m0 20.2 20 11.333L40 20.2 20 8.867 0 20.2zm26.737-6.121c-.891.5-1.763.96-2.756 1.25-.073.02-.146.039-.22.057-.397-.188-.793-.374-1.186-.557a81.547 81.547 0 0 1-1.507-.71c-.245-.119-.487-.245-.733-.37a98.714 98.714 0 0 0 2.957-1.623l3.445 1.953zm3.755 2.129c-.924.518-1.918 1.035-2.961 1.298a35.637 35.637 0 0 0-1.605-.996 27.1 27.1 0 0 0-1.752-.925c1.037-.318 1.973-.82 2.873-1.33l3.445 1.953zm3.753 2.126a91.698 91.698 0 0 1-2.974 1.625c-.273-.168-.547-.336-.814-.51-.536-.344-1.065-.7-1.592-1.055-.332-.224-.669-.449-1.007-.672 1.063-.309 2.06-.84 2.943-1.34l3.444 1.952zm3.293 1.866-2.984 1.69a108.786 108.786 0 0 1-2.983-1.743c1.003-.53 1.997-1.076 2.982-1.639l2.985 1.692zm-32.09-1.692a98.34 98.34 0 0 0 2.982 1.639c-1.01.616-2.027 1.199-2.984 1.743L2.463 20.2l2.985-1.692zM9.2 16.383c.882.497 1.88 1.03 2.942 1.34-.339.224-.674.449-1.004.67-.529.356-1.058.713-1.593 1.058-.268.173-.542.342-.815.51-1.008-.523-2-1.075-2.974-1.626L9.2 16.383zm7.508-4.255c.966.547 1.954 1.1 2.956 1.624-.244.124-.487.25-.733.37-.5.242-1.003.476-1.508.71-.391.18-.787.366-1.183.555-.073-.02-.143-.035-.22-.059-.993-.29-1.866-.747-2.758-1.25l3.446-1.95zm9.061 4.642c.454.262.9.543 1.342.827a5.05 5.05 0 0 1-1.106.085c-.444-.014-.832-.047-1.21-.078a15.38 15.38 0 0 0-.956-.062 16.057 16.057 0 0 0-.505-.54c-.488-.494-.956-.893-1.491-1.169.207.018.412.03.623.03a5.37 5.37 0 0 0 1.26-.155c.69.33 1.38.676 2.043 1.062zm-9.494-1.064c.477.113.883.156 1.26.156.218 0 .428-.014.64-.032-.544.279-1.019.677-1.493 1.158-.178.18-.35.365-.52.554-.319.01-.637.03-.955.062-.377.031-.766.066-1.21.078a5.32 5.32 0 0 1-1.105-.085c.44-.284.887-.563 1.34-.826.66-.387 1.352-.733 2.043-1.065zm3.734-.003c1.358.012 2.193.587 3.1 1.509.108.108.212.223.316.335-.888.046-1.728.345-2.806 1.386-.214.208-.42.424-.62.642-.2-.218-.406-.434-.62-.642-1.078-1.041-1.918-1.339-2.808-1.384.11-.117.217-.236.329-.35.907-.919 1.743-1.488 3.109-1.496zm-6.004 2.28c.41-.015.82-.042 1.228-.08.23-.02.447-.038.655-.05-.342.4-.678.806-1.006 1.217-.194.24-.387.479-.582.716-.669.81-1.254 1.432-1.84 1.964-.383-.182-.766-.36-1.144-.536a87.688 87.688 0 0 1-1.509-.71c-.255-.124-.506-.255-.76-.382.223-.139.448-.276.666-.418.537-.347 1.07-.7 1.598-1.06.402-.27.811-.545 1.225-.815.48.108.972.17 1.468.154h.001zm.532 1.992c.197-.237.391-.478.585-.719.382-.472.773-.954 1.185-1.418.952-.003 1.742.232 2.857 1.308.218.21.426.431.631.656-.416.472-.812.957-1.197 1.435-.526.653-1.07 1.33-1.663 1.945-.229.238-.468.46-.712.675-.511-.333-1.03-.66-1.56-.967-.622-.36-1.266-.69-1.91-1a18.968 18.968 0 0 0 1.784-1.915zm2.621 3.415c.603-.625 1.151-1.306 1.68-1.966.374-.464.757-.934 1.161-1.392.402.458.787.928 1.16 1.392.531.66 1.08 1.341 1.68 1.966.217.225.443.436.673.64-.374.246-.744.495-1.108.738-.53.358-1.061.715-1.6 1.063-.265.171-.536.336-.805.503-.27-.167-.54-.332-.805-.503a82.344 82.344 0 0 1-1.6-1.063c-.364-.243-.734-.492-1.108-.738.23-.203.456-.413.672-.64zm5.906-.206c-.593-.615-1.136-1.29-1.662-1.945a39.25 39.25 0 0 0-1.198-1.435c.204-.225.414-.446.632-.657 1.114-1.076 1.905-1.31 2.857-1.307.41.462.802.944 1.182 1.414.197.244.394.488.594.73a19.38 19.38 0 0 0 1.777 1.906c-.645.312-1.29.64-1.911 1.001a35.08 35.08 0 0 0-1.56.968c-.245-.216-.482-.44-.71-.675h-.001zm2.643-3.39c-.2-.24-.396-.484-.594-.728a46.52 46.52 0 0 0-1.005-1.214c.209.013.425.03.658.05.363.032.774.067 1.226.081a5.73 5.73 0 0 0 1.467-.159c.415.272.826.546 1.228.818.53.358 1.06.715 1.598 1.06.22.143.445.28.666.418-.252.129-.505.26-.76.382-.502.244-1.007.477-1.512.712-.377.174-.757.352-1.138.533-.587-.532-1.172-1.153-1.834-1.953zm-4.262-4.304a15.1 15.1 0 0 0-1.268-.09h-.003c-.013 0-.024.005-.035.007-.044-.002-.082-.008-.127-.008h-.003c-.045 0-.087.006-.132.008a.171.171 0 0 0-.057-.007c-.49.01-.903.052-1.269.09-.622.063-1.146.117-1.83.002.278-.13.556-.26.832-.387.505-.235 1.011-.47 1.513-.713.313-.151.622-.31.931-.47a45.06 45.06 0 0 0 2.444 1.181c.276.128.555.257.833.389-.683.113-1.205.061-1.829-.002zm-8.492-1.235c.901.51 1.836 1.012 2.873 1.33-.592.29-1.182.593-1.754.925a37.06 37.06 0 0 0-1.603.996c-1.045-.263-2.04-.779-2.963-1.298l3.447-1.953zm-4.208 6.052c.306.157.614.315.923.466.502.244 1.008.478 1.513.712.342.16.687.318 1.031.482-.878.758-1.787 1.34-3.015 2.05l-3.444-1.95c.965-.55 1.982-1.139 2.992-1.76zm3.766 1.802c.674.324 1.35.664 1.997 1.041.5.29.993.598 1.478.915-.982.83-2.04 1.502-3.035 2.078L9.506 24.19c1.192-.694 2.11-1.294 3.006-2.08l-.001-.001zm3.738 2.129c.395.26.786.522 1.17.78.533.36 1.065.716 1.605 1.066.227.144.457.288.688.43-1.02.622-2.042 1.21-3.006 1.757l-3.452-1.956c.986-.576 2.027-1.246 2.995-2.077zM20 26.693c1.01.62 2.025 1.207 2.985 1.753L20 30.139l-2.985-1.692c.962-.547 1.975-1.134 2.985-1.754zm.286-.178c.229-.143.46-.283.687-.43.54-.347 1.073-.706 1.605-1.065.385-.26.776-.52 1.172-.78.97.83 2.009 1.5 2.995 2.077l-3.452 1.956a112.097 112.097 0 0 1-3.007-1.758zm3.727-2.45c.486-.315.98-.625 1.478-.915.652-.373 1.319-.72 1.998-1.04.894.787 1.812 1.385 3.007 2.08l-3.446 1.954c-.994-.578-2.053-1.247-3.037-2.08v.001zm3.777-2.1c.343-.162.685-.322 1.023-.478.508-.233 1.014-.47 1.517-.713.31-.15.617-.308.923-.465 1.01.621 2.027 1.208 2.992 1.757L30.8 24.02c-1.205-.7-2.122-1.289-3.01-2.053v-.002zM20 13.584a94.01 94.01 0 0 1-2.983-1.63L20 10.26l2.984 1.69A89.36 89.36 0 0 1 20 13.583v.001z"
321
335
  })),
322
336
  mapTypeNightActive: /*#__PURE__*/React.createElement("svg", {
337
+ xmlns: "http://www.w3.org/2000/svg",
323
338
  width: "40",
324
- height: "40",
325
- viewBox: "0 0 40 40",
339
+ height: "40"
340
+ }, /*#__PURE__*/React.createElement("g", {
326
341
  fill: "none",
327
- xmlns: "http://www.w3.org/2000/svg"
342
+ fillRule: "evenodd"
328
343
  }, /*#__PURE__*/React.createElement("path", {
329
- fillRule: "evenodd",
330
- clipRule: "evenodd",
331
- d: "M0 20.322L19.98 31.644L39.96 20.322L19.98 9L0 20.322ZM5.363 22.178C5.363 22.178 2.01 20.254 2.01 20.256L5.363 18.354L8.717 20.254L5.363 22.178V22.178ZM8.98 24.24L5.626 22.317L8.98 20.417L12.333 22.316L8.98 24.24ZM12.614 26.277C12.614 26.277 9.261 24.352 9.261 24.354L12.614 22.454L15.967 24.352L12.614 26.277V26.277ZM16.25 28.317L12.897 26.394L16.25 24.494L19.603 26.393L16.25 28.317V28.317ZM19.887 30.392L16.534 28.469L19.887 26.569L23.241 28.468L19.887 30.392ZM9.11 20.128C9.11 20.128 5.757 18.204 5.757 18.206L9.11 16.304L12.464 18.204L9.11 20.128V20.128ZM12.727 22.19L9.373 20.267L12.727 18.367L16.08 20.266L12.727 22.19V22.19ZM16.361 24.227L13.008 22.304L16.361 20.404L19.714 22.303L16.361 24.227V24.227ZM19.997 26.267C19.997 26.267 16.644 24.343 16.644 24.345L19.997 22.443L23.35 24.343L19.997 26.267V26.267ZM23.634 28.342L20.28 26.419L23.633 24.519L26.987 26.418L23.633 28.342H23.634V28.342ZM12.76 18.038C12.76 18.038 9.407 16.114 9.407 16.116L12.76 14.214L16.113 16.114L12.76 18.038ZM16.376 20.1L13.023 18.177L16.376 16.277L19.729 18.176L16.376 20.1ZM20.011 22.137C20.011 22.137 16.658 20.212 16.658 20.214L20.011 18.313L23.364 20.213L20.011 22.137V22.137ZM23.647 24.177L20.294 22.254L23.647 20.354L27 22.253L23.647 24.177ZM27.284 26.252L23.931 24.329L27.284 22.429L30.637 24.328L27.284 26.252V26.252ZM16.367 15.964L13.014 14.041L16.367 12.141L19.721 14.04L16.367 15.964V15.964ZM19.983 18.026L16.63 16.102L19.983 14.202L23.337 16.101L19.983 18.025V18.026ZM23.618 20.063C23.618 20.063 20.265 18.138 20.265 18.14L23.618 16.239L26.971 18.139L23.618 20.063ZM27.254 22.103L23.901 20.18L27.254 18.28L30.607 20.179L27.254 22.103V22.103ZM30.891 24.178C30.891 24.178 27.538 22.253 27.538 22.255L30.891 20.355L34.244 22.253L30.891 24.178V24.178ZM20.061 13.835C20.061 13.835 16.707 11.91 16.707 11.912L20.06 10.011L23.413 11.911L20.06 13.835H20.061V13.835ZM23.676 15.896C23.676 15.896 20.323 13.972 20.323 13.974L23.676 12.073L27.03 13.972L23.676 15.896ZM27.311 17.933C27.311 17.933 23.958 16.009 23.958 16.011L27.311 14.109L30.664 16.009L27.311 17.933ZM30.947 19.973C30.947 19.973 27.594 18.049 27.594 18.051L30.947 16.15L34.3 18.05L30.947 19.973V19.973ZM34.584 22.048C34.584 22.048 31.231 20.124 31.231 20.126L34.584 18.225L37.937 20.124L34.584 22.048Z",
332
- fill: "#30B4C0"
344
+ fill: "#30B4C0",
345
+ d: "m21.11 13.38 18.87 10.69L20 35.394.02 24.07l9.826-5.566a9 9 0 0 0 1.374.344l-1.793 1.016c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-1.815-1.028c.134-.023.266-.05.398-.08l1.671.958 3.354-1.924-1.373-.777c.1-.079.198-.16.294-.243.497.286.965.555 1.22.7l.147.085.052.03 3.352-1.924-2.68-1.52a9.068 9.068 0 0 0 .357-.76Zm-1.203 16.938-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm3.746-2.05-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm-7.383-.025-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.011-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.014-3.353 1.9L27.304 30l3.353-1.924-3.353-1.9ZM9 24.166l-3.354 1.9L9 27.989l3.353-1.924L9 24.165Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm14.53-.05-3.353 1.9 3.353 1.924 3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-10.92-1.987-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.9Zm-7.364-.013L2.03 24.005c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.041-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.243-.033-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.33-.055-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9ZM9.13 20.053l-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.027-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.242-.038-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.329-.09L27.614 21.8c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.947-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.9Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Z"
333
346
  }), /*#__PURE__*/React.createElement("path", {
334
- fillRule: "evenodd",
335
- clipRule: "evenodd",
336
- d: "M12.352 3.14533C12.4221 3.2154 12.4698 3.3047 12.489 3.40192C12.5082 3.49913 12.4981 3.59987 12.46 3.69133C12.1552 4.42281 11.9989 5.20757 12 6C12 7.5913 12.6321 9.11742 13.7574 10.2426C14.8826 11.3679 16.4087 12 18 12C18.7924 12.0011 19.5772 11.8448 20.3087 11.54C20.4001 11.5019 20.5007 11.4919 20.5978 11.5111C20.695 11.5303 20.7842 11.5779 20.8543 11.6478C20.9243 11.7178 20.972 11.807 20.9913 11.9041C21.0106 12.0012 21.0006 12.1019 20.9627 12.1933C20.4307 13.4688 19.5332 14.5584 18.3831 15.3248C17.2331 16.0911 15.882 16.5 14.5 16.5C10.634 16.5 7.5 13.366 7.5 9.5C7.5 6.588 9.278 4.092 11.8067 3.03733C11.898 2.99935 11.9986 2.98933 12.0957 3.00856C12.1928 3.02778 12.282 3.07538 12.352 3.14533V3.14533Z",
337
- fill: "#30B4C0"
338
- }), /*#__PURE__*/React.createElement("g", {
339
- clipPath: "url(#clip0_1_2)"
340
- }, /*#__PURE__*/React.createElement("path", {
341
- fillRule: "evenodd",
342
- clipRule: "evenodd",
343
- d: "M25.5 4.25C25.5815 4.25002 25.6607 4.27657 25.7258 4.32565C25.7908 4.37473 25.8381 4.44365 25.8605 4.522L26.267 5.945C26.3545 6.25146 26.5187 6.53055 26.7441 6.75591C26.9695 6.98128 27.2485 7.14548 27.555 7.233L28.978 7.6395C29.0563 7.66193 29.1252 7.70924 29.1742 7.77428C29.2232 7.83932 29.2497 7.91855 29.2497 8C29.2497 8.08145 29.2232 8.16068 29.1742 8.22572C29.1252 8.29076 29.0563 8.33807 28.978 8.3605L27.555 8.767C27.2485 8.85452 26.9695 9.01872 26.7441 9.24409C26.5187 9.46945 26.3545 9.74854 26.267 10.055L25.8605 11.478C25.8381 11.5563 25.7908 11.6252 25.7257 11.6742C25.6607 11.7232 25.5815 11.7497 25.5 11.7497C25.4186 11.7497 25.3393 11.7232 25.2743 11.6742C25.2092 11.6252 25.1619 11.5563 25.1395 11.478L24.733 10.055C24.6455 9.74854 24.4813 9.46945 24.2559 9.24409C24.0306 9.01872 23.7515 8.85452 23.445 8.767L22.022 8.3605C21.9437 8.33807 21.8748 8.29076 21.8258 8.22572C21.7768 8.16068 21.7503 8.08145 21.7503 8C21.7503 7.91855 21.7768 7.83932 21.8258 7.77428C21.8748 7.70924 21.9437 7.66193 22.022 7.6395L23.445 7.233C23.7515 7.14548 24.0306 6.98128 24.2559 6.75591C24.4813 6.53055 24.6455 6.25146 24.733 5.945L25.1395 4.522C25.1619 4.44365 25.2092 4.37473 25.2742 4.32565C25.3393 4.27657 25.4185 4.25002 25.5 4.25ZM30 2.75C30.0837 2.74995 30.1649 2.77788 30.2309 2.82934C30.2968 2.8808 30.3437 2.95284 30.364 3.034L30.493 3.552C30.611 4.022 30.978 4.389 31.448 4.507L31.966 4.636C32.0473 4.65614 32.1195 4.70293 32.1712 4.7689C32.2228 4.83487 32.2508 4.91623 32.2508 5C32.2508 5.08377 32.2228 5.16513 32.1712 5.2311C32.1195 5.29707 32.0473 5.34386 31.966 5.364L31.448 5.493C30.978 5.611 30.611 5.978 30.493 6.448L30.364 6.966C30.3439 7.04731 30.2971 7.11954 30.2311 7.17117C30.1651 7.22279 30.0838 7.25084 30 7.25084C29.9162 7.25084 29.8349 7.22279 29.7689 7.17117C29.7029 7.11954 29.6561 7.04731 29.636 6.966L29.507 6.448C29.4493 6.21721 29.33 6.00645 29.1618 5.83824C28.9936 5.67003 28.7828 5.55069 28.552 5.493L28.034 5.364C27.9527 5.34386 27.8805 5.29707 27.8288 5.2311C27.7772 5.16513 27.7492 5.08377 27.7492 5C27.7492 4.91623 27.7772 4.83487 27.8288 4.7689C27.8805 4.70293 27.9527 4.65614 28.034 4.636L28.552 4.507C28.7828 4.44931 28.9936 4.32997 29.1618 4.16176C29.33 3.99355 29.4493 3.78279 29.507 3.552L29.636 3.034C29.6563 2.95284 29.7032 2.8808 29.7691 2.82934C29.8351 2.77788 29.9163 2.74995 30 2.75V2.75ZM29.25 9.5C29.3288 9.49995 29.4055 9.52471 29.4694 9.57075C29.5333 9.61679 29.5811 9.68178 29.606 9.7565L29.803 10.348C29.878 10.5715 30.053 10.7475 30.277 10.822L30.8685 11.0195C30.943 11.0445 31.0077 11.0923 31.0536 11.1561C31.0995 11.2198 31.1242 11.2964 31.1242 11.375C31.1242 11.4536 31.0995 11.5302 31.0536 11.5939C31.0077 11.6577 30.943 11.7055 30.8685 11.7305L30.277 11.928C30.0535 12.003 29.8775 12.178 29.803 12.402L29.6055 12.9935C29.5805 13.068 29.5327 13.1327 29.4689 13.1786C29.4052 13.2245 29.3286 13.2491 29.25 13.2491C29.1714 13.2491 29.0949 13.2245 29.0311 13.1786C28.9673 13.1327 28.9195 13.068 28.8945 12.9935L28.697 12.402C28.6602 12.2916 28.5982 12.1914 28.5159 12.1091C28.4336 12.0268 28.3334 11.9648 28.223 11.928L27.6315 11.7305C27.557 11.7055 27.4923 11.6577 27.4464 11.5939C27.4005 11.5302 27.3759 11.4536 27.3759 11.375C27.3759 11.2964 27.4005 11.2198 27.4464 11.1561C27.4923 11.0923 27.557 11.0445 27.6315 11.0195L28.223 10.822C28.4465 10.747 28.6225 10.572 28.697 10.348L28.8945 9.7565C28.9194 9.68186 28.9671 9.61693 29.0309 9.57089C29.0947 9.52486 29.1713 9.50006 29.25 9.5V9.5Z",
344
- fill: "#30B4C0"
345
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
346
- id: "clip0_1_2"
347
- }, /*#__PURE__*/React.createElement("rect", {
348
- width: "12",
349
- height: "12",
350
- fill: "white",
351
- transform: "translate(21 2)"
352
- })))),
347
+ fill: "#97D9DF",
348
+ d: "M11.11 4.753a.5.5 0 0 1 .108.546 6 6 0 0 0 7.849 7.849.5.5 0 0 1 .654.653 7.002 7.002 0 0 1-13.463-2.693 7.001 7.001 0 0 1 4.307-6.463.5.5 0 0 1 .545.108ZM24 6.37a.375.375 0 0 1 .36.273l.407 1.423a1.874 1.874 0 0 0 1.288 1.288l1.423.406a.375.375 0 0 1 0 .721l-1.423.407a1.875 1.875 0 0 0-1.288 1.288l-.407 1.423a.374.374 0 0 1-.72 0l-.407-1.423a1.874 1.874 0 0 0-1.288-1.288l-1.423-.407a.375.375 0 0 1 0-.72l1.423-.407a1.874 1.874 0 0 0 1.288-1.288l.406-1.423A.375.375 0 0 1 24 6.37Zm4.5-1.5a.375.375 0 0 1 .364.285l.129.518c.118.47.485.837.955.955l.518.129a.375.375 0 0 1 0 .728l-.518.129c-.47.118-.837.485-.955.955l-.129.518a.375.375 0 0 1-.728 0l-.129-.518a1.313 1.313 0 0 0-.955-.955l-.518-.13a.375.375 0 0 1 0-.727l.518-.13a1.312 1.312 0 0 0 .955-.954l.129-.518a.375.375 0 0 1 .364-.284Zm-.75 6.75a.375.375 0 0 1 .356.257l.197.592c.075.223.25.4.474.474l.591.197a.375.375 0 0 1 0 .711l-.591.198a.75.75 0 0 0-.474.474l-.198.591a.375.375 0 0 1-.71 0l-.198-.591a.75.75 0 0 0-.474-.474l-.591-.198a.375.375 0 0 1 0-.71l.591-.198a.75.75 0 0 0 .474-.474l.198-.592a.375.375 0 0 1 .355-.256Z"
349
+ }))),
353
350
  mapTypeNightInactive: /*#__PURE__*/React.createElement("svg", {
351
+ xmlns: "http://www.w3.org/2000/svg",
354
352
  width: "40",
355
- height: "40",
356
- viewBox: "0 0 40 40",
353
+ height: "40"
354
+ }, /*#__PURE__*/React.createElement("g", {
357
355
  fill: "none",
358
- xmlns: "http://www.w3.org/2000/svg"
356
+ fillRule: "evenodd"
359
357
  }, /*#__PURE__*/React.createElement("path", {
360
- fillRule: "evenodd",
361
- clipRule: "evenodd",
362
- d: "M0.0199966 20.2L20 31.522L39.98 20.2L20 8.878L0.0199966 20.2ZM5.383 22.056C5.383 22.056 2.03 20.132 2.03 20.134L5.383 18.232L8.737 20.132L5.383 22.056V22.056ZM9 24.118L5.646 22.195L9 20.295L12.353 22.194L9 24.118ZM12.634 26.155C12.634 26.155 9.281 24.23 9.281 24.232L12.634 22.332L15.987 24.23L12.634 26.155V26.155ZM16.27 28.195L12.917 26.272L16.27 24.372L19.623 26.271L16.27 28.195V28.195ZM19.907 30.27L16.554 28.347L19.907 26.447L23.261 28.346L19.907 30.27ZM9.13 20.006C9.13 20.006 5.777 18.082 5.777 18.084L9.13 16.182L12.484 18.082L9.13 20.006V20.006ZM12.747 22.068L9.393 20.145L12.747 18.245L16.1 20.144L12.747 22.068V22.068ZM16.381 24.105L13.028 22.182L16.381 20.282L19.734 22.181L16.381 24.105V24.105ZM20.017 26.145C20.017 26.145 16.664 24.221 16.664 24.223L20.017 22.321L23.37 24.221L20.017 26.145V26.145ZM23.654 28.22L20.3 26.297L23.653 24.397L27.007 26.296L23.653 28.22H23.654V28.22ZM12.78 17.916C12.78 17.916 9.427 15.992 9.427 15.994L12.78 14.092L16.133 15.992L12.78 17.916ZM16.396 19.978L13.043 18.055L16.396 16.155L19.749 18.054L16.396 19.978ZM20.031 22.015C20.031 22.015 16.678 20.09 16.678 20.092L20.031 18.191L23.384 20.091L20.031 22.015V22.015ZM23.667 24.055L20.314 22.132L23.667 20.232L27.02 22.131L23.667 24.055ZM27.304 26.13L23.951 24.207L27.304 22.307L30.657 24.206L27.304 26.13V26.13ZM16.387 15.842L13.034 13.919L16.387 12.019L19.741 13.918L16.387 15.842V15.842ZM20.003 17.904L16.65 15.98L20.003 14.08L23.357 15.979L20.003 17.903V17.904ZM23.638 19.941C23.638 19.941 20.285 18.016 20.285 18.018L23.638 16.117L26.991 18.017L23.638 19.941ZM27.274 21.981L23.921 20.058L27.274 18.158L30.627 20.057L27.274 21.981V21.981ZM30.911 24.056C30.911 24.056 27.558 22.131 27.558 22.133L30.911 20.233L34.264 22.131L30.911 24.056V24.056ZM20.081 13.713C20.081 13.713 16.727 11.788 16.727 11.79L20.08 9.889L23.433 11.789L20.08 13.713H20.081V13.713ZM23.696 15.774C23.696 15.774 20.343 13.85 20.343 13.852L23.696 11.951L27.05 13.85L23.696 15.774ZM27.331 17.811C27.331 17.811 23.978 15.887 23.978 15.889L27.331 13.987L30.684 15.887L27.331 17.811ZM30.967 19.851C30.967 19.851 27.614 17.927 27.614 17.929L30.967 16.028L34.32 17.928L30.967 19.851V19.851ZM34.604 21.926C34.604 21.926 31.251 20.002 31.251 20.004L34.604 18.103L37.957 20.002L34.604 21.926Z",
363
- fill: "#939BA8"
358
+ fill: "#939BA8",
359
+ d: "M21.11 13.379 39.98 24.07 20 35.393.02 24.07l9.825-5.567a9 9 0 0 0 1.375.345l-1.793 1.016c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-1.815-1.028c.134-.023.266-.05.398-.08l1.671.958 3.354-1.924-1.373-.777c.1-.079.198-.16.294-.243.497.286.965.555 1.22.7l.147.085.052.03 3.352-1.924-2.68-1.52a9.068 9.068 0 0 0 .358-.761Zm-1.203 16.939-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm3.746-2.05-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Zm-7.383-.025-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-3.636-2.04-3.353 1.9c0-.002 3.353 1.923 3.353 1.923l3.353-1.925-3.353-1.898Zm7.383-.011-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm7.287-.014-3.353 1.9L27.304 30l3.353-1.924-3.353-1.9ZM9 24.166l-3.354 1.9L9 27.989l3.353-1.924L9 24.165Zm7.381-.013-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm14.53-.05-3.353 1.9 3.353 1.924 3.353-1.925-3.353-1.898Zm-7.244 0-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm-10.92-1.987-3.354 1.9 3.354 1.923 3.353-1.924-3.353-1.9Zm-7.364-.013L2.03 24.005c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm14.648-.041-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.243-.033-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.33-.055-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9ZM9.13 20.053l-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.354-1.924-3.354-1.9Zm7.266-.027-3.353 1.9 3.353 1.923 3.353-1.924-3.353-1.9Zm7.242-.038-3.353 1.9 3.353 1.924 3.353-1.924-3.353-1.9Zm7.329-.09L27.614 21.8c0-.002 3.353 1.922 3.353 1.922l3.353-1.923-3.353-1.9Zm-10.964-1.947-3.353 1.9 3.353 1.924 3.354-1.925-3.354-1.9Zm7.328-.093-3.353 1.902c0-.002 3.353 1.922 3.353 1.922l3.353-1.924-3.353-1.9Zm-3.635-2.036-3.353 1.9 3.353 1.923 3.354-1.924-3.354-1.9Z"
364
360
  }), /*#__PURE__*/React.createElement("path", {
365
- fillRule: "evenodd",
366
- clipRule: "evenodd",
367
- d: "M12.352 3.14533C12.4221 3.2154 12.4698 3.3047 12.489 3.40192C12.5082 3.49913 12.4981 3.59987 12.46 3.69133C12.1552 4.42281 11.9989 5.20757 12 6C12 7.5913 12.6321 9.11742 13.7574 10.2426C14.8826 11.3679 16.4087 12 18 12C18.7924 12.0011 19.5772 11.8448 20.3087 11.54C20.4001 11.5019 20.5007 11.4919 20.5978 11.5111C20.695 11.5303 20.7842 11.5779 20.8543 11.6478C20.9243 11.7178 20.972 11.807 20.9913 11.9041C21.0106 12.0012 21.0006 12.1019 20.9627 12.1933C20.4307 13.4688 19.5332 14.5584 18.3831 15.3248C17.2331 16.0911 15.882 16.5 14.5 16.5C10.634 16.5 7.5 13.366 7.5 9.5C7.5 6.588 9.278 4.092 11.8067 3.03733C11.898 2.99935 11.9986 2.98933 12.0957 3.00856C12.1928 3.02778 12.282 3.07538 12.352 3.14533V3.14533Z",
368
- fill: "#939BA8"
369
- }), /*#__PURE__*/React.createElement("g", {
370
- clipPath: "url(#clip0_1_4)"
371
- }, /*#__PURE__*/React.createElement("path", {
372
- fillRule: "evenodd",
373
- clipRule: "evenodd",
374
- d: "M25.5 4.25C25.5815 4.25002 25.6607 4.27657 25.7258 4.32565C25.7908 4.37473 25.8381 4.44365 25.8605 4.522L26.267 5.945C26.3545 6.25146 26.5187 6.53055 26.7441 6.75591C26.9694 6.98128 27.2485 7.14548 27.555 7.233L28.978 7.6395C29.0563 7.66193 29.1252 7.70924 29.1742 7.77428C29.2232 7.83932 29.2497 7.91855 29.2497 8C29.2497 8.08145 29.2232 8.16068 29.1742 8.22572C29.1252 8.29076 29.0563 8.33807 28.978 8.3605L27.555 8.767C27.2485 8.85452 26.9694 9.01872 26.7441 9.24409C26.5187 9.46945 26.3545 9.74854 26.267 10.055L25.8605 11.478C25.8381 11.5563 25.7908 11.6252 25.7257 11.6742C25.6607 11.7232 25.5814 11.7497 25.5 11.7497C25.4185 11.7497 25.3393 11.7232 25.2743 11.6742C25.2092 11.6252 25.1619 11.5563 25.1395 11.478L24.733 10.055C24.6455 9.74854 24.4813 9.46945 24.2559 9.24409C24.0305 9.01872 23.7515 8.85452 23.445 8.767L22.022 8.3605C21.9437 8.33807 21.8748 8.29076 21.8258 8.22572C21.7768 8.16068 21.7503 8.08145 21.7503 8C21.7503 7.91855 21.7768 7.83932 21.8258 7.77428C21.8748 7.70924 21.9437 7.66193 22.022 7.6395L23.445 7.233C23.7515 7.14548 24.0305 6.98128 24.2559 6.75591C24.4813 6.53055 24.6455 6.25146 24.733 5.945L25.1395 4.522C25.1619 4.44365 25.2092 4.37473 25.2742 4.32565C25.3393 4.27657 25.4185 4.25002 25.5 4.25ZM30 2.75C30.0837 2.74995 30.1649 2.77788 30.2309 2.82934C30.2968 2.8808 30.3437 2.95284 30.364 3.034L30.493 3.552C30.611 4.022 30.978 4.389 31.448 4.507L31.966 4.636C32.0473 4.65614 32.1195 4.70293 32.1712 4.7689C32.2228 4.83487 32.2508 4.91623 32.2508 5C32.2508 5.08377 32.2228 5.16513 32.1712 5.2311C32.1195 5.29707 32.0473 5.34386 31.966 5.364L31.448 5.493C30.978 5.611 30.611 5.978 30.493 6.448L30.364 6.966C30.3439 7.04731 30.2971 7.11954 30.2311 7.17117C30.1651 7.22279 30.0838 7.25084 30 7.25084C29.9162 7.25084 29.8349 7.22279 29.7689 7.17117C29.7029 7.11954 29.6561 7.04731 29.636 6.966L29.507 6.448C29.4493 6.21721 29.33 6.00645 29.1618 5.83824C28.9935 5.67003 28.7828 5.55069 28.552 5.493L28.034 5.364C27.9527 5.34386 27.8805 5.29707 27.8288 5.2311C27.7772 5.16513 27.7492 5.08377 27.7492 5C27.7492 4.91623 27.7772 4.83487 27.8288 4.7689C27.8805 4.70293 27.9527 4.65614 28.034 4.636L28.552 4.507C28.7828 4.44931 28.9935 4.32997 29.1618 4.16176C29.33 3.99355 29.4493 3.78279 29.507 3.552L29.636 3.034C29.6563 2.95284 29.7032 2.8808 29.7691 2.82934C29.8351 2.77788 29.9163 2.74995 30 2.75V2.75ZM29.25 9.5C29.3288 9.49995 29.4055 9.52471 29.4694 9.57075C29.5333 9.61679 29.5811 9.68178 29.606 9.7565L29.803 10.348C29.878 10.5715 30.053 10.7475 30.277 10.822L30.8685 11.0195C30.943 11.0445 31.0077 11.0923 31.0536 11.1561C31.0995 11.2198 31.1241 11.2964 31.1241 11.375C31.1241 11.4536 31.0995 11.5302 31.0536 11.5939C31.0077 11.6577 30.943 11.7055 30.8685 11.7305L30.277 11.928C30.0535 12.003 29.8775 12.178 29.803 12.402L29.6055 12.9935C29.5805 13.068 29.5327 13.1327 29.4689 13.1786C29.4051 13.2245 29.3286 13.2491 29.25 13.2491C29.1714 13.2491 29.0948 13.2245 29.0311 13.1786C28.9673 13.1327 28.9195 13.068 28.8945 12.9935L28.697 12.402C28.6602 12.2916 28.5982 12.1914 28.5159 12.1091C28.4336 12.0268 28.3334 11.9648 28.223 11.928L27.6315 11.7305C27.557 11.7055 27.4923 11.6577 27.4464 11.5939C27.4005 11.5302 27.3758 11.4536 27.3758 11.375C27.3758 11.2964 27.4005 11.2198 27.4464 11.1561C27.4923 11.0923 27.557 11.0445 27.6315 11.0195L28.223 10.822C28.4465 10.747 28.6225 10.572 28.697 10.348L28.8945 9.7565C28.9194 9.68186 28.9671 9.61693 29.0309 9.57089C29.0947 9.52486 29.1713 9.50006 29.25 9.5V9.5Z",
375
- fill: "#939BA8"
376
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
377
- id: "clip0_1_4"
378
- }, /*#__PURE__*/React.createElement("rect", {
379
- width: "12",
380
- height: "12",
381
- fill: "white",
382
- transform: "translate(21 2)"
383
- })))),
361
+ fill: "#C9CDD3",
362
+ d: "M11.11 4.753a.5.5 0 0 1 .108.546 6 6 0 0 0 7.849 7.849.5.5 0 0 1 .654.653 7.002 7.002 0 0 1-13.463-2.693 7.001 7.001 0 0 1 4.307-6.463.5.5 0 0 1 .545.108ZM24 6.37a.375.375 0 0 1 .36.273l.407 1.423a1.874 1.874 0 0 0 1.288 1.288l1.423.406a.375.375 0 0 1 0 .721l-1.423.407a1.875 1.875 0 0 0-1.288 1.288l-.407 1.423a.374.374 0 0 1-.72 0l-.407-1.423a1.874 1.874 0 0 0-1.288-1.288l-1.423-.407a.375.375 0 0 1 0-.72l1.423-.407a1.874 1.874 0 0 0 1.288-1.288l.406-1.423A.375.375 0 0 1 24 6.37Zm4.5-1.5a.375.375 0 0 1 .364.285l.129.518c.118.47.485.837.955.955l.518.129a.375.375 0 0 1 0 .728l-.518.129c-.47.118-.837.485-.955.955l-.129.518a.375.375 0 0 1-.728 0l-.129-.518a1.313 1.313 0 0 0-.955-.955l-.518-.13a.375.375 0 0 1 0-.727l.518-.13a1.312 1.312 0 0 0 .955-.954l.129-.518a.375.375 0 0 1 .364-.284Zm-.75 6.75a.375.375 0 0 1 .356.257l.197.592c.075.223.25.4.474.474l.591.197a.375.375 0 0 1 0 .711l-.591.198a.75.75 0 0 0-.474.474l-.198.591a.375.375 0 0 1-.71 0l-.198-.591a.75.75 0 0 0-.474-.474l-.591-.198a.375.375 0 0 1 0-.71l.591-.198a.75.75 0 0 0 .474-.474l.198-.592a.375.375 0 0 1 .355-.256Z"
363
+ }))),
384
364
  noClusterActive: /*#__PURE__*/React.createElement("svg", {
385
365
  xmlns: "http://www.w3.org/2000/svg",
386
366
  width: "40",
@@ -10,14 +10,14 @@ export var useUpdateProp = function useUpdateProp(mapObject, propSetter, value)
10
10
  };
11
11
  export var useUpdateEventListenerMap = function useUpdateEventListenerMap(mapObject, eventListenerMap) {
12
12
  var _useContext = useContext(MapContext),
13
- map = _useContext.map;
13
+ api = _useContext.api;
14
14
  useEffect(function () {
15
15
  if (!mapObject) {
16
16
  return;
17
17
  }
18
- addEventListenerMap(mapObject, eventListenerMap, map);
18
+ addEventListenerMap(mapObject, eventListenerMap, api.map);
19
19
  return function () {
20
20
  removeEventListenerMap(mapObject);
21
21
  };
22
- }, [eventListenerMap, mapObject, map]);
22
+ }, [eventListenerMap, mapObject, api.map]);
23
23
  };
@@ -1,22 +1,22 @@
1
1
  import React from 'react';
2
2
  import PropTypes from 'prop-types';
3
3
  import classNames from 'classnames';
4
- var getColorMapping = function getColorMapping() {
5
- var colorClass = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
6
- switch (colorClass) {
7
- case 'color-a':
8
- return 'bg-map-marker-asset';
9
- case 'color-b':
10
- return 'bg-map-marker-geofence';
11
- case 'color-c':
12
- return 'bg-map-marker-poi';
4
+ var getColorMapping = function getColorMapping(markerColor) {
5
+ switch (markerColor) {
6
+ case 'bg-map-marker-asset':
7
+ return 'map-marker-type-asset';
8
+ case 'bg-map-marker-poi':
9
+ return 'map-marker-type-poi';
10
+ case 'bg-map-marker-geofence':
11
+ return 'map-marker-type-geofence';
12
+ case 'bg-map-marker-route':
13
+ return 'map-marker-type-route';
13
14
  default:
14
- return null;
15
+ return 'map-marker-type-asset';
15
16
  }
16
17
  };
17
18
  var ClusterMapMarker = function ClusterMapMarker(props) {
18
- var colorClass = props.colorClass,
19
- count = props.count,
19
+ var count = props.count,
20
20
  exceptionCount = props.exceptionCount,
21
21
  markerColor = props.markerColor,
22
22
  warningCount = props.warningCount,
@@ -24,11 +24,8 @@ var ClusterMapMarker = function ClusterMapMarker(props) {
24
24
  clickable = props.clickable,
25
25
  iconName = props.iconName;
26
26
  var classes = classNames(active && 'active', 'rio-map-marker', 'rio-map-marker-center-center', !clickable && 'pointer-events-none');
27
- var clusterClasses = classNames('rio-map-cluster-cirlce', colorClass);
28
- var baseColor = getColorMapping(colorClass) || markerColor;
29
- var markerBackgroundColor = active ? 'bg-map-marker-active' : baseColor;
30
- var markerBorderColor = baseColor.replace('bg-', 'border-color-');
31
- var markerTextColor = active ? baseColor.replace('bg-', 'text-color-') : 'color-map-marker-text';
27
+ var clusterClasses = classNames('rio-map-cluster-cirlce');
28
+ var markerType = getColorMapping(markerColor);
32
29
  return /*#__PURE__*/React.createElement("div", {
33
30
  className: classes
34
31
  }, /*#__PURE__*/React.createElement("div", {
@@ -36,7 +33,7 @@ var ClusterMapMarker = function ClusterMapMarker(props) {
36
33
  }, /*#__PURE__*/React.createElement("div", {
37
34
  className: 'rio-map-cluster'
38
35
  }, /*#__PURE__*/React.createElement("div", {
39
- className: "".concat(clusterClasses, " ").concat(markerBackgroundColor, " ").concat(markerBorderColor, " ").concat(markerTextColor)
36
+ className: "".concat(clusterClasses, " ").concat(markerType, " ").concat(active ? 'active' : '')
40
37
  }, /*#__PURE__*/React.createElement("div", {
41
38
  className: 'rio-map-cluster-content'
42
39
  }, iconName && /*#__PURE__*/React.createElement("div", {
@@ -62,8 +59,7 @@ ClusterMapMarker.propTypes = {
62
59
  exceptionCount: PropTypes.number,
63
60
  clickable: PropTypes.bool,
64
61
  active: PropTypes.bool,
65
- colorClass: PropTypes.string,
66
- markerColor: PropTypes.string,
62
+ markerColor: PropTypes.oneOf(['bg-map-marker-asset', 'bg-map-marker-poi', 'bg-map-marker-route', 'bg-map-marker-geofence']),
67
63
  iconName: PropTypes.string
68
64
  };
69
65
  export default ClusterMapMarker;
@@ -9,18 +9,18 @@ var getIcons = function getIcons(iconNames) {
9
9
  });
10
10
  });
11
11
  };
12
- var getColorMapping = function getColorMapping() {
13
- var colorClass = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';
14
- var markerColor = arguments.length > 1 ? arguments[1] : undefined;
15
- switch (colorClass) {
16
- case 'color-a':
17
- return 'bg-map-marker-asset';
18
- case 'color-b':
19
- return 'bg-map-marker-geofence';
20
- case 'color-c':
21
- return 'bg-map-marker-poi';
12
+ var getColorMapping = function getColorMapping(markerColor) {
13
+ switch (markerColor) {
14
+ case 'bg-map-marker-asset':
15
+ return 'map-marker-type-asset';
16
+ case 'bg-map-marker-poi':
17
+ return 'map-marker-type-poi';
18
+ case 'bg-map-marker-geofence':
19
+ return 'map-marker-type-geofence';
20
+ case 'bg-map-marker-route':
21
+ return 'map-marker-type-route';
22
22
  default:
23
- return markerColor;
23
+ return 'map-marker-type-asset';
24
24
  }
25
25
  };
26
26
  var getMapDirection = function getMapDirection(moving, bearing, rotationStyle) {
@@ -32,7 +32,6 @@ var getMapDirection = function getMapDirection(moving, bearing, rotationStyle) {
32
32
  var SingleMapMarker = function SingleMapMarker(props) {
33
33
  var active = props.active,
34
34
  bearing = props.bearing,
35
- colorClass = props.colorClass,
36
35
  exceptionCount = props.exceptionCount,
37
36
  iconNames = props.iconNames,
38
37
  markerColor = props.markerColor,
@@ -42,31 +41,19 @@ var SingleMapMarker = function SingleMapMarker(props) {
42
41
  textColor = props.textColor,
43
42
  warningCount = props.warningCount,
44
43
  fixed = props.fixed;
45
-
46
- // TODO: check if we still need "colorClass"
47
-
48
- if (colorClass) {
49
- // warnung
50
- }
51
44
  var classes = classNames(active && 'active', 'rio-map-marker', 'rio-map-marker-bottom-center');
52
45
  var singleClasses = classNames('rio-map-single', fixed && 'fixed', moving && 'moving', !clickable && 'pointer-events-none', textColor);
53
46
  var rotationStyle = {
54
47
  transform: "rotate(".concat(bearing, "deg)")
55
48
  };
56
49
  var mapDirection = getMapDirection(moving, bearing, rotationStyle);
57
- var baseColor = getColorMapping(colorClass, markerColor);
58
-
59
- // const baseColorWithMode = isDarkMode ?
60
-
61
- var markerBackgroundColor = active ? 'bg-map-marker-active' : baseColor;
62
- var markerBorderColor = baseColor.replace('bg-', 'border-color-');
63
- var markerTextColor = active ? baseColor.replace('bg-', 'text-color-') : 'color-map-marker-text';
50
+ var markerType = getColorMapping(markerColor);
64
51
  return /*#__PURE__*/React.createElement("div", {
65
52
  className: classes
66
53
  }, /*#__PURE__*/React.createElement("div", {
67
54
  className: "rio-map-marker-translate"
68
55
  }, /*#__PURE__*/React.createElement("div", {
69
- className: "".concat(singleClasses, " ").concat(markerBackgroundColor, " ").concat(markerBorderColor, " ").concat(markerTextColor)
56
+ className: "".concat(singleClasses, " ").concat(markerType, " ").concat(active ? 'active' : '')
70
57
  }, mapDirection, iconNames && getIcons(iconNames), /*#__PURE__*/React.createElement("div", {
71
58
  className: "rio-map-name"
72
59
  }, name && name), /*#__PURE__*/React.createElement("div", {
@@ -74,9 +61,9 @@ var SingleMapMarker = function SingleMapMarker(props) {
74
61
  }, exceptionCount > 0 && exceptionCount), /*#__PURE__*/React.createElement("div", {
75
62
  className: "rio-map-bubble warning"
76
63
  }, warningCount > 0 && warningCount)), /*#__PURE__*/React.createElement("div", {
77
- className: "rio-map-position-arrow ".concat(baseColor)
64
+ className: "rio-map-position-arrow"
78
65
  }), /*#__PURE__*/React.createElement("div", {
79
- className: "rio-map-position ".concat(markerBorderColor)
66
+ className: "rio-map-position"
80
67
  })));
81
68
  };
82
69
  SingleMapMarker.defaultProps = {
@@ -95,8 +82,7 @@ SingleMapMarker.propTypes = {
95
82
  fixed: PropTypes.bool,
96
83
  clickable: PropTypes.bool,
97
84
  iconNames: PropTypes.arrayOf(PropTypes.string),
98
- colorClass: PropTypes.string,
99
85
  moving: PropTypes.bool,
100
- markerColor: PropTypes.string
86
+ markerColor: PropTypes.oneOf(['bg-map-marker-asset', 'bg-map-marker-poi', 'bg-map-marker-route', 'bg-map-marker-geofence'])
101
87
  };
102
88
  export default SingleMapMarker;
@@ -1,13 +1,14 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
- var _excluded = ["min", "max", "step", "value", "onValueChanged", "disabled", "bsSize", "className", "unit", "inputAddon", "digitPrecision", "placeholder"];
4
+ var _excluded = ["min", "max", "step", "value", "onChange", "onValueChanged", "disabled", "bsSize", "className", "unit", "inputAddon", "digitPrecision", "placeholder"];
5
5
  import React, { useState, useRef, useEffect, forwardRef } from 'react';
6
6
  import PropTypes from 'prop-types';
7
7
  import classNames from 'classnames';
8
8
  import NumberInput, { defaultProps, convertNonIntegerToDefault } from '../numberInput/NumberInput';
9
9
  var INITIAL_TICK = 700;
10
10
  var TICK_TIME = 50;
11
+ var DEFAULT_DIGIT_PRECISION = 3;
11
12
  var NumberControl = /*#__PURE__*/forwardRef(function (props, ref) {
12
13
  var _props$min = props.min,
13
14
  min = _props$min === void 0 ? defaultProps.min : _props$min,
@@ -15,8 +16,8 @@ var NumberControl = /*#__PURE__*/forwardRef(function (props, ref) {
15
16
  max = _props$max === void 0 ? defaultProps.max : _props$max,
16
17
  _props$step = props.step,
17
18
  step = _props$step === void 0 ? defaultProps.step : _props$step,
18
- _props$value = props.value,
19
- value = _props$value === void 0 ? defaultProps.value : _props$value,
19
+ value = props.value,
20
+ onChange = props.onChange,
20
21
  _props$onValueChanged = props.onValueChanged,
21
22
  onValueChanged = _props$onValueChanged === void 0 ? function () {} : _props$onValueChanged,
22
23
  disabled = props.disabled,
@@ -25,9 +26,12 @@ var NumberControl = /*#__PURE__*/forwardRef(function (props, ref) {
25
26
  unit = props.unit,
26
27
  inputAddon = props.inputAddon,
27
28
  _props$digitPrecision = props.digitPrecision,
28
- digitPrecision = _props$digitPrecision === void 0 ? 3 : _props$digitPrecision,
29
+ digitPrecision = _props$digitPrecision === void 0 ? DEFAULT_DIGIT_PRECISION : _props$digitPrecision,
29
30
  placeholder = props.placeholder,
30
31
  remainingProps = _objectWithoutProperties(props, _excluded);
32
+
33
+ // Note, "onChange" should replace "onValueChanged" in the future but it's widely used
34
+ var callback = onChange || onValueChanged;
31
35
  var timeout = useRef();
32
36
  var _useState = useState(false),
33
37
  _useState2 = _slicedToArray(_useState, 2),
@@ -63,7 +67,7 @@ var NumberControl = /*#__PURE__*/forwardRef(function (props, ref) {
63
67
  // Notify external component if internal value has changed
64
68
  useEffect(function () {
65
69
  if (internalValue !== value) {
66
- onValueChanged(internalValue);
70
+ callback(internalValue);
67
71
  }
68
72
  }, [internalValue]);
69
73
  useEffect(function () {
@@ -132,7 +136,7 @@ var NumberControl = /*#__PURE__*/forwardRef(function (props, ref) {
132
136
  if (value !== undefined && !(isHoldingDownDec && isHoldingDownInc)) {
133
137
  setInternalValue(Number(value));
134
138
  }
135
- onValueChanged(value);
139
+ callback(value);
136
140
  };
137
141
  var classes = classNames('NumberControl', 'form-group', className);
138
142
  var inputGroupClassNames = classNames('input-group', bsSize === 'sm' && 'input-group-sm', bsSize === 'lg' && 'input-group-lg');
@@ -151,7 +155,8 @@ var NumberControl = /*#__PURE__*/forwardRef(function (props, ref) {
151
155
  value: internalValue,
152
156
  step: step,
153
157
  disabled: disabled,
154
- onValueChanged: handleUpdatedNumberInputValue,
158
+ onChange: handleUpdatedNumberInputValue,
159
+ digitPrecision: digitPrecision,
155
160
  placeholder: placeholder
156
161
  }), /*#__PURE__*/React.createElement("div", {
157
162
  className: 'input-group-addon'
@@ -181,6 +186,7 @@ NumberControl.propTypes = {
181
186
  value: PropTypes.number,
182
187
  step: PropTypes.number,
183
188
  disabled: PropTypes.bool,
189
+ onChange: PropTypes.func,
184
190
  onValueChanged: PropTypes.func,
185
191
  bsSize: PropTypes.string,
186
192
  className: PropTypes.string,