vue3-openlayers
Version:
OpenLayers Wrapper for Vue3
17 lines (15 loc) • 922 B
TypeScript
import { App } from 'vue';
import { default as OlGeomCircle } from './OlGeomCircle.vue';
import { default as OlGeomLineString } from './OlGeomLineString.vue';
import { default as OlGeomMultiLineString } from './OlGeomMultiLineString.vue';
import { default as OlGeomMultiPoint } from './OlGeomMultiPoint.vue';
import { default as OlGeomMultiPolygon } from './OlGeomMultiPolygon.vue';
import { default as OlGeomPoint } from './OlGeomPoint.vue';
import { default as OlGeomPolygon } from './OlGeomPolygon.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, OlGeomCircle, OlGeomLineString, OlGeomMultiLineString, OlGeomMultiPoint, OlGeomMultiPolygon, OlGeomPoint, OlGeomPolygon, };