@antv/l7-mapkit 0.3.0 → 0.4.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.
Files changed (34) hide show
  1. package/es/index.d.ts +990 -0
  2. package/lib/index.js +16 -0
  3. package/package.json +11 -13
  4. package/dist/component/Control/CustomControl.d.ts +0 -22
  5. package/dist/component/Control/ExportImageControl.d.ts +0 -36
  6. package/dist/component/Control/FullscreenControl.d.ts +0 -38
  7. package/dist/component/Control/GeoLocateControl.d.ts +0 -34
  8. package/dist/component/Control/MapThemeControl.d.ts +0 -56
  9. package/dist/component/Control/MouseLocationControl.d.ts +0 -30
  10. package/dist/component/Control/ScaleControl.d.ts +0 -36
  11. package/dist/component/Control/ZoomControl.d.ts +0 -34
  12. package/dist/component/Control/types.d.ts +0 -17
  13. package/dist/component/Control.d.ts +0 -44
  14. package/dist/component/CustomControl.d.ts +0 -32
  15. package/dist/component/Layer.d.ts +0 -79
  16. package/dist/component/LayerAttribute/BaseLayer.d.ts +0 -14
  17. package/dist/component/LayerAttribute/index.d.ts +0 -136
  18. package/dist/component/LayerContext.d.ts +0 -29
  19. package/dist/component/Legend/LegendCategories.d.ts +0 -26
  20. package/dist/component/Legend/LegendIcon.d.ts +0 -26
  21. package/dist/component/Legend/LegendProportion.d.ts +0 -19
  22. package/dist/component/Legend/LegendRamp.d.ts +0 -23
  23. package/dist/component/LoadImage.d.ts +0 -49
  24. package/dist/component/MapScene/GaodeMapScene.d.ts +0 -17
  25. package/dist/component/MapScene/MapScene.d.ts +0 -18
  26. package/dist/component/MapScene/interface.d.ts +0 -31
  27. package/dist/component/Marker.d.ts +0 -40
  28. package/dist/component/MarkerLayer.d.ts +0 -56
  29. package/dist/component/Popup.d.ts +0 -36
  30. package/dist/component/SceneContext.d.ts +0 -32
  31. package/dist/index.d.ts +0 -67
  32. package/dist/l7-mapkit.umd.cjs +0 -16
  33. package/dist/utils/style.d.ts +0 -7
  34. /package/{dist/l7-mapkit.js → es/index.js} +0 -0
@@ -1,136 +0,0 @@
1
- import type { IAnimateOption, IActiveOption, ILayer, ISourceCFG, Scene } from '@antv/l7';
2
- import type React from 'react';
3
- /**
4
- * 所有图层组件的通用 Props 接口。
5
- * 采用扁平设计,所有视觉映射字段直接作为顶层 props。
6
- *
7
- * @example
8
- * ```tsx
9
- * <PointLayer
10
- * source={data}
11
- * sourceConfig={{ parser: { type: 'json', x: 'lng', y: 'lat' } }}
12
- * colorField="value"
13
- * colorValues={['#f00', '#0f0', '#00f']}
14
- * size={8}
15
- * shape="circle"
16
- * onClick={(e) => console.log(e)}
17
- * />
18
- * ```
19
- */
20
- export interface ILayerProps {
21
- /** 图层名称,用于 LayerSwitch 控件中显示 */
22
- name?: string;
23
- /** 是否可见,默认 true */
24
- visible?: boolean;
25
- /** 图层层级,数值越大越靠上,默认 0 */
26
- zIndex?: number;
27
- /** 最小显示缩放层级 */
28
- minZoom?: number;
29
- /** 最大显示缩放层级 */
30
- maxZoom?: number;
31
- /** 混合模式,如 'normal' | 'additive' | 'subtractive' */
32
- blend?: string;
33
- /** 是否在图层加载后自动缩放到数据范围,默认 false */
34
- autoFit?: boolean;
35
- /**
36
- * 数据源,支持:
37
- * - GeoJSON FeatureCollection
38
- * - 普通数组(需配合 sourceConfig.parser 使用)
39
- * - URL 字符串(CSV/GeoJSON 远程地址)
40
- */
41
- source: any;
42
- /**
43
- * 数据源配置,用于指定 parser(解析器)和 transforms(数据转换)。
44
- * @example
45
- * ```ts
46
- * sourceConfig={{ parser: { type: 'json', x: 'lng', y: 'lat' } }}
47
- * sourceConfig={{ parser: { type: 'csv', x: 'longitude', y: 'latitude' } }}
48
- * ```
49
- */
50
- sourceConfig?: Omit<ISourceCFG, 'data'>;
51
- /**
52
- * 固定颜色值,如 '#ff0000' 或 'red'。
53
- * 与 colorField/colorValues 互斥。
54
- */
55
- color?: string;
56
- /** 颜色映射的数据字段名 */
57
- colorField?: string;
58
- /**
59
- * 颜色映射值,与 colorField 配合使用。
60
- * - 数组:按数据值范围映射到颜色列表
61
- * - 函数:自定义映射逻辑
62
- * @example colorValues={['#fee5d9', '#fc4e2a', '#800026']}
63
- */
64
- colorValues?: string[] | ((fieldValue: any) => string);
65
- /** 固定尺寸值(像素) */
66
- size?: number;
67
- /** 尺寸映射的数据字段名 */
68
- sizeField?: string;
69
- /**
70
- * 尺寸映射范围,与 sizeField 配合使用。
71
- * @example sizeValues={[2, 20]}
72
- */
73
- sizeValues?: number[] | ((fieldValue: any) => number);
74
- /**
75
- * 形状,具体值取决于图层类型:
76
- * - PointLayer: 'circle' | 'triangle' | 'square' | 'hexagon' | 'cylinder' 等
77
- * - LineLayer: 'line' | 'arc' | 'arc3d' | 'greatcircle' 等
78
- */
79
- shape?: string;
80
- /** 形状映射的数据字段名 */
81
- shapeField?: string;
82
- /** 形状映射值,与 shapeField 配合使用 */
83
- shapeValues?: string[] | ((fieldValue: any) => string);
84
- /**
85
- * 图层样式对象,属性取决于图层类型:
86
- * - 通用: { opacity: 0.8 }
87
- * - LineLayer: { lineWidth: 2, lineColor: '#f00' }
88
- * - PointLayer: { stroke: '#fff', strokeWidth: 2 }
89
- */
90
- style?: Record<string, any>;
91
- /** 数据过滤字段名 */
92
- filterField?: string;
93
- /**
94
- * 数据过滤值或过滤函数,与 filterField 配合使用。
95
- * @example filterValues={(val) => val > 100}
96
- */
97
- filterValues?: any[] | ((fieldValue: any) => boolean);
98
- /**
99
- * 动画配置,开启图层动画效果。
100
- * @example animate={{ enable: true, speed: 1, trailLength: 0.5 }}
101
- */
102
- animate?: Partial<IAnimateOption>;
103
- /**
104
- * 高亮(hover)配置:
105
- * - true: 使用默认高亮效果
106
- * - IActiveOption: 自定义高亮颜色 { color: '#00f' }
107
- */
108
- active?: IActiveOption | boolean;
109
- /**
110
- * 选中(click)配置:
111
- * - true: 使用默认选中效果
112
- * - IActiveOption: 自定义选中颜色 { color: '#f00' }
113
- */
114
- select?: IActiveOption | boolean;
115
- /**
116
- * 图层加载完成回调。
117
- * @param layer - L7 ILayer 实例
118
- * @param scene - L7 Scene 实例
119
- */
120
- onLoaded?: (layer: ILayer, scene: Scene) => void;
121
- /** 点击图层要素时触发 */
122
- onClick?: (e: any) => void;
123
- /** 双击图层要素时触发 */
124
- onDblClick?: (e: any) => void;
125
- /** 鼠标移入图层要素时触发 */
126
- onMouseEnter?: (e: any) => void;
127
- /** 鼠标移出图层要素时触发 */
128
- onMouseLeave?: (e: any) => void;
129
- /** 鼠标在图层要素上移动时触发 */
130
- onMouseMove?: (e: any) => void;
131
- /** 点击图层空白区域时触发 */
132
- onUnClick?: (e: any) => void;
133
- /** 上下文菜单(右键)事件 */
134
- onContextMenu?: (e: any) => void;
135
- children?: React.ReactNode;
136
- }
@@ -1,29 +0,0 @@
1
- import type { ILayer } from '@antv/l7';
2
- /**
3
- * L7 Layer 上下文,由各图层组件(PointLayer/LineLayer 等)内部自动提供。
4
- * 通常不需要直接使用此 Context,推荐使用 {@link useLayer} hook。
5
- */
6
- export declare const LayerContext: import("react").Context<ILayer | undefined>;
7
- /**
8
- * 获取当前图层的 ILayer 实例。
9
- * 必须在图层组件(PointLayer/LineLayer 等)的 children 内部使用。
10
- *
11
- * @returns L7 ILayer 实例
12
- *
13
- * @example
14
- * ```tsx
15
- * function MyLayerChild() {
16
- * const layer = useLayer();
17
- * useEffect(() => {
18
- * layer.setBlend('normal');
19
- * }, [layer]);
20
- * return null;
21
- * }
22
- *
23
- * // 使用方式
24
- * <PointLayer source={data} color="red">
25
- * <MyLayerChild />
26
- * </PointLayer>
27
- * ```
28
- */
29
- export declare function useLayer(): ILayer;
@@ -1,26 +0,0 @@
1
- import React from 'react';
2
- /**
3
- * 分类图例属性
4
- */
5
- export interface LegendCategoriesProps {
6
- /** 标签列表 */
7
- labels: string[];
8
- /** 颜色列表或渐变色配置 */
9
- colors: string[] | {
10
- startColor: string;
11
- endColor: string;
12
- };
13
- /** 几何图形类型 */
14
- geometryType?: 'circle' | 'square' | 'rectangle';
15
- /** 是否使用描边颜色 */
16
- isStrokeColor?: boolean;
17
- /** 自定义类名 */
18
- className?: string;
19
- /** 自定义样式 */
20
- style?: React.CSSProperties;
21
- }
22
- /**
23
- * 分类图例组件
24
- * 支持 PC 和移动端响应式布局,使用 Tailwind CSS 样式
25
- */
26
- export declare const LegendCategories: React.FC<LegendCategoriesProps>;
@@ -1,26 +0,0 @@
1
- import React from 'react';
2
- /**
3
- * 图标图例项
4
- */
5
- export interface LegendIconItem {
6
- /** 图标 URL 或 SVG */
7
- icon: string;
8
- /** 标签文本 */
9
- label: string;
10
- }
11
- /**
12
- * 图标图例属性
13
- */
14
- export interface LegendIconProps {
15
- /** 图标列表 */
16
- items: LegendIconItem[];
17
- /** 自定义类名 */
18
- className?: string;
19
- /** 自定义样式 */
20
- style?: React.CSSProperties;
21
- }
22
- /**
23
- * 图标图例组件
24
- * 支持 PC 和移动端响应式布局,使用 Tailwind CSS 样式
25
- */
26
- export declare const LegendIcon: React.FC<LegendIconProps>;
@@ -1,19 +0,0 @@
1
- import React from 'react';
2
- /**
3
- * 比例图例属性
4
- */
5
- export interface LegendProportionProps {
6
- /** 标签列表 [最小值, 最大值] */
7
- labels: [number, number];
8
- /** 填充颜色 */
9
- fillColor?: string;
10
- /** 自定义类名 */
11
- className?: string;
12
- /** 自定义样式 */
13
- style?: React.CSSProperties;
14
- }
15
- /**
16
- * 比例图例组件
17
- * 支持 PC 和移动端响应式布局,使用 Tailwind CSS 样式
18
- */
19
- export declare const LegendProportion: React.FC<LegendProportionProps>;
@@ -1,23 +0,0 @@
1
- import React from 'react';
2
- /**
3
- * 渐变图例属性
4
- */
5
- export interface LegendRampProps {
6
- /** 标签列表 */
7
- labels: (string | number)[];
8
- /** 颜色列表 */
9
- colors: string[];
10
- /** 是否连续 */
11
- isContinuous?: boolean;
12
- /** 标签单位 */
13
- labelUnit?: string;
14
- /** 自定义类名 */
15
- className?: string;
16
- /** 自定义样式 */
17
- style?: React.CSSProperties;
18
- }
19
- /**
20
- * 渐变图例组件
21
- * 支持 PC 和移动端响应式布局,使用 Tailwind CSS 样式
22
- */
23
- export declare const LegendRamp: React.FC<LegendRampProps>;
@@ -1,49 +0,0 @@
1
- export interface ILoadImageProps {
2
- /** 图片名称,用于在图层中引用(如 shape 字段的值) */
3
- name: string;
4
- /**
5
- * 图片地址,支持:
6
- * - URL 字符串(网络图片)
7
- * - base64 字符串
8
- * - HTMLImageElement
9
- */
10
- url: string | HTMLImageElement;
11
- }
12
- export interface ILoadImagesProps {
13
- /**
14
- * 批量加载图片列表
15
- */
16
- images: ILoadImageProps[];
17
- }
18
- /**
19
- * 加载单张图片到地图场景,使其可在图层中通过名称引用。
20
- * 必须在 GaodeMapScene 或 MapScene 内部使用。
21
- *
22
- * @example
23
- * ```tsx
24
- * <GaodeMapScene ...>
25
- * <LoadImage name="car" url="/icons/car.png" />
26
- * <PointLayer
27
- * source={data}
28
- * shape="car"
29
- * />
30
- * </GaodeMapScene>
31
- * ```
32
- */
33
- export declare function LoadImage(props: ILoadImageProps): null;
34
- /**
35
- * 批量加载多张图片到地图场景。
36
- * 必须在 GaodeMapScene 或 MapScene 内部使用。
37
- *
38
- * @example
39
- * ```tsx
40
- * <LoadImages
41
- * images={[
42
- * { name: 'car', url: '/icons/car.png' },
43
- * { name: 'bus', url: '/icons/bus.png' },
44
- * ]}
45
- * />
46
- * ```
47
- */
48
- export declare function LoadImages(props: ILoadImagesProps): import("react/jsx-runtime").JSX.Element;
49
- export default LoadImage;
@@ -1,17 +0,0 @@
1
- import type { ISceneProps } from './interface';
2
- /**
3
- * 高德地图 Scene 组件,基于 @antv/l7 和高德地图 JS API。
4
- *
5
- * @example
6
- * ```tsx
7
- * <GaodeMapScene
8
- * style={{ width: '100%', height: '400px' }}
9
- * mapConfig={{ zoom: 10, center: [120.19, 30.26] }}
10
- * onLoaded={(scene) => console.log('loaded', scene)}
11
- * >
12
- * <PointLayer source={data} colorField="value" colorValues={['#f00','#00f']} />
13
- * </GaodeMapScene>
14
- * ```
15
- */
16
- export declare function GaodeMapScene(props: ISceneProps): import("react/jsx-runtime").JSX.Element;
17
- export default GaodeMapScene;
@@ -1,18 +0,0 @@
1
- import type { ISceneProps } from './interface';
2
- /**
3
- * 内置地图 Scene 组件,使用 L7 内置地图,无需第三方地图服务。
4
- * 适合离线、内网或不需要真实底图的场景。
5
- *
6
- * @example
7
- * ```tsx
8
- * <MapScene
9
- * style={{ width: '100%', height: '400px' }}
10
- * mapConfig={{ zoom: 3, center: [105, 35] }}
11
- * onLoaded={(scene) => console.log('loaded', scene)}
12
- * >
13
- * <PolygonLayer source={geoData} color="#1890ff" opacity={0.6} />
14
- * </MapScene>
15
- * ```
16
- */
17
- export declare function MapScene(props: ISceneProps): import("react/jsx-runtime").JSX.Element;
18
- export default MapScene;
@@ -1,31 +0,0 @@
1
- import type { IMapConfig, ISceneConfig, Scene } from '@antv/l7';
2
- import type React from 'react';
3
- /**
4
- * GaodeMapScene / MapScene 组件的通用 Props
5
- */
6
- export interface ISceneProps {
7
- /** 地图容器 CSS 样式 */
8
- style?: React.CSSProperties;
9
- /** 地图容器 className */
10
- className?: string;
11
- /**
12
- * 地图初始化配置,支持 zoom/center/pitch/rotation/style 等。
13
- * 变更后会自动同步到地图实例。
14
- * @see https://larkmap.antv.antgroup.com/docs/api/scene
15
- */
16
- mapConfig?: Partial<IMapConfig>;
17
- /** Scene 全局配置(renderer 等) */
18
- sceneConfig?: Partial<ISceneConfig>;
19
- /**
20
- * Scene 加载完成回调,可在此时添加图层或执行地图操作。
21
- * @param scene - L7 Scene 实例
22
- */
23
- onLoaded?: (scene: Scene) => void;
24
- /** 点击地图空白区域时触发 */
25
- onClick?: (e: any) => void;
26
- /** 鼠标在地图上移动时触发 */
27
- onMouseMove?: (e: any) => void;
28
- /** 地图缩放层级变化时触发 */
29
- onZoomChange?: (e: any) => void;
30
- children?: React.ReactNode;
31
- }
@@ -1,40 +0,0 @@
1
- import { Marker as L7Marker } from '@antv/l7';
2
- import type { IMarkerOption } from '@antv/l7';
3
- import React from 'react';
4
- export interface IMarkerProps {
5
- /** 经度 */
6
- longitude: number;
7
- /** 纬度 */
8
- latitude: number;
9
- /** Marker 配置项(color/draggable/anchor/offsets 等) */
10
- option?: Partial<IMarkerOption>;
11
- /**
12
- * Marker 加载完成回调
13
- * @param marker - L7 Marker 实例
14
- */
15
- onLoaded?: (marker: L7Marker) => void;
16
- /** 点击 Marker 时触发 */
17
- onClick?: (e: MouseEvent) => void;
18
- /** 鼠标移入 Marker 时触发 */
19
- onMouseEnter?: (e: MouseEvent) => void;
20
- /** 鼠标移出 Marker 时触发 */
21
- onMouseLeave?: (e: MouseEvent) => void;
22
- /** 自定义 Marker 内容,支持任意 React 元素 */
23
- children?: React.ReactNode;
24
- }
25
- /**
26
- * 地图标记点组件,支持自定义 React 内容作为 Marker 图标。
27
- * 必须在 GaodeMapScene 或 MapScene 内部使用。
28
- *
29
- * @example
30
- * ```tsx
31
- * // 默认样式 Marker
32
- * <Marker longitude={120.19} latitude={30.26} />
33
- *
34
- * // 自定义内容 Marker
35
- * <Marker longitude={120.19} latitude={30.26} onClick={(e) => console.log(e)}>
36
- * <div style={{ background: 'red', borderRadius: '50%', width: 24, height: 24 }} />
37
- * </Marker>
38
- * ```
39
- */
40
- export default function Marker(props: IMarkerProps): React.ReactPortal | null;
@@ -1,56 +0,0 @@
1
- import { MarkerLayer as L7MarkerLayer } from '@antv/l7';
2
- import type { IMarkerLayerOption } from '@antv/l7';
3
- export interface IMarkerLayerProps {
4
- /**
5
- * Marker 数据列表,每条数据需包含经纬度字段
6
- */
7
- data: Array<{
8
- longitude: number;
9
- latitude: number;
10
- [key: string]: any;
11
- }>;
12
- /**
13
- * 是否开启聚合,默认 false
14
- */
15
- cluster?: boolean;
16
- /**
17
- * 聚合配置
18
- */
19
- clusterOption?: IMarkerLayerOption['clusterOption'];
20
- /**
21
- * 自定义 Marker 渲染函数,返回 HTMLElement
22
- * @param item - 单条数据
23
- */
24
- renderMarker?: (item: any) => HTMLElement;
25
- /**
26
- * MarkerLayer 加载完成回调
27
- */
28
- onLoaded?: (markerLayer: L7MarkerLayer) => void;
29
- }
30
- /**
31
- * 批量 Marker 图层组件,支持聚合功能。
32
- * 适合渲染大量标记点,性能优于多个独立 Marker 组件。
33
- * 必须在 GaodeMapScene 或 MapScene 内部使用。
34
- *
35
- * @example
36
- * ```tsx
37
- * // 基础用法
38
- * <MarkerLayer
39
- * data={points}
40
- * renderMarker={(item) => {
41
- * const el = document.createElement('div');
42
- * el.className = 'my-marker';
43
- * el.textContent = item.name;
44
- * return el;
45
- * }}
46
- * />
47
- *
48
- * // 开启聚合
49
- * <MarkerLayer
50
- * data={points}
51
- * cluster
52
- * clusterOption={{ radius: 80, maxZoom: 16 }}
53
- * />
54
- * ```
55
- */
56
- export default function MarkerLayer(props: IMarkerLayerProps): null;
@@ -1,36 +0,0 @@
1
- import type { IPopupOption } from '@antv/l7';
2
- import React from 'react';
3
- export interface IPopupProps {
4
- /** 经度 */
5
- longitude: number;
6
- /** 纬度 */
7
- latitude: number;
8
- /** Popup 配置项 */
9
- option?: Partial<IPopupOption>;
10
- /** 是否显示关闭按钮,默认 false */
11
- closeButton?: boolean;
12
- /** Popup 关闭时的回调 */
13
- onClose?: () => void;
14
- /** Popup 内容,支持任意 React 元素 */
15
- children?: React.ReactNode;
16
- }
17
- /**
18
- * 地图弹窗组件,支持自定义 React 内容。
19
- * 必须在 GaodeMapScene 或 MapScene 内部使用。
20
- *
21
- * @example
22
- * ```tsx
23
- * <Popup
24
- * longitude={120.19}
25
- * latitude={30.26}
26
- * closeButton
27
- * onClose={() => setVisible(false)}
28
- * >
29
- * <div>
30
- * <h4>上海</h4>
31
- * <p>人口:2400万</p>
32
- * </div>
33
- * </Popup>
34
- * ```
35
- */
36
- export default function Popup(props: IPopupProps): React.ReactPortal | null;
@@ -1,32 +0,0 @@
1
- import type { Scene } from '@antv/l7';
2
- /**
3
- * L7 Scene 上下文,由 GaodeMapScene / MapScene 组件内部自动提供。
4
- * 通常不需要直接使用此 Context,推荐使用 {@link useScene} hook。
5
- *
6
- * @example
7
- * ```tsx
8
- * // 在 GaodeMapScene 内部的子组件中获取 Scene 实例
9
- * const scene = useScene();
10
- * scene.addLayer(myLayer);
11
- * ```
12
- */
13
- export declare const SceneContext: import("react").Context<Scene | undefined>;
14
- /**
15
- * 获取当前地图场景的 Scene 实例。
16
- * 必须在 `<GaodeMapScene>` 或 `<MapScene>` 组件内部使用。
17
- *
18
- * @returns L7 Scene 实例
19
- * @throws 如果在 Scene 组件外部使用,将返回 undefined
20
- *
21
- * @example
22
- * ```tsx
23
- * function MyLayer() {
24
- * const scene = useScene();
25
- * useEffect(() => {
26
- * console.log('Scene loaded:', scene);
27
- * }, [scene]);
28
- * return null;
29
- * }
30
- * ```
31
- */
32
- export declare function useScene(): Scene;
package/dist/index.d.ts DELETED
@@ -1,67 +0,0 @@
1
- /**
2
- * @antv/l7-mapkit - React components for AntV L7 geospatial visualization
3
- *
4
- * @example
5
- * ```tsx
6
- * import { GaodeMapScene, PointLayer } from '@antv/l7-mapkit';
7
- *
8
- * function App() {
9
- * const data = { type: 'FeatureCollection', features: [...] };
10
- * return (
11
- * <GaodeMapScene
12
- * style={{ width: '100%', height: '400px' }}
13
- * mapConfig={{ zoom: 10, center: [120.19, 30.26] }}
14
- * >
15
- * <PointLayer
16
- * source={data}
17
- * colorField="value"
18
- * colorValues={['#fee5d9', '#cb181d']}
19
- * size={6}
20
- * shape="circle"
21
- * />
22
- * </GaodeMapScene>
23
- * );
24
- * }
25
- * ```
26
- */
27
- export { GaodeMapScene } from './component/MapScene/GaodeMapScene';
28
- export { MapScene } from './component/MapScene/MapScene';
29
- export { useScene, SceneContext } from './component/SceneContext';
30
- export { useLayer, LayerContext } from './component/LayerContext';
31
- export { PointLayer, LineLayer, PolygonLayer, HeatmapLayer, RasterLayer, ImageLayer, } from './component/Layer';
32
- export { default as Control } from './component/Control';
33
- export { default as CustomControl } from './component/CustomControl';
34
- export { ZoomControl } from './component/Control/ZoomControl';
35
- export { ScaleControl } from './component/Control/ScaleControl';
36
- export { FullscreenControl } from './component/Control/FullscreenControl';
37
- export { GeoLocateControl } from './component/Control/GeoLocateControl';
38
- export { MapThemeControl } from './component/Control/MapThemeControl';
39
- export { MouseLocationControl } from './component/Control/MouseLocationControl';
40
- export { ExportImageControl } from './component/Control/ExportImageControl';
41
- export { LegendCategories } from './component/Legend/LegendCategories';
42
- export { LegendRamp } from './component/Legend/LegendRamp';
43
- export { LegendProportion } from './component/Legend/LegendProportion';
44
- export { LegendIcon } from './component/Legend/LegendIcon';
45
- export { default as Marker } from './component/Marker';
46
- export { default as MarkerLayer } from './component/MarkerLayer';
47
- export { default as Popup } from './component/Popup';
48
- export { LoadImage, LoadImages } from './component/LoadImage';
49
- export type { ISceneProps } from './component/MapScene/interface';
50
- export type { ILayerProps } from './component/LayerAttribute/index';
51
- export type { IMarkerProps } from './component/Marker';
52
- export type { IPopupProps } from './component/Popup';
53
- export type { ICustomControlProps } from './component/CustomControl';
54
- export type { IControlProps, ControlType } from './component/Control';
55
- export type { IMarkerLayerProps } from './component/MarkerLayer';
56
- export type { ILoadImageProps, ILoadImagesProps } from './component/LoadImage';
57
- export type { ZoomControlProps } from './component/Control/ZoomControl';
58
- export type { ScaleControlProps } from './component/Control/ScaleControl';
59
- export type { FullscreenControlProps } from './component/Control/FullscreenControl';
60
- export type { GeoLocateControlProps } from './component/Control/GeoLocateControl';
61
- export type { MapThemeControlProps } from './component/Control/MapThemeControl';
62
- export type { MouseLocationControlProps } from './component/Control/MouseLocationControl';
63
- export type { ExportImageControlProps } from './component/Control/ExportImageControl';
64
- export type { LegendCategoriesProps } from './component/Legend/LegendCategories';
65
- export type { LegendRampProps } from './component/Legend/LegendRamp';
66
- export type { LegendProportionProps } from './component/Legend/LegendProportion';
67
- export type { LegendIconProps, LegendIconItem } from './component/Legend/LegendIcon';