UNPKG

@web-map-service/map2d-app

Version:

基于openlayer的2D地图应用

11 lines (10 loc) 329 B
import { Map2DOptions } from '@web-map-service/map2d'; import { App, PluginOptions } from './types'; interface AppOptions { el: Map2DOptions['el']; baseMap?: Map2DOptions['baseMap']; view?: Map2DOptions['view']; plugins?: PluginOptions[]; } export declare function createApp(options: AppOptions): App; export {};