@idm-plugin/vessel 2.3.3 → 2.3.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.
@@ -145,6 +145,18 @@ export declare class MyVesselImpl extends AISImpl {
145
145
  realTimePosition(mmsi: number, options?: {
146
146
  requestId?: string;
147
147
  }): Promise<AISRecord>;
148
+ calculateRoute(from: {
149
+ lng: number;
150
+ lat: number;
151
+ }, to: {
152
+ lng: number;
153
+ lat: number;
154
+ }, options?: {
155
+ requestId?: string;
156
+ useAIModel?: boolean;
157
+ withECA?: boolean;
158
+ maxDraught?: number;
159
+ }): Promise<any>;
148
160
  trajectory(mmsi: number, startTime: string, endTime: string, offset: number, scale?: boolean, options?: {
149
161
  requestId?: string;
150
162
  }): Promise<AISRecord[]>;