@idm-plugin/vessel 3.4.9 → 3.5.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.
- package/dist/ais/src/index.d.ts +6 -4
- package/dist/index.js +521 -518
- package/dist/index.umd.cjs +1 -1
- package/package.json +2 -2
package/dist/ais/src/index.d.ts
CHANGED
|
@@ -154,11 +154,13 @@ export declare class MyVesselImpl extends AISImpl {
|
|
|
154
154
|
* @param options { requiretId: '请求ID', useAIModel: '启用AI算法', withECA: '是否计算低硫区航行距离', withSpecial: '是否计算穿越的特战区列表和海盗区列表', draught: '最大吃水' }
|
|
155
155
|
*/
|
|
156
156
|
calculateRoute(from: {
|
|
157
|
-
lng
|
|
158
|
-
lat
|
|
157
|
+
lng?: number;
|
|
158
|
+
lat?: number;
|
|
159
|
+
code?: string;
|
|
159
160
|
}, to: {
|
|
160
|
-
lng
|
|
161
|
-
lat
|
|
161
|
+
lng?: number;
|
|
162
|
+
lat?: number;
|
|
163
|
+
code?: string;
|
|
162
164
|
}, crossMonths: number[], excludeNodes: string[], excludeSeas: string[], options?: {
|
|
163
165
|
requestId?: string;
|
|
164
166
|
useAIModel?: boolean;
|