@rsmap/vue3ol
Version:
使用 vue3 风格封装后的 Openlayer 地图组件库。
13 lines (11 loc) • 561 B
TypeScript
import { Map, Layers, Sources, MapControls, Geometries, Styles, Interactions, Animations } from './components';
import { default as Providers } from './providers';
import { Plugin, FunctionPlugin } from 'vue';
import { Vue3OpenlayersGlobalOptions } from './types';
export * from './composables';
declare const install: Plugin;
declare const plugin: {
install: FunctionPlugin<any[]>;
};
export default plugin;
export { install, Map, Layers, Sources, MapControls, Geometries, Styles, Interactions, Animations, Providers, type Vue3OpenlayersGlobalOptions, };