@igo2/geo 18.0.0-next.9 → 18.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (255) hide show
  1. package/esm2022/lib/catalog/catalog-browser/catalog-browser-layer.component.mjs +4 -6
  2. package/esm2022/lib/catalog/catalog-browser/catalog-browser.component.mjs +13 -10
  3. package/esm2022/lib/datasource/shared/capabilities.service.mjs +1 -1
  4. package/esm2022/lib/datasource/shared/datasources/datasource.mjs +2 -1
  5. package/esm2022/lib/datasource/shared/datasources/wfs-datasource.interface.mjs +1 -1
  6. package/esm2022/lib/datasource/shared/datasources/wms-datasource.interface.mjs +1 -1
  7. package/esm2022/lib/directions/directions-buttons/directions-buttons.component.mjs +151 -102
  8. package/esm2022/lib/directions/directions-inputs/directions-inputs.component.mjs +177 -83
  9. package/esm2022/lib/directions/directions-results/directions-results.component.mjs +93 -44
  10. package/esm2022/lib/directions/directions-sources/directions-source.mjs +1 -1
  11. package/esm2022/lib/directions/directions-sources/osrm-directions-source.mjs +1 -1
  12. package/esm2022/lib/directions/directions.component.mjs +55 -31
  13. package/esm2022/lib/directions/shared/directions.enum.mjs +51 -7
  14. package/esm2022/lib/directions/shared/directions.interface.mjs +1 -1
  15. package/esm2022/lib/directions/shared/directions.service.mjs +122 -96
  16. package/esm2022/lib/directions/shared/directions.utils.mjs +281 -318
  17. package/esm2022/lib/directions/shared/store.mjs +2 -2
  18. package/esm2022/lib/download/download-button/download-button.component.mjs +8 -20
  19. package/esm2022/lib/download/shared/download.service.mjs +1 -1
  20. package/esm2022/lib/draw/draw/draw-popup.component.mjs +1 -1
  21. package/esm2022/lib/draw/draw/draw.component.mjs +5 -12
  22. package/esm2022/lib/draw/shared/draw.utils.mjs +1 -1
  23. package/esm2022/lib/environment/environment.interface.mjs +1 -1
  24. package/esm2022/lib/feature/feature-details/feature-details.component.mjs +2 -2
  25. package/esm2022/lib/feature/shared/feature-store.utils.mjs +7 -6
  26. package/esm2022/lib/feature/shared/feature.interfaces.mjs +1 -1
  27. package/esm2022/lib/feature/shared/store.mjs +1 -1
  28. package/esm2022/lib/feature/shared/strategies/geo-properties.mjs +3 -3
  29. package/esm2022/lib/feature/shared/strategies/in-map-extent.mjs +7 -4
  30. package/esm2022/lib/feature/shared/strategies/selection.mjs +5 -4
  31. package/esm2022/lib/filter/ogc-filter-button/ogc-filter-button.component.mjs +3 -3
  32. package/esm2022/lib/filter/ogc-filterable-item/ogc-filterable-item.component.mjs +2 -2
  33. package/esm2022/lib/filter/ogc-filterable-list/ogc-filterable-list-binding.directive.mjs +5 -3
  34. package/esm2022/lib/filter/ogc-filterable-list/ogc-filterable-list.component.mjs +1 -1
  35. package/esm2022/lib/filter/shared/filterable-datasource.pipe.mjs +8 -1
  36. package/esm2022/lib/filter/spatial-filter/spatial-filter-item/spatial-filter-item.component.mjs +1 -1
  37. package/esm2022/lib/filter/spatial-filter/spatial-filter-list/spatial-filter-list.component.mjs +2 -8
  38. package/esm2022/lib/filter/spatial-filter/spatial-filter-type/spatial-filter-type.component.mjs +2 -8
  39. package/esm2022/lib/filter/time-filter-button/time-filter-button.component.mjs +2 -2
  40. package/esm2022/lib/filter/time-filter-form/time-filter-form.component.mjs +13 -10
  41. package/esm2022/lib/filter/time-filter-item/time-filter-item.component.mjs +2 -2
  42. package/esm2022/lib/filter/time-filter-list/time-filter-list-binding.directive.mjs +4 -2
  43. package/esm2022/lib/filter/time-filter-list/time-filter-list.component.mjs +5 -16
  44. package/esm2022/lib/import-export/export-button/export-button.component.mjs +4 -17
  45. package/esm2022/lib/import-export/import-export/import-export.component.mjs +23 -12
  46. package/esm2022/lib/import-export/shared/export.service.mjs +7 -4
  47. package/esm2022/lib/import-export/shared/import.utils.mjs +3 -3
  48. package/esm2022/lib/layer/index.mjs +10 -5
  49. package/esm2022/lib/layer/layer-group/index.mjs +2 -0
  50. package/esm2022/lib/layer/layer-group/layer-group.component.mjs +103 -0
  51. package/esm2022/lib/layer/layer-item/layer-item.component.mjs +76 -161
  52. package/esm2022/lib/layer/layer-legend/layer-legend.component.mjs +5 -8
  53. package/esm2022/lib/layer/layer-legend-list/layer-legend-list-binding.directive.mjs +5 -6
  54. package/esm2022/lib/layer/layer-legend-list/layer-legend-list.component.mjs +14 -21
  55. package/esm2022/lib/layer/layer-list/index.mjs +1 -3
  56. package/esm2022/lib/layer/layer-list/layer-list.component.mjs +176 -785
  57. package/esm2022/lib/layer/layer-list-tool/index.mjs +1 -2
  58. package/esm2022/lib/layer/layer-list-tool/layer-list-tool.component.mjs +51 -84
  59. package/esm2022/lib/layer/layer-list-tool/layer-list-tool.interface.mjs +7 -2
  60. package/esm2022/lib/layer/layer-list-tool/layer-list-tool.service.mjs +56 -16
  61. package/esm2022/lib/layer/layer-search/index.mjs +2 -0
  62. package/esm2022/lib/layer/layer-search/layer-search.component.mjs +65 -0
  63. package/esm2022/lib/layer/layer-unavailable/index.mjs +3 -0
  64. package/esm2022/lib/layer/layer-unavailable/layer-unavailable-list/layer-unavailable-list.component.mjs +25 -0
  65. package/esm2022/lib/layer/layer-unavailable/layer-unavailable.component.mjs +35 -0
  66. package/esm2022/lib/layer/layer-viewer/index.mjs +3 -0
  67. package/esm2022/lib/layer/layer-viewer/layer-viewer.component.mjs +226 -0
  68. package/esm2022/lib/layer/layer-viewer/layer-viewer.interface.mjs +2 -0
  69. package/esm2022/lib/layer/layer-viewer-bottom-actions/index.mjs +2 -0
  70. package/esm2022/lib/layer/layer-viewer-bottom-actions/layer-viewer-bottom-actions.component.mjs +207 -0
  71. package/esm2022/lib/layer/layer-visibility-button/index.mjs +2 -0
  72. package/esm2022/lib/layer/layer-visibility-button/layer-visibility-button.component.mjs +83 -0
  73. package/esm2022/lib/layer/layer.module.mjs +51 -33
  74. package/esm2022/lib/layer/shared/index.mjs +2 -1
  75. package/esm2022/lib/layer/shared/layer-controller.mjs +316 -0
  76. package/esm2022/lib/layer/shared/layer-selection.mjs +38 -0
  77. package/esm2022/lib/layer/shared/layer.service.mjs +31 -16
  78. package/esm2022/lib/layer/shared/layers/any-layer.interface.mjs +1 -1
  79. package/esm2022/lib/layer/shared/layers/any-layer.mjs +1 -1
  80. package/esm2022/lib/layer/shared/layers/image-layer.interface.mjs +1 -1
  81. package/esm2022/lib/layer/shared/layers/image-layer.mjs +8 -3
  82. package/esm2022/lib/layer/shared/layers/index.mjs +6 -1
  83. package/esm2022/lib/layer/shared/layers/layer-base.mjs +199 -0
  84. package/esm2022/lib/layer/shared/layers/layer-group.interface.mjs +2 -0
  85. package/esm2022/lib/layer/shared/layers/layer-group.mjs +120 -0
  86. package/esm2022/lib/layer/shared/layers/layer.interface.mjs +1 -11
  87. package/esm2022/lib/layer/shared/layers/layer.mjs +108 -117
  88. package/esm2022/lib/layer/shared/layers/linked/index.mjs +4 -0
  89. package/esm2022/lib/layer/shared/layers/linked/linked-layer.interface.mjs +12 -0
  90. package/esm2022/lib/layer/shared/layers/linked/linked-layer.mjs +242 -0
  91. package/esm2022/lib/layer/shared/layers/linked/linked-layer.utils.mjs +70 -0
  92. package/esm2022/lib/layer/shared/layers/tile-layer.mjs +8 -3
  93. package/esm2022/lib/layer/shared/layers/vector-layer.mjs +9 -3
  94. package/esm2022/lib/layer/shared/layers/vectortile-layer.mjs +8 -3
  95. package/esm2022/lib/layer/utils/layer.utils.mjs +47 -1
  96. package/esm2022/lib/layer/utils/outputLegend.mjs +5 -1
  97. package/esm2022/lib/map/baselayers-switcher/baselayers-switcher.component.mjs +3 -3
  98. package/esm2022/lib/map/baselayers-switcher/mini-basemap.component.mjs +8 -6
  99. package/esm2022/lib/map/map-center/map-center.component.mjs +1 -2
  100. package/esm2022/lib/map/shared/controllers/geolocation.interface.mjs +1 -1
  101. package/esm2022/lib/map/shared/controllers/view.mjs +1 -1
  102. package/esm2022/lib/map/shared/hover-feature.directive.mjs +1 -9
  103. package/esm2022/lib/map/shared/linkedLayers.utils.mjs +113 -123
  104. package/esm2022/lib/map/shared/map.abstract.mjs +4 -3
  105. package/esm2022/lib/map/shared/map.mjs +7 -243
  106. package/esm2022/lib/map/shared/map.service.mjs +1 -1
  107. package/esm2022/lib/map/shared/map.utils.mjs +3 -3
  108. package/esm2022/lib/map/shared/mapOffline.directive.mjs +9 -5
  109. package/esm2022/lib/map/swipe-control/swipe-control.component.mjs +1 -3
  110. package/esm2022/lib/map/utils/index.mjs +2 -0
  111. package/esm2022/lib/map/utils/layer-watcher.mjs +45 -13
  112. package/esm2022/lib/measure/measurer/measurer.component.mjs +7 -25
  113. package/esm2022/lib/metadata/metadata-button/metadata-button.component.mjs +6 -18
  114. package/esm2022/lib/offline/offline.provider.mjs +10 -11
  115. package/esm2022/lib/print/shared/print.service.mjs +3 -3
  116. package/esm2022/lib/query/shared/query.directive.mjs +9 -5
  117. package/esm2022/lib/query/shared/query.service.mjs +7 -7
  118. package/esm2022/lib/query/shared/query.utils.mjs +5 -1
  119. package/esm2022/lib/search/search-results/search-results-add-button.component.mjs +15 -9
  120. package/esm2022/lib/search/shared/search-pointer-summary.directive.mjs +1 -10
  121. package/esm2022/lib/search/shared/sources/workspace.interfaces.mjs +1 -1
  122. package/esm2022/lib/search/shared/sources/workspace.mjs +1 -1
  123. package/esm2022/lib/workspace/shared/edition-workspace.mjs +6 -4
  124. package/esm2022/lib/workspace/shared/edition-workspace.service.mjs +19 -17
  125. package/esm2022/lib/workspace/shared/wfs-workspace.service.mjs +17 -2
  126. package/esm2022/lib/workspace/shared/wms-workspace.service.mjs +22 -4
  127. package/esm2022/lib/workspace/shared/workspace.utils.mjs +6 -3
  128. package/esm2022/lib/workspace/widgets/ogc-filter/ogc-filter.component.mjs +2 -2
  129. package/esm2022/lib/workspace/workspace-selector/workspace-selector.directive.mjs +6 -2
  130. package/esm2022/lib/workspace/workspace-updator/workspace-updator.directive.mjs +4 -3
  131. package/fesm2022/igo2-geo.mjs +22952 -22018
  132. package/fesm2022/igo2-geo.mjs.map +1 -1
  133. package/lib/datasource/shared/capabilities.service.d.ts +7 -2
  134. package/lib/datasource/shared/datasources/wfs-datasource.interface.d.ts +2 -2
  135. package/lib/datasource/shared/datasources/wms-datasource.interface.d.ts +5 -5
  136. package/lib/directions/directions-buttons/directions-buttons.component.d.ts +57 -20
  137. package/lib/directions/directions-inputs/directions-inputs.component.d.ts +115 -13
  138. package/lib/directions/directions-results/directions-results.component.d.ts +50 -16
  139. package/lib/directions/directions-sources/directions-source.d.ts +2 -2
  140. package/lib/directions/directions-sources/osrm-directions-source.d.ts +2 -2
  141. package/lib/directions/directions.component.d.ts +5 -5
  142. package/lib/directions/shared/directions.enum.d.ts +42 -1
  143. package/lib/directions/shared/directions.interface.d.ts +50 -25
  144. package/lib/directions/shared/directions.service.d.ts +46 -8
  145. package/lib/directions/shared/directions.utils.d.ts +102 -23
  146. package/lib/directions/shared/store.d.ts +3 -3
  147. package/lib/download/download-button/download-button.component.d.ts +4 -8
  148. package/lib/download/shared/download.service.d.ts +1 -1
  149. package/lib/draw/draw/draw.component.d.ts +2 -2
  150. package/lib/draw/shared/draw.utils.d.ts +2 -1
  151. package/lib/environment/environment.interface.d.ts +2 -0
  152. package/lib/feature/shared/feature-store.utils.d.ts +1 -1
  153. package/lib/feature/shared/feature.interfaces.d.ts +1 -1
  154. package/lib/feature/shared/store.d.ts +1 -1
  155. package/lib/filter/ogc-filter-button/ogc-filter-button.component.d.ts +1 -1
  156. package/lib/filter/ogc-filterable-item/ogc-filterable-item.component.d.ts +1 -1
  157. package/lib/filter/ogc-filterable-list/ogc-filterable-list.component.d.ts +2 -2
  158. package/lib/filter/shared/filterable-datasource.pipe.d.ts +2 -2
  159. package/lib/filter/spatial-filter/spatial-filter-item/spatial-filter-item.component.d.ts +3 -3
  160. package/lib/filter/spatial-filter/spatial-filter-list/spatial-filter-list.component.d.ts +3 -5
  161. package/lib/filter/spatial-filter/spatial-filter-type/spatial-filter-type.component.d.ts +3 -5
  162. package/lib/filter/time-filter-button/time-filter-button.component.d.ts +1 -1
  163. package/lib/filter/time-filter-form/time-filter-form.component.d.ts +5 -5
  164. package/lib/filter/time-filter-item/time-filter-item.component.d.ts +1 -1
  165. package/lib/filter/time-filter-list/time-filter-list.component.d.ts +2 -7
  166. package/lib/import-export/export-button/export-button.component.d.ts +3 -7
  167. package/lib/import-export/import-export/import-export.component.d.ts +1 -2
  168. package/lib/import-export/shared/export.service.d.ts +2 -2
  169. package/lib/layer/index.d.ts +9 -4
  170. package/lib/layer/layer-group/index.d.ts +1 -0
  171. package/lib/layer/layer-group/layer-group.component.d.ts +30 -0
  172. package/lib/layer/layer-item/layer-item.component.d.ts +19 -42
  173. package/lib/layer/layer-legend/layer-legend.component.d.ts +2 -5
  174. package/lib/layer/layer-legend-list/layer-legend-list.component.d.ts +6 -7
  175. package/lib/layer/layer-list/index.d.ts +0 -2
  176. package/lib/layer/layer-list/layer-list.component.d.ts +51 -128
  177. package/lib/layer/layer-list-tool/index.d.ts +0 -1
  178. package/lib/layer/layer-list-tool/layer-list-tool.component.d.ts +19 -26
  179. package/lib/layer/layer-list-tool/layer-list-tool.interface.d.ts +5 -1
  180. package/lib/layer/layer-list-tool/layer-list-tool.service.d.ts +9 -8
  181. package/lib/layer/layer-search/index.d.ts +1 -0
  182. package/lib/layer/layer-search/layer-search.component.d.ts +16 -0
  183. package/lib/layer/layer-unavailable/index.d.ts +2 -0
  184. package/lib/layer/layer-unavailable/layer-unavailable-list/layer-unavailable-list.component.d.ts +10 -0
  185. package/lib/layer/layer-unavailable/layer-unavailable.component.d.ts +11 -0
  186. package/lib/layer/layer-viewer/index.d.ts +2 -0
  187. package/lib/layer/layer-viewer/layer-viewer.component.d.ts +52 -0
  188. package/lib/layer/layer-viewer/layer-viewer.interface.d.ts +22 -0
  189. package/lib/layer/layer-viewer-bottom-actions/index.d.ts +1 -0
  190. package/lib/layer/layer-viewer-bottom-actions/layer-viewer-bottom-actions.component.d.ts +44 -0
  191. package/lib/layer/layer-visibility-button/index.d.ts +1 -0
  192. package/lib/layer/layer-visibility-button/layer-visibility-button.component.d.ts +22 -0
  193. package/lib/layer/layer.module.d.ts +18 -6
  194. package/lib/layer/shared/index.d.ts +1 -0
  195. package/lib/layer/shared/layer-controller.d.ts +81 -0
  196. package/lib/layer/shared/layer-selection.d.ts +14 -0
  197. package/lib/layer/shared/layer.service.d.ts +9 -5
  198. package/lib/layer/shared/layers/any-layer.d.ts +3 -6
  199. package/lib/layer/shared/layers/any-layer.interface.d.ts +8 -6
  200. package/lib/layer/shared/layers/image-layer.d.ts +5 -2
  201. package/lib/layer/shared/layers/image-layer.interface.d.ts +1 -4
  202. package/lib/layer/shared/layers/index.d.ts +5 -0
  203. package/lib/layer/shared/layers/layer-base.d.ts +75 -0
  204. package/lib/layer/shared/layers/layer-group.d.ts +32 -0
  205. package/lib/layer/shared/layers/layer-group.interface.d.ts +8 -0
  206. package/lib/layer/shared/layers/layer.d.ts +27 -45
  207. package/lib/layer/shared/layers/layer.interface.d.ts +23 -41
  208. package/lib/layer/shared/layers/linked/index.d.ts +3 -0
  209. package/lib/layer/shared/layers/linked/linked-layer.d.ts +35 -0
  210. package/lib/layer/shared/layers/linked/linked-layer.interface.d.ts +32 -0
  211. package/lib/layer/shared/layers/linked/linked-layer.utils.d.ts +9 -0
  212. package/lib/layer/shared/layers/tile-layer.d.ts +5 -2
  213. package/lib/layer/shared/layers/vector-layer.d.ts +7 -3
  214. package/lib/layer/shared/layers/vectortile-layer.d.ts +5 -2
  215. package/lib/layer/utils/layer.utils.d.ts +12 -2
  216. package/lib/layer/utils/outputLegend.d.ts +2 -2
  217. package/lib/map/shared/controllers/geolocation.interface.d.ts +2 -1
  218. package/lib/map/shared/hover-feature.directive.d.ts +0 -1
  219. package/lib/map/shared/linkedLayers.utils.d.ts +13 -17
  220. package/lib/map/shared/map.abstract.d.ts +12 -29
  221. package/lib/map/shared/map.d.ts +10 -85
  222. package/lib/map/shared/map.service.d.ts +1 -1
  223. package/lib/map/shared/map.utils.d.ts +5 -3
  224. package/lib/map/utils/index.d.ts +1 -0
  225. package/lib/map/utils/layer-watcher.d.ts +18 -8
  226. package/lib/measure/measurer/measurer.component.d.ts +0 -8
  227. package/lib/metadata/metadata-button/metadata-button.component.d.ts +3 -7
  228. package/lib/offline/offline.provider.d.ts +1 -1
  229. package/lib/query/shared/query.service.d.ts +1 -1
  230. package/lib/query/shared/query.utils.d.ts +2 -1
  231. package/lib/search/search-results/search-results-add-button.component.d.ts +1 -1
  232. package/lib/search/shared/search-pointer-summary.directive.d.ts +0 -1
  233. package/lib/search/shared/sources/workspace.interfaces.d.ts +1 -1
  234. package/lib/workspace/widgets/ogc-filter/ogc-filter.component.d.ts +1 -1
  235. package/locale/en.geo.json +104 -89
  236. package/locale/fr.geo.json +103 -89
  237. package/package.json +5 -5
  238. package/src/geo-theme.scss +1 -1
  239. package/src/lib/directions/directions-inputs/directions-inputs.theming.scss +21 -0
  240. package/src/lib/directions/directions.theming.scss +2 -0
  241. package/src/lib/layer/layer-group/layer-group.theme.scss +28 -0
  242. package/src/lib/layer/layer-item/layer-item.theme.scss +4 -9
  243. package/src/lib/layer/layer-legend/layer-legend.theme.scss +30 -0
  244. package/src/lib/layer/layer-list/layer-list.theme.scss +50 -0
  245. package/src/lib/layer/layer-unavailable/layer-unavailable.theme.scss +19 -0
  246. package/src/lib/layer/layer-viewer/_layer-viewer.theme.scss +16 -0
  247. package/src/lib/layer/layer-visibility-button/layer-visibility-button.theme.scss +27 -0
  248. package/src/lib/layer/layer.theming.scss +14 -3
  249. package/esm2022/lib/layer/layer-list/layer-list-binding.directive.mjs +0 -70
  250. package/esm2022/lib/layer/layer-list/layer-list.enum.mjs +0 -19
  251. package/esm2022/lib/layer/layer-list-tool/layer-list-tool.enum.mjs +0 -7
  252. package/lib/layer/layer-list/layer-list-binding.directive.d.ts +0 -19
  253. package/lib/layer/layer-list/layer-list.enum.d.ts +0 -15
  254. package/lib/layer/layer-list-tool/layer-list-tool.enum.d.ts +0 -5
  255. package/src/lib/layer/layer-legend/layer-legend.theming.scss +0 -10
@@ -1,9 +1,14 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
- import { LegendOptions } from '../../layer/shared/layers/legend.interface';
3
+ import type { LegendOptions } from '../../layer/shared/layers/legend.interface';
4
4
  import { MapService } from '../../map/shared/map.service';
5
5
  import { TypeCapabilitiesStrings } from './capabilities.interface';
6
- import { ArcGISRestDataSourceOptions, ArcGISRestImageDataSourceOptions, CartoDataSourceOptions, TileArcGISRestDataSourceOptions, WMSDataSourceOptions, WMTSDataSourceOptions } from './datasources';
6
+ import { ArcGISRestDataSourceOptions } from './datasources/arcgisrest-datasource.interface';
7
+ import { CartoDataSourceOptions } from './datasources/carto-datasource.interface';
8
+ import { ArcGISRestImageDataSourceOptions } from './datasources/imagearcgisrest-datasource.interface';
9
+ import { TileArcGISRestDataSourceOptions } from './datasources/tilearcgisrest-datasource.interface';
10
+ import { WMSDataSourceOptions } from './datasources/wms-datasource.interface';
11
+ import { WMTSDataSourceOptions } from './datasources/wmts-datasource.interface';
7
12
  import * as i0 from "@angular/core";
8
13
  export declare class CapabilitiesService {
9
14
  private http;
@@ -1,5 +1,5 @@
1
- import { OgcFiltersOptions } from '../../../filter';
2
- import { FeatureDataSourceOptions } from './feature-datasource.interface';
1
+ import type { OgcFiltersOptions } from '../../../filter';
2
+ import type { FeatureDataSourceOptions } from './feature-datasource.interface';
3
3
  export interface WFSDataSourceOptions extends FeatureDataSourceOptions {
4
4
  params: WFSDataSourceOptionsParams;
5
5
  paramsWFS?: WFSDataSourceOptionsParams;
@@ -1,8 +1,8 @@
1
1
  import type { ServerType } from 'ol/source/wms';
2
- import { OgcFiltersOptions } from '../../../filter';
3
- import { TimeFilterOptions } from '../../../filter/shared/time-filter.interface';
4
- import { DataSourceOptions } from './datasource.interface';
5
- import { WFSDataSourceOptionsParams } from './wfs-datasource.interface';
2
+ import type { OgcFiltersOptions } from '../../../filter';
3
+ import type { TimeFilterOptions } from '../../../filter/shared/time-filter.interface';
4
+ import type { DataSourceOptions } from './datasource.interface';
5
+ import type { WFSDataSourceOptionsParams } from './wfs-datasource.interface';
6
6
  export interface WMSDataSourceOptions extends DataSourceOptions {
7
7
  paramsWFS?: WFSDataSourceOptionsParams;
8
8
  urlWfs?: string;
@@ -15,7 +15,7 @@ export interface WMSDataSourceOptions extends DataSourceOptions {
15
15
  ratio?: number;
16
16
  refreshIntervalSec?: number;
17
17
  contentDependentLegend?: boolean;
18
- excludeAttribute?: Array<string>;
18
+ excludeAttribute?: string[];
19
19
  ogcFilters?: OgcFiltersOptions;
20
20
  timeFilter?: TimeFilterOptions;
21
21
  }
@@ -1,37 +1,74 @@
1
1
  import { LanguageService } from '@igo2/core/language';
2
2
  import { MessageService } from '@igo2/core/message';
3
3
  import { RouteService } from '@igo2/core/route';
4
- import { BehaviorSubject, Subject } from 'rxjs';
4
+ import { Subject } from 'rxjs';
5
5
  import { DirectionsService } from '../shared';
6
- import { FeatureWithDirection } from '../shared/directions.interface';
7
- import { RoutesFeatureStore, StepFeatureStore, StopsStore } from '../shared/store';
6
+ import { FeatureWithDirections } from '../shared/directions.interface';
7
+ import { RoutesFeatureStore, StepsFeatureStore, StopsStore } from '../shared/store';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class DirectionsButtonsComponent {
10
10
  private languageService;
11
11
  private messageService;
12
- private route;
12
+ private routeService;
13
13
  private directionsService;
14
- get activeRoute(): FeatureWithDirection;
15
14
  contextUri: string;
16
- zoomToActiveRoute$: Subject<void>;
15
+ zoomOnActiveRoute$: Subject<void>;
17
16
  stopsStore: StopsStore;
18
17
  routesFeatureStore: RoutesFeatureStore;
19
- stepFeatureStore: StepFeatureStore;
20
- disabled$: BehaviorSubject<boolean>;
21
- constructor(languageService: LanguageService, messageService: MessageService, route: RouteService, directionsService: DirectionsService);
18
+ stepsFeatureStore: StepsFeatureStore;
19
+ downloadDirectionsBtnDisabled: boolean;
20
+ constructor(languageService: LanguageService, messageService: MessageService, routeService: RouteService, directionsService: DirectionsService);
21
+ /**
22
+ * Returns the active route from the routesFeatureStore.
23
+ *
24
+ * @return {FeatureWithDirections | undefined} The active route, or undefined if no active route is found.
25
+ */
26
+ get activeRoute(): FeatureWithDirections;
27
+ /**
28
+ * Resets the stops in the stopsStore by clearing all the stops.
29
+ *
30
+ */
22
31
  resetStops(): void;
23
- addStop(): void;
24
- copyLinkToClipboard(): void;
25
- zoomRoute(): void;
32
+ /**
33
+ * Triggers the zoom on the active route.
34
+ *
35
+ */
36
+ zoomOnActiveRoute(): void;
37
+ /**
38
+ * Copies the directions to the clipboard and displays a success message if the copy is successful.
39
+ *
40
+ */
26
41
  copyDirectionsToClipboard(): void;
42
+ /**
43
+ * Copies the link to the clipboard and displays a success message if the copy is successful.
44
+ *
45
+ */
46
+ copyLinkToClipboard(): void;
47
+ /**
48
+ * Downloads the directions.
49
+ *
50
+ */
51
+ downloadDirections(): void;
52
+ /**
53
+ * Generates a text representation of the directions, including summary, stops, URL, and directions.
54
+ *
55
+ * @return {string} The directions in text format.
56
+ */
27
57
  private directionsToText;
28
- formatStep(step: any, cnt: any): {
29
- instruction: any;
30
- image: string;
31
- cssClass: string;
32
- };
33
- private getUrl;
34
- printDirections(): void;
58
+ /**
59
+ * Formats a step.
60
+ *
61
+ * @param {IgoStep} step - The step to format.
62
+ * @param {number} stepIndex - The index of the step in the directions.
63
+ * @return {string} The formatted instruction for the step.
64
+ */
65
+ private getFormattedStepInstruction;
66
+ /**
67
+ * Generates a link based on the current route and stops.
68
+ *
69
+ * @return {string | undefined} The generated link, or undefined if the route service is not available.
70
+ */
71
+ private getLink;
35
72
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsButtonsComponent, [null, null, { optional: true; }, null]>;
36
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": false; }; "zoomToActiveRoute$": { "alias": "zoomToActiveRoute$"; "required": false; }; "stopsStore": { "alias": "stopsStore"; "required": false; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": false; }; "stepFeatureStore": { "alias": "stepFeatureStore"; "required": false; }; }, {}, never, never, true, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsButtonsComponent, "igo-directions-buttons", never, { "contextUri": { "alias": "contextUri"; "required": true; }; "zoomOnActiveRoute$": { "alias": "zoomOnActiveRoute$"; "required": true; }; "stopsStore": { "alias": "stopsStore"; "required": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; }, {}, never, never, true, never>;
37
74
  }
@@ -8,10 +8,6 @@ import { StopsFeatureStore, StopsStore } from '../shared/store';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class DirectionsInputsComponent implements OnDestroy {
10
10
  private languageService;
11
- private readonly invalidKeys;
12
- private onMapClickEventKeys;
13
- stopWithHover: Stop;
14
- stopIsDragged: boolean;
15
11
  stopsStore: StopsStore;
16
12
  stopsFeatureStore: StopsFeatureStore;
17
13
  projection: string;
@@ -19,27 +15,133 @@ export declare class DirectionsInputsComponent implements OnDestroy {
19
15
  debounce: number;
20
16
  length: number;
21
17
  stopInputHasFocus: EventEmitter<boolean>;
18
+ private readonly invalidKeys;
19
+ private onMapClickEventKeys;
20
+ stopWithHover: Stop;
21
+ stopIsDragged: boolean;
22
22
  constructor(languageService: LanguageService);
23
+ /**
24
+ * Returns the position property of the geolocationController.
25
+ *
26
+ * @return {BehaviorSubject<boolean> | undefined} The position property of
27
+ * the geolocationController.
28
+ */
29
+ get currentPosition(): boolean;
23
30
  ngOnDestroy(): void;
31
+ /**
32
+ * Sets the stop with hover to the given stop.
33
+ *
34
+ * @param {Stop} stop - The stop to set as the stop with hover.
35
+ */
24
36
  onStopEnter(stop: Stop): void;
37
+ /**
38
+ * Sets the stop with hover to undefined.
39
+ *
40
+ */
25
41
  onStopLeave(): void;
26
- getOptionText(option: any): any;
27
- chooseProposal(event: {
42
+ /**
43
+ * Adds a stop to the stops store.
44
+ *
45
+ */
46
+ addStop(): void;
47
+ /**
48
+ * Returns the title of the option if it is an object and has a meta property with a title,
49
+ * otherwise returns the option itself.
50
+ *
51
+ * @param {any} option - The option to get the text from.
52
+ * @return {string} The title of the option if it is an object and has a meta property with a title,
53
+ * otherwise returns the option itself.
54
+ */
55
+ getOptionText(option: any): string;
56
+ /**
57
+ * Chooses an option from a MatAutocomplete and updates the stop coordinates and text
58
+ * based on the selected feature.
59
+ *
60
+ * @param {Object} event - The event object containing the MatAutocomplete and MatOption.
61
+ * @param {MatAutocomplete} event.source - The MatAutocomplete component.
62
+ * @param {MatOption} event.option - The selected MatOption.
63
+ * @param {Stop} stop - The stop object to update.
64
+ */
65
+ chooseOption(event: {
28
66
  source: MatAutocomplete;
29
67
  option: MatOption;
30
68
  }, stop: Stop): void;
69
+ /**
70
+ * Sets the text of a stop based on the value of an input field.
71
+ *
72
+ * @param {KeyboardEvent} event - The keyboard event triggered by the input field.
73
+ * @param {Stop} stop - The stop object to update.
74
+ */
31
75
  setStopText(event: KeyboardEvent, stop: Stop): void;
32
- validateTerm(term: string): boolean;
33
- private keyIsValid;
34
- getNgClass(stop: Stop): string;
35
- getPlaceholder(stop: Stop): string;
76
+ /**
77
+ * Validates a search term by checking if it contains any invalid characters and if its length is valid.
78
+ *
79
+ * @param {string} searchTerm - The search term to be validated.
80
+ * @return {boolean} Returns true if the search term is valid, false otherwise.
81
+ */
82
+ private validateSearchTerm;
83
+ /**
84
+ * Returns the label for the given stop input.
85
+ *
86
+ * @param {Stop} stop - The stop containing relativePosition and position.
87
+ * @return {string} The label for the stop input.
88
+ */
89
+ getInputLabel(stop: Stop): string;
90
+ /**
91
+ * Removes a stop from the stops store.
92
+ *
93
+ * @param {Stop} stop - The stop object to be removed.
94
+ */
36
95
  removeStop(stop: Stop): void;
37
- clearStop(stop: Stop): void;
38
- drop(event: CdkDragDrop<string[]>): void;
96
+ /**
97
+ * Clears the specified stop in the stops store.
98
+ *
99
+ * @param {Stop} stop - The stop to be cleared.
100
+ */
101
+ clearStopInput(stop: Stop): void;
102
+ /**
103
+ * Use the current position as a stop.
104
+ *
105
+ * @param {Stop} stop - The stop to update with the current position.
106
+ */
107
+ useCurrentPosition(stop: Stop): void;
108
+ /**
109
+ * Moves a stop in the list of stops..
110
+ *
111
+ * @param {CdkDragDrop<string[]>} event - The event containing the previous and current index of the dropped stop.
112
+ */
113
+ dropStop(event: CdkDragDrop<string[]>): void;
114
+ /**
115
+ * Moves a stop in the list of stops from one index to another.
116
+ *
117
+ * @param {number} fromIndex - The index to move the stop from.
118
+ * @param {number} toIndex - The index to move the stop to.
119
+ */
39
120
  private moveStops;
121
+ /**
122
+ * Handles the focus event on an input field for a stop.
123
+ *
124
+ * @param {Stop} stop - The stop that the input field is associated with.
125
+ */
40
126
  onInputFocus(stop: Stop): void;
127
+ /**
128
+ * Listens for a single click event on the map and uses the coordinates of the click
129
+ * to set the given stop's coordinates.
130
+ *
131
+ * @param {Stop} stop - The stop to update with the clicked coordinates.
132
+ */
41
133
  private listenMapSingleClick;
134
+ /**
135
+ * Unlistens for map single click events and clears the list of event keys.
136
+ */
42
137
  private unlistenMapSingleClick;
138
+ /**
139
+ * Uses the given coordinates to update the given stop.
140
+ *
141
+ * @param {Coordinate} coordinates - The coordinates to transform and round.
142
+ * @param {Stop} stop - The stop to update with the new coordinates and text.
143
+ */
144
+ private useCoordinatesAsStop;
43
145
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsInputsComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsInputsComponent, "igo-directions-inputs", never, { "stopsStore": { "alias": "stopsStore"; "required": false; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": false; }; "projection": { "alias": "projection"; "required": false; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; }, { "stopInputHasFocus": "stopInputHasFocus"; }, never, never, true, never>;
146
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsInputsComponent, "igo-directions-inputs", never, { "stopsStore": { "alias": "stopsStore"; "required": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; }; "projection": { "alias": "projection"; "required": true; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; }, { "stopInputHasFocus": "stopInputHasFocus"; }, never, never, true, never>;
45
147
  }
@@ -1,30 +1,64 @@
1
1
  import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
2
  import { LanguageService } from '@igo2/core/language';
3
- import { Direction, IgoStep } from '../shared/directions.interface';
4
- import { RoutesFeatureStore, StepFeatureStore } from '../shared/store';
3
+ import { Directions, FormattedStep, IgoStep } from '../shared/directions.interface';
4
+ import { RoutesFeatureStore, StepsFeatureStore } from '../shared/store';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class DirectionsResultsComponent implements OnInit, OnDestroy {
7
7
  private languageService;
8
8
  private cdRef;
9
- activeDirection: Direction;
10
- directions: Direction[];
11
- private entities$$;
12
9
  routesFeatureStore: RoutesFeatureStore;
13
- stepFeatureStore: StepFeatureStore;
10
+ stepsFeatureStore: StepsFeatureStore;
11
+ activeRoute: Directions;
12
+ routes: Directions[];
13
+ private entities$$;
14
14
  constructor(languageService: LanguageService, cdRef: ChangeDetectorRef);
15
15
  ngOnInit(): void;
16
16
  ngOnDestroy(): void;
17
- changeRoute(): void;
17
+ /**
18
+ * Toggles the active state of all features in the routesFeatureStore and updates
19
+ * the active state of their corresponding features in the layer.
20
+ */
21
+ chooseRouteOption(): void;
22
+ /**
23
+ * Formats the given distance in meters.
24
+ *
25
+ * @param {number} distance - The distance in meters to be formatted.
26
+ * @return {string} The formatted distance string.
27
+ */
18
28
  formatDistance(distance: number): string;
29
+ /**
30
+ * Formats the given duration in seconds.
31
+ *
32
+ * @param {number} duration - The duration in seconds to be formatted.
33
+ * @return {string} The formatted duration string.
34
+ */
19
35
  formatDuration(duration: number): string;
20
- formatStep(step: any, cnt: any): {
21
- instruction: any;
22
- image: string;
23
- cssClass: string;
24
- };
25
- onStepsListBlur(): void;
26
- showSegment(step: IgoStep, zoomToExtent?: boolean): void;
27
- showRouteSegmentGeometry(step: IgoStep, zoomToExtent?: boolean): void;
36
+ /**
37
+ * Returns a formatted string containing the distance and duration of the active route.
38
+ *
39
+ * @return {string} The formatted string, or an empty string if either distance or duration is undefined.
40
+ */
41
+ getTitleDurationAndDistance(): string;
42
+ /**
43
+ * Formats a step and returns the formatted step.
44
+ *
45
+ * @param {IgoStep} step - The step to be formatted.
46
+ * @param {number} stepIndex - The index of the step in the active route.
47
+ * @return {FormattedStep} The formatted step.
48
+ */
49
+ getFormattedStep(step: IgoStep, stepIndex: number): FormattedStep;
50
+ /**
51
+ * Clears the step feature store when the user's mouse leaves the list.
52
+ */
53
+ onLeaveList(): void;
54
+ /**
55
+ * Shows a step on the map and optionally zooming to the step.
56
+ *
57
+ * @param {IgoStep} step - The step to be shown.
58
+ * @param {boolean} [zoomToExtent=false] - Whether to zoom to the extent of the route segment geometry.
59
+ */
60
+ showStep(step: IgoStep, zoomToExtent?: boolean): void;
61
+ private showRouteSegmentGeometry;
28
62
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsResultsComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsResultsComponent, "igo-directions-results", never, { "routesFeatureStore": { "alias": "routesFeatureStore"; "required": false; }; "stepFeatureStore": { "alias": "stepFeatureStore"; "required": false; }; }, {}, never, never, true, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsResultsComponent, "igo-directions-results", never, { "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; }, {}, never, never, true, never>;
30
64
  }
@@ -1,11 +1,11 @@
1
1
  import { Position } from 'geojson';
2
2
  import { Observable } from 'rxjs';
3
- import { Direction, DirectionOptions } from '../shared/directions.interface';
3
+ import { DirectionOptions, Directions } from '../shared/directions.interface';
4
4
  import { BaseDirectionsSourceOptionsProfile } from './directions-source.interface';
5
5
  export declare abstract class DirectionsSource {
6
6
  abstract profiles: BaseDirectionsSourceOptionsProfile[];
7
7
  abstract getSourceName(): string;
8
8
  abstract getEnabledProfile(): BaseDirectionsSourceOptionsProfile;
9
9
  abstract getProfileWithAuthorization(): BaseDirectionsSourceOptionsProfile;
10
- abstract route(coordinates: Position[], directionsOptions: DirectionOptions): Observable<Direction[]>;
10
+ abstract route(coordinates: Position[], directionsOptions: DirectionOptions): Observable<Directions[]>;
11
11
  }
@@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http';
2
2
  import { ConfigService } from '@igo2/core/config';
3
3
  import { Position } from 'geojson';
4
4
  import { Observable } from 'rxjs';
5
- import { Direction, DirectionOptions } from '../shared/directions.interface';
5
+ import { DirectionOptions, Directions } from '../shared/directions.interface';
6
6
  import { DirectionsSource } from './directions-source';
7
7
  import { BaseDirectionsSourceOptionsProfile, OsrmDirectionsSourceOptions } from './directions-source.interface';
8
8
  import * as i0 from "@angular/core";
@@ -23,7 +23,7 @@ export declare class OsrmDirectionsSource extends DirectionsSource {
23
23
  getSourceName(): string;
24
24
  getEnabledProfile(): BaseDirectionsSourceOptionsProfile;
25
25
  getProfileWithAuthorization(): BaseDirectionsSourceOptionsProfile;
26
- route(coordinates: Position[], directionsOptions?: DirectionOptions): Observable<Direction[]>;
26
+ route(coordinates: Position[], directionsOptions?: DirectionOptions): Observable<Directions[]>;
27
27
  private getRoute;
28
28
  private extractRoutesData;
29
29
  private getRouteParams;
@@ -9,7 +9,7 @@ import { SearchService } from '../search/shared/search.service';
9
9
  import { DirectionsSourceService } from './shared/directions-source.service';
10
10
  import { Stop } from './shared/directions.interface';
11
11
  import { DirectionsService } from './shared/directions.service';
12
- import { RoutesFeatureStore, StepFeatureStore, StopsFeatureStore, StopsStore } from './shared/store';
12
+ import { RoutesFeatureStore, StepsFeatureStore, StopsFeatureStore, StopsStore } from './shared/store';
13
13
  import * as i0 from "@angular/core";
14
14
  export declare class DirectionsComponent implements OnInit, OnDestroy {
15
15
  private cdRef;
@@ -24,7 +24,7 @@ export declare class DirectionsComponent implements OnInit, OnDestroy {
24
24
  projection: string;
25
25
  hasOsrmPrivateAccess: boolean;
26
26
  twoSourcesAvailable: boolean;
27
- private zoomRoute$$;
27
+ private zoomOnActiveRoute$$;
28
28
  private storeEmpty$$;
29
29
  private storeChange$$;
30
30
  private routesQueries$$;
@@ -40,11 +40,11 @@ export declare class DirectionsComponent implements OnInit, OnDestroy {
40
40
  stopsStore: StopsStore;
41
41
  stopsFeatureStore: StopsFeatureStore;
42
42
  routesFeatureStore: RoutesFeatureStore;
43
- stepFeatureStore: StepFeatureStore;
43
+ stepsFeatureStore: StepsFeatureStore;
44
44
  debounce: number;
45
45
  length: number;
46
46
  coordRoundedDecimals: number;
47
- zoomToActiveRoute$: Subject<void>;
47
+ zoomOnActiveRoute$: Subject<void>;
48
48
  authenticated$: BehaviorSubject<boolean>;
49
49
  /**
50
50
  * Wheter one of the direction control is active
@@ -72,5 +72,5 @@ export declare class DirectionsComponent implements OnInit, OnDestroy {
72
72
  onToggleDirectionsControl(isActive: boolean): void;
73
73
  onTogglePrivateModeControl(isActive: boolean): void;
74
74
  static ɵfac: i0.ɵɵFactoryDeclaration<DirectionsComponent, never>;
75
- static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsComponent, "igo-directions", never, { "contextUri": { "alias": "contextUri"; "required": false; }; "stopsStore": { "alias": "stopsStore"; "required": false; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": false; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": false; }; "stepFeatureStore": { "alias": "stepFeatureStore"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "zoomToActiveRoute$": { "alias": "zoomToActiveRoute$"; "required": false; }; "authenticated$": { "alias": "authenticated$"; "required": false; }; }, {}, never, never, true, never>;
75
+ static ɵcmp: i0.ɵɵComponentDeclaration<DirectionsComponent, "igo-directions", never, { "contextUri": { "alias": "contextUri"; "required": false; }; "stopsStore": { "alias": "stopsStore"; "required": true; }; "stopsFeatureStore": { "alias": "stopsFeatureStore"; "required": true; }; "routesFeatureStore": { "alias": "routesFeatureStore"; "required": true; }; "stepsFeatureStore": { "alias": "stepsFeatureStore"; "required": true; }; "debounce": { "alias": "debounce"; "required": false; }; "length": { "alias": "length"; "required": false; }; "coordRoundedDecimals": { "alias": "coordRoundedDecimals"; "required": false; }; "zoomOnActiveRoute$": { "alias": "zoomOnActiveRoute$"; "required": true; }; "authenticated$": { "alias": "authenticated$"; "required": true; }; }, {}, never, never, true, never>;
76
76
  }
@@ -10,7 +10,7 @@ export declare enum ProposalType {
10
10
  Coord = "coord",
11
11
  Text = "text"
12
12
  }
13
- export declare enum DirectionType {
13
+ export declare enum DirectionsType {
14
14
  Stop = "stop",
15
15
  Route = "route",
16
16
  Vertex = "vertex"
@@ -20,3 +20,44 @@ export declare enum DirectionRelativePositionType {
20
20
  Intermediate = "intermediate",
21
21
  End = "end"
22
22
  }
23
+ export declare enum ManeuverType {
24
+ Turn = "turn",
25
+ NewName = "new name",
26
+ Depart = "depart",
27
+ Arrive = "arrive",
28
+ Merge = "merge",
29
+ Ramp = "ramp",
30
+ OnRamp = "on ramp",
31
+ OffRamp = "off ramp",
32
+ Fork = "fork",
33
+ EndOfRoad = "end of road",
34
+ UseLane = "use lane",
35
+ Continue = "continue",
36
+ Roundabout = "roundabout",
37
+ Rotary = "rotary",
38
+ RoundaboutTurn = "roundabout turn",
39
+ Notification = "notification",
40
+ ExitRoundabout = "exit roundabout",
41
+ ExitRotary = "exit rotary"
42
+ }
43
+ export declare enum ManeuverModifier {
44
+ Uturn = "uturn",
45
+ SharpRight = "sharp right",
46
+ Right = "right",
47
+ SlightRight = "slight right",
48
+ SharpLeft = "sharp left",
49
+ Left = "left",
50
+ SlightLeft = "slight left",
51
+ Straight = "straight"
52
+ }
53
+ export declare enum LaneType {
54
+ None = "none",
55
+ Uturn = "uturn",
56
+ SharpRight = "sharp right",
57
+ Right = "right",
58
+ SlightRight = "slight right",
59
+ SharpLeft = "sharp left",
60
+ Left = "left",
61
+ SlightLeft = "slight left",
62
+ Straight = "straight"
63
+ }