UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

19 lines (18 loc) 462 B
import { Style as IStyle } from 'mapbox-gl'; export declare enum WORLD_VIEW { CN = "CN", US = "US", IN = "IN" } export declare enum MapboxThemeTypes { Light = "light", Dark = "dark", EleganceGreen = "eleganceGreen", Outdoors = "outdoors", Streets = "streets" } export declare type ICreateStyles = (queryPath: string, options: { worldView?: WORLD_VIEW; mapThemeType?: MapboxThemeTypes; tilePath?: string; }) => IStyle;