import * as React from 'react'; import type { MapViewProps, MapViewRef } from './types'; export type { MapViewRef } from './types'; /** * 高德地图视图组件,提供地图操作API和覆盖物管理功能 * * @param props - 组件属性 * @param ref - 外部ref引用,用于访问地图API方法 * @returns 返回包含地图视图和上下文提供者的React组件 * * @remarks * 该组件内部维护两个ref: * - nativeRef: 指向原生地图视图的引用 * - internalRef: 内部使用的API引用,通过MapContext共享 * * 提供的主要API功能包括: * - 相机控制(移动、缩放、获取当前位置) * - 覆盖物管理(添加/删除/更新标记、折线、多边形、圆形等) * * 所有API方法都会检查地图是否已初始化,未初始化时抛出错误 */ declare const ExpoGaodeMapView: React.ForwardRefExoticComponent>; export default ExpoGaodeMapView; //# sourceMappingURL=ExpoGaodeMapView.d.ts.map