UNPKG

@awhere/api

Version:

The awesome aWhere API for JavaScript.

12 lines (11 loc) 343 B
import ItemBase from '../../Item/ItemBase'; export interface IWebMapProps { layerDefinition: any; webMapJSON: any; } export default class WebMap extends ItemBase { get type(): import("@awhere/interfaces").ItemTypeMain.webMap; protected _props: IWebMapProps; get props(): IWebMapProps; set props(value: IWebMapProps); }