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