vue3-openlayers
Version:
OpenLayers Wrapper for Vue3
14 lines (13 loc) • 673 B
TypeScript
import { ProjectionDefinition } from 'proj4';
import { default as Projection } from 'ol/proj/Projection';
import { Extent } from 'ol/extent';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
type __VLS_Props = {
projectionName: string;
projectionDef: string | ProjectionDefinition;
projectionExtent?: Extent;
};
declare const _default: DefineComponent<__VLS_Props, {
projection: Projection;
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;