UNPKG

@rsmap/vue3ol

Version:

使用 vue3 风格封装后的 Openlayer 地图组件库。

23 lines (21 loc) 1.67 kB
import { App } from 'vue'; import { default as OlInteractionClusterselect } from './OlInteractionClusterselect.vue'; import { default as OlInteractionDragbox } from './OlInteractionDragbox.vue'; import { default as OlInteractionDragrotate } from './OlInteractionDragrotate.vue'; import { default as OlInteractionDragrotatezoom } from './OlInteractionDragrotatezoom.vue'; import { default as OlInteractionLink } from './OlInteractionLink.vue'; import { default as OlInteractionSelect } from './OlInteractionSelect.vue'; import { default as OlInteractionDraw } from './OlInteractionDraw.vue'; import { default as OlInteractionModify } from './OlInteractionModify.vue'; import { default as OlInteractionPointer } from './OlInteractionPointer.vue'; import { default as OlInteractionSnap } from './OlInteractionSnap.vue'; import { default as OlInteractionTransform } from './OlInteractionTransform.vue'; import { default as OlInteractionMouseWheelZoom } from './OlInteractionMouseWheelZoom.vue'; import { default as OlDrawBasicInteraction } from './OlDrawBasicInteraction.vue'; import { Vue3OpenlayersGlobalOptions } from '../../types'; declare function install(app: App, options?: Vue3OpenlayersGlobalOptions): void; declare module "@vue/runtime-core" { function inject(key: "ol-options"): Vue3OpenlayersGlobalOptions; } export default install; export { install, OlInteractionClusterselect, OlInteractionDragbox, OlInteractionDragrotate, OlInteractionDragrotatezoom, OlInteractionLink, OlInteractionSelect, OlInteractionDraw, OlInteractionModify, OlInteractionPointer, OlInteractionSnap, OlInteractionTransform, OlInteractionMouseWheelZoom, OlDrawBasicInteraction, };