mobility-toolbox-js 2.0.0-beta.51 → 2.0.0-beta.53

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 (75) hide show
  1. package/README.md +26 -3
  2. package/api/RealtimeAPI.d.ts +8 -3
  3. package/api/RealtimeAPI.d.ts.map +1 -1
  4. package/api/RealtimeAPI.js +4 -1
  5. package/common/controls/ControlCommon.d.ts +1 -1
  6. package/common/controls/ControlCommon.d.ts.map +1 -1
  7. package/common/layers/LayerCommon.d.ts +1 -0
  8. package/common/layers/LayerCommon.d.ts.map +1 -1
  9. package/common/layers/LayerCommon.js +3 -0
  10. package/common/mixins/RealtimeLayerMixin.d.ts +1 -1
  11. package/common/mixins/RealtimeLayerMixin.d.ts.map +1 -1
  12. package/common/mixins/RealtimeLayerMixin.js +2 -2
  13. package/common/mixins/UserInteractionsLayerMixin.d.ts.map +1 -1
  14. package/common/mixins/UserInteractionsLayerMixin.js +7 -10
  15. package/common/styles/realtimeDefaultStyle.d.ts +2 -2
  16. package/common/styles/realtimeDefaultStyle.d.ts.map +1 -1
  17. package/common/styles/realtimeDelayStyle.d.ts +2 -2
  18. package/common/styles/realtimeDelayStyle.d.ts.map +1 -1
  19. package/common/styles/realtimeSimpleStyle.d.ts +2 -1
  20. package/common/styles/realtimeSimpleStyle.d.ts.map +1 -1
  21. package/common/typedefs.js +3 -3
  22. package/common/utils/{createTrackerFilters.d.ts → createRealtimeFilters.d.ts} +4 -4
  23. package/common/utils/createRealtimeFilters.d.ts.map +1 -0
  24. package/common/utils/{createTrackerFilters.js → createRealtimeFilters.js} +12 -5
  25. package/common/utils/getMapboxRender.d.ts +3 -3
  26. package/common/utils/getMapboxRender.d.ts.map +1 -1
  27. package/common/utils/getMapboxRender.js +2 -1
  28. package/common/utils/getMaplibreRender.d.ts +3 -1
  29. package/common/utils/getMaplibreRender.d.ts.map +1 -1
  30. package/common/utils/getMaplibreRender.js +4 -4
  31. package/common/utils/getRealtimeModeSuffix.d.ts +4 -2
  32. package/common/utils/getRealtimeModeSuffix.d.ts.map +1 -1
  33. package/common/utils/getUrlWithParams.d.ts +2 -2
  34. package/common/utils/getUrlWithParams.d.ts.map +1 -1
  35. package/common/utils/getVehiclePosition.d.ts +7 -5
  36. package/common/utils/getVehiclePosition.d.ts.map +1 -1
  37. package/common/utils/index.d.ts +2 -2
  38. package/common/utils/index.js +3 -3
  39. package/common/utils/realtimeConfig.d.ts +49 -0
  40. package/common/utils/realtimeConfig.d.ts.map +1 -0
  41. package/common/utils/{trackerConfig.js → realtimeConfig.js} +17 -17
  42. package/common/utils/sortByDelay.d.ts +1 -1
  43. package/common/utils/sortByDelay.d.ts.map +1 -1
  44. package/common/utils/timeUtils.d.ts +23 -4
  45. package/common/utils/timeUtils.d.ts.map +1 -1
  46. package/common/utils/timeUtils.js +1 -1
  47. package/mbt.js +172 -168
  48. package/mbt.js.map +3 -3
  49. package/mbt.min.js +62 -62
  50. package/mbt.min.js.map +3 -3
  51. package/ol/controls/RoutingControl.d.ts +95 -91
  52. package/ol/controls/RoutingControl.d.ts.map +1 -1
  53. package/ol/controls/RoutingControl.js +100 -90
  54. package/ol/layers/Layer.d.ts +3 -2
  55. package/ol/layers/Layer.d.ts.map +1 -1
  56. package/ol/layers/Layer.js +2 -0
  57. package/ol/layers/MapGlLayer.d.ts.map +1 -1
  58. package/ol/layers/MapGlLayer.js +3 -5
  59. package/ol/layers/MapboxLayer.d.ts +1 -1
  60. package/ol/layers/MapboxLayer.d.ts.map +1 -1
  61. package/ol/layers/MapboxLayer.js +1 -0
  62. package/ol/layers/MapboxStyleLayer.js +4 -2
  63. package/ol/layers/MaplibreLayer.d.ts +2 -1
  64. package/ol/layers/MaplibreLayer.d.ts.map +1 -1
  65. package/ol/layers/RoutingLayer.d.ts +15 -5
  66. package/ol/layers/RoutingLayer.d.ts.map +1 -1
  67. package/ol/layers/RoutingLayer.js +3 -2
  68. package/ol/styles/fullTrajectoryStyle.d.ts +2 -2
  69. package/ol/styles/fullTrajectoryStyle.d.ts.map +1 -1
  70. package/package.json +1 -1
  71. package/types/common.d.ts +6 -1
  72. package/types/realtime.d.ts +16 -4
  73. package/common/utils/createTrackerFilters.d.ts.map +0 -1
  74. package/common/utils/trackerConfig.d.ts +0 -24
  75. package/common/utils/trackerConfig.d.ts.map +0 -1
@@ -1,4 +1,34 @@
1
- export default RoutingControl;
1
+ import { Feature } from 'ol';
2
+ import type { Map, MapBrowserEvent } from 'ol';
3
+ import { Geometry, LineString, Point } from 'ol/geom';
4
+ import { Modify } from 'ol/interaction';
5
+ import { GeoJSON } from 'ol/format';
6
+ import type { Coordinate } from 'ol/coordinate';
7
+ import type { StyleLike } from 'ol/style/Style';
8
+ import { EventsKey } from 'ol/events';
9
+ import { ModifyEvent } from 'ol/interaction/Modify';
10
+ import { RoutingAPI } from '../../api';
11
+ import ControlCommon from '../../common/controls/ControlCommon';
12
+ import type { ControlCommonOptions } from '../../common/controls/ControlCommon';
13
+ import RoutingLayer from '../layers/RoutingLayer';
14
+ import type { RoutingGraph, RoutingMot, RoutingParameters, RoutingViaPoint } from '../../types';
15
+ export declare type RoutingControlOptions = ControlCommonOptions & {
16
+ apiKey?: string;
17
+ stopsApiKey?: string;
18
+ stopsApiUrl?: string;
19
+ routingLayer?: RoutingLayer;
20
+ graphs?: RoutingGraph[];
21
+ mot?: string;
22
+ modify?: boolean;
23
+ routingApiParams?: RoutingParameters;
24
+ useRawViaPoints?: boolean;
25
+ snapToClosestStation?: boolean;
26
+ style?: StyleLike;
27
+ onRouteError?: () => void;
28
+ };
29
+ export declare type AbotControllersByGraph = {
30
+ [key: string]: AbortController;
31
+ };
2
32
  /**
3
33
  * Display a route of a specified mean of transport.
4
34
  *
@@ -30,70 +60,45 @@ export default RoutingControl;
30
60
  * @extends {Control}
31
61
  * @implements {RoutingInterface}
32
62
  */
33
- declare class RoutingControl implements RoutingInterface {
34
- /**
35
- * Calculate at which resolutions corresponds each generalizations.
36
- *
37
- * @private
38
- */
39
- private static getGraphsResolutions;
40
- constructor(options?: {});
41
- /** True if the control is requesting the backend. */
63
+ declare class RoutingControl extends ControlCommon {
64
+ map?: Map;
65
+ viaPoints: RoutingViaPoint[];
66
+ routingLayer?: RoutingLayer;
42
67
  loading: boolean;
43
- /** @ignore */
44
- graphs: any;
45
- /** @ignore */
46
- mot: any;
47
- /** @ignore */
68
+ graphs: RoutingGraph[];
69
+ mot?: RoutingMot;
48
70
  modify: boolean;
49
- /** @ignore */
50
- routingApiParams: any;
51
- /** @ignore */
52
- useRawViaPoints: any;
53
- /** @ignore */
54
- snapToClosestStation: any;
55
- /** @ignore */
56
- cacheStationData: {};
57
- /** @ignore */
58
- abortControllers: any[];
59
- /** @ignore */
60
- apiKey: any;
61
- /** @ignore */
62
- stopsApiKey: any;
63
- /** @ignore */
64
- segments: any[];
65
- /** @ignore */
66
- stopsApiUrl: any;
67
- /** @ignore */
68
- api: RoutingAPI;
69
- /** @ignore */
70
- routingLayer: any;
71
- /** @ignore */
72
- onRouteError: any;
73
- /** @ignore */
74
- viaPoints: any[];
75
- /**
76
- * Used on click on map while control is active:
77
- * By default adds a viaPoint to the end of array.
78
- * If an existing viaPoint is clicked removes the clicked viaPoint.
79
- * @private
80
- */
81
- private onMapClick;
71
+ routingApiParams?: RoutingParameters;
72
+ useRawViaPoints: boolean;
73
+ snapToClosestStation: boolean;
74
+ cacheStationData: {
75
+ [key: string]: Coordinate;
76
+ };
77
+ abortControllers: {
78
+ [key: string]: AbortController;
79
+ };
80
+ apiKey?: string;
81
+ stopsApiKey?: string;
82
+ segments: Feature<LineString>[];
83
+ stopsApiUrl?: string;
84
+ api?: RoutingAPI;
85
+ format: GeoJSON;
86
+ graphsResolutions?: [number, number][];
87
+ onRouteError: (error?: Error, control?: RoutingControl) => void;
88
+ onMapClickKey?: EventsKey;
89
+ modifyInteraction?: Modify;
90
+ initialRouteDrag?: {
91
+ viaPoint?: Feature<Point>;
92
+ oldRoute?: Feature<LineString>;
93
+ segmentIndex?: number;
94
+ };
95
+ constructor(options?: RoutingControlOptions);
82
96
  /**
83
- * Used on end of the modify interaction. Resolves feature modification:
84
- * Line drag creates new viaPoint at the final coordinate of drag.
85
- * Point drag replaces old viaPoint.
86
- * @private
87
- */
88
- private onModifyEnd;
89
- /**
90
- * Used on start of the modify interaction. Stores relevant data
91
- * in this.initialRouteDrag object
97
+ * Calculate at which resolutions corresponds each generalizations.
98
+ *
92
99
  * @private
93
100
  */
94
- private onModifyStart;
95
- /** @ignore */
96
- apiChangeListener: () => Promise<void | Feature<import("ol/geom/Geometry").default>> | Promise<Feature<import("ol/geom/Geometry").default> | null> | Promise<any[]> | null;
101
+ static getGraphsResolutions(graphs: RoutingGraph[], map: Map): [number, number][];
97
102
  /**
98
103
  * Adds/Replaces a viaPoint to the viaPoints array and redraws route:
99
104
  * Adds a viaPoint at end of array by default.
@@ -104,7 +109,7 @@ declare class RoutingControl implements RoutingInterface {
104
109
  * @param {number} [index=-1] Integer representing the index of the added viaPoint. If not specified, the viaPoint is added at the end of the array.
105
110
  * @param {number} [overwrite=0] Marks the number of viaPoints that are removed at the specified index on add.
106
111
  */
107
- addViaPoint(coordinatesOrString: any, index?: number | undefined, overwrite?: number | undefined): void;
112
+ addViaPoint(coordinatesOrString: RoutingViaPoint, index?: number, overwrite?: number): void;
108
113
  /**
109
114
  * Removes a viaPoint at the passed array index and redraws route
110
115
  * By default the last viaPoint is removed.
@@ -115,7 +120,7 @@ declare class RoutingControl implements RoutingInterface {
115
120
  * Replaces the current viaPoints with a new coordinate array.
116
121
  * @param {Array<Array<number>>} coordinateArray Array of nested coordinates
117
122
  */
118
- setViaPoints(coordinateArray: Array<Array<number>>): void;
123
+ setViaPoints(coordinateArray: Coordinate[]): void;
119
124
  /**
120
125
  * Removes all viaPoints, clears the source and triggers a change event
121
126
  */
@@ -124,7 +129,7 @@ declare class RoutingControl implements RoutingInterface {
124
129
  * Aborts viapoint and route requests
125
130
  * @private
126
131
  */
127
- private abortRequests;
132
+ abortRequests(): void;
128
133
  /**
129
134
  * Draws route on map using an array of coordinates:
130
135
  * If a single coordinate is passed a single point feature is added to map.
@@ -132,58 +137,57 @@ declare class RoutingControl implements RoutingInterface {
132
137
  * the route using the passed coordinates and the current mot.
133
138
  * @private
134
139
  */
135
- private drawRoute;
140
+ drawRoute(): Promise<void | Feature<Geometry>> | Promise<Feature<Geometry> | null> | Promise<(void | never[])[]> | null;
136
141
  /**
137
142
  * Draw a via point. This function can parse all the possibilitiies
138
143
  *
139
144
  * @private
140
145
  */
141
- private drawViaPoint;
142
- /** @ignore */
143
- initialRouteDrag: {
144
- viaPoint: any;
145
- oldRoute: any;
146
- segmentIndex: number;
147
- } | undefined;
146
+ drawViaPoint(viaPoint: RoutingViaPoint, idx: number, abortController: AbortController): Promise<void | Feature<Geometry>> | Promise<Feature<Geometry> | null>;
148
147
  /**
149
- * Define a default element.
150
- *
148
+ * Used on click on map while control is active:
149
+ * By default adds a viaPoint to the end of array.
150
+ * If an existing viaPoint is clicked removes the clicked viaPoint.
151
151
  * @private
152
152
  */
153
- private createDefaultElement;
154
- /** @ignore */
155
- element: HTMLButtonElement | undefined;
153
+ onMapClick(evt: MapBrowserEvent<MouseEvent>): void;
156
154
  /**
157
- * Create the interaction used to modify vertexes of features.
155
+ * Used on start of the modify interaction. Stores relevant data
156
+ * in this.initialRouteDrag object
158
157
  * @private
159
158
  */
160
- private createModifyInteraction;
159
+ onModifyStart(evt: ModifyEvent): void;
161
160
  /**
162
- * @type {ol.interaction.Modify}
161
+ * Used on end of the modify interaction. Resolves feature modification:
162
+ * Line drag creates new viaPoint at the final coordinate of drag.
163
+ * Point drag replaces old viaPoint.
163
164
  * @private
164
165
  */
165
- private modifyInteraction;
166
+ onModifyEnd(evt: ModifyEvent): void | Promise<never>;
167
+ /**
168
+ * Define a default element.
169
+ *
170
+ * @private
171
+ */
172
+ createDefaultElement(): void;
173
+ /**
174
+ * Create the interaction used to modify vertexes of features.
175
+ * @private
176
+ */
177
+ createModifyInteraction(): void;
166
178
  /**
167
179
  * Add click listener to map.
168
180
  * @private
169
181
  */
170
- private addListeners;
171
- /** @ignore */
172
- onMapClickKey: any;
182
+ addListeners(): void;
173
183
  /**
174
184
  * Remove click listener from map.
175
185
  * @private
176
186
  */
177
- private removeListeners;
187
+ removeListeners(): void;
178
188
  activate(): void;
179
- /** @ignore */
180
- format: GeoJSON | undefined;
181
- /** @ignore */
182
- graphsResolutions: any;
183
189
  deactivate(): void;
184
190
  render(): void;
185
191
  }
186
- import { RoutingAPI } from "../../api";
187
- import { Feature } from "ol";
188
- import { GeoJSON } from "ol/format";
192
+ export default RoutingControl;
189
193
  //# sourceMappingURL=RoutingControl.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"RoutingControl.d.ts","sourceRoot":"","sources":["../../../src/ol/controls/RoutingControl.js"],"names":[],"mappings":";AAiDA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,wCAFgB,gBAAgB;IAoH9B;;;;OAIG;IACH,oCAMC;IA5HD,0BA+GC;IAlFC,qDAAqD;IACrD,iBAAoB;IAEpB,cAAc;IACd,YAAgD;IAEhD,cAAc;IACd,SAA+B;IAE/B,cAAc;IACd,gBAAsC;IAEtC,cAAc;IACd,sBAAsD;IAEtD,cAAc;IACd,qBAAuD;IAEvD,cAAc;IACd,0BAAiE;IAEjE,cAAc;IACd,qBAA0B;IAE1B,cAAc;IACd,wBAA0B;IAE1B,cAAc;IACd,YAA4B;IAE5B,cAAc;IACd,iBAAqD;IAErD,cAAc;IACd,gBAAkB;IAElB,cAAc;IACd,iBAA0E;IAE1E,cAAc;IACd,gBAEE;IAEF,cAAc;IACd,kBAKI;IAEJ,cAAc;IACd,kBAUI;IAEJ,cAAc;IACd,iBAAmB;IAoXrB;;;;;OAKG;IACH,mBAeC;IA4CD;;;;;OAKG;IACH,oBAqBC;IArED;;;;OAIG;IACH,sBAmCC;IAxaC,cAAc;IACd,2KAA+C;IAmBjD;;;;;;;;;OASG;IACH,wGAYC;IAED;;;;OAIG;IACH,uBAFW,MAAM,QAYhB;IAED;;;OAGG;IACH,8BAFW,MAAM,MAAM,MAAM,CAAC,CAAC,QAS9B;IAED;;OAEG;IACH,cASC;IAED;;;OAGG;IACH,sBAeC;IAED;;;;;;OAMG;IACH,kBA0HC;IAED;;;;OAIG;IACH,qBAkHC;IA2DC,cAAc;IACd;;;;kBAIC;IAgCH;;;;OAIG;IACH,6BAYC;IAXC,cAAc;IACd,uCAA+C;IAYjD;;;OAGG;IACH,gCA8BC;IA7BC;;;OAGG;IAEH,0BAoBE;IAMJ;;;OAGG;IACH,qBAOC;IAFC,cAAc;IACd,mBAAgE;IAGlE;;;OAGG;IACH,wBAEC;IAED,iBA2BC;IAxBG,cAAc;IACd,4BAEE;IAEF,cAAc;IACd,uBAGC;IAiBL,mBAQC;IAED,eAAW;CACZ"}
1
+ {"version":3,"file":"RoutingControl.d.ts","sourceRoot":"","sources":["../../../src/ol/controls/RoutingControl.ts"],"names":[],"mappings":"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"}