import { default as GaodeMapNext } from './amap-next'; import BaiduMap from './bmap/'; import Earth from './earth/'; import GoogleMap from './gmap'; import Map from './map/'; import Mapbox from './mapbox/'; import MapLibre from './maplibre'; import TMap from './tdtmap'; import TencentMap from './tmap'; import type { MapType } from './types'; export { default as Viewport } from './lib/web-mercator-viewport'; export * from './utils'; declare const GaodeMap: typeof GaodeMapNext; /** * @deprecated * 不再支持 GaodeMapV1,自动指向最新版 GaodeMap V2 */ declare const GaodeMapV1: typeof GaodeMapNext; /** * @deprecated * 不再暴露 GaodeMapV2,默认自动指向最新版 GaodeMap */ declare const GaodeMapV2: typeof GaodeMapNext; export { BaiduMap, Earth, GaodeMap, GaodeMapV1, GaodeMapV2, GoogleMap, Map, Mapbox, MapLibre, MapType, TencentMap, TMap, };