UNPKG

@rsmap/vue3ol

Version:

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

14 lines (12 loc) 507 B
import { Layer } from 'ol/layer'; import { default as WebGLVectorLayerRenderer } from 'ol/renderer/webgl/VectorLayer'; import { LayersCommonProps } from './LayersCommonProps'; import { WebGLStyle } from 'ol/style/webgl'; export type WebGLVectorLayerOptions = LayersCommonProps & { styles?: WebGLStyle; }; export declare class WebGLVectorLayer extends Layer { static options: WebGLVectorLayerOptions; constructor(opts: WebGLVectorLayerOptions); createRenderer(): WebGLVectorLayerRenderer; }