@idm-plugin/geo 1.9.2 → 1.9.4
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.
- package/dist/index.js +184 -174
- package/dist/index.umd.cjs +3 -3
- package/dist/lane/src/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/lane/src/index.d.ts
CHANGED
|
@@ -362,4 +362,10 @@ export declare class LaneHelper {
|
|
|
362
362
|
* }
|
|
363
363
|
*/
|
|
364
364
|
static pickUTCSampleFromSpeed(utc: string, speed: any): any;
|
|
365
|
+
static pickUTCSampleFromRoute(utc: string, from: {
|
|
366
|
+
lat: number;
|
|
367
|
+
lng: number;
|
|
368
|
+
speed: number;
|
|
369
|
+
etd: string;
|
|
370
|
+
}, route: any[]): any;
|
|
365
371
|
}
|