@wenle_2523097/agri-map 2.0.7 → 2.0.9
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/README.md +7 -5
- package/dist/components/PlotLayer/usePlotData.d.ts +7 -0
- package/dist/components/TrackPlayer/__tests__/index.test.d.ts +1 -1
- package/dist/components/TrackPlayer/__tests__/useTimeline.test.d.ts +5 -0
- package/dist/components/TrackPlayer/hooks/useTimeline.d.ts +58 -0
- package/dist/components/TrackPlayer/index.d.ts +13 -0
- package/dist/components/TrackPlayer/types.d.ts +30 -1
- package/dist/components/plotgrouplayer.esm.js +90 -6
- package/dist/components/plotgrouplayer.esm.js.map +1 -1
- package/dist/components/plotlayer.esm.js +90 -6
- package/dist/components/plotlayer.esm.js.map +1 -1
- package/dist/index.esm.js +117 -8
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +117 -8
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +117 -8
- package/dist/index.umd.js.map +1 -1
- package/dist/types/plot.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/plot.d.ts
CHANGED
|
@@ -56,6 +56,13 @@ export interface PlotData {
|
|
|
56
56
|
* @default undefined
|
|
57
57
|
*/
|
|
58
58
|
selectedPath?: PathOptions | null | false;
|
|
59
|
+
/**
|
|
60
|
+
* 内部字段:记录输入坐标格式
|
|
61
|
+
* @description 用于输出时保持与输入相同的坐标格式
|
|
62
|
+
* - 'lat-lng': 输入是 [lat, lng] 格式
|
|
63
|
+
* - 'lng-lat': 输入是 [lng, lat] 格式
|
|
64
|
+
*/
|
|
65
|
+
_coordinateOrder?: 'lat-lng' | 'lng-lat';
|
|
59
66
|
/** 其他扩展属性 */
|
|
60
67
|
[key: string]: unknown;
|
|
61
68
|
}
|