tg-map-vue3
Version:
封装 百度地图, Google地图, Here地图(未完成) 的Vue3组件库
11 lines (10 loc) • 339 B
TypeScript
import type { AbstractMap } from './map/map';
import { MapOptions } from './map/map-options';
export declare enum TgMapType {
google = "google",
baidu = "baidu",
here = "here"
}
export declare namespace TgMapFactory {
function createMap(type: TgMapType, $map: HTMLElement, mapOptions?: Partial<MapOptions>): AbstractMap;
}