export class YioMap extends LitElement { static styles: import("lit").CSSResult[]; static properties: { center: { type: ArrayConstructor; reflect: boolean; }; zoom: { type: NumberConstructor; reflect: boolean; }; contentMap: { type: StringConstructor; }; editCreate: { type: StringConstructor; }; editModify: { type: ArrayConstructor; }; enablePinning: { type: BooleanConstructor; }; enableSelect: { type: BooleanConstructor; }; enableSearch: { type: BooleanConstructor; }; lang: { type: StringConstructor; }; geojsonSources: { type: ObjectConstructor; }; editFeatures: { attribute: boolean; }; lastClickCoordinate: { type: ArrayConstructor; attribute: boolean; }; userSelect: { attribute: boolean; }; sourceLayerVisibility: { type: ObjectConstructor; }; }; /** @type {boolean} */ notifyNextChange: boolean; center: number[]; zoom: number; userSelect: any[]; /** * @returns {LayerGroup} */ _getContentLayer(): LayerGroup; /** * @returns {Promise} */ _getContentLayerPromise(): Promise; /** * @param {Event} event */ _handleClick(event: Event): void; lastClickCoordinate: import("ol/coordinate").Coordinate; set contentMap(value: string); get contentMap(): string; set editCreate(value: string); get editCreate(): string; set editModify(value: number[]); get editModify(): number[]; set enableSelect(value: boolean); get enableSelect(): boolean; set enablePinning(value: boolean); get enablePinning(): boolean; set geojsonSources(value: any); get geojsonSources(): any; set sourceLayerVisibility(value: any); get sourceLayerVisibility(): any; set enableSearch(value: boolean); get enableSearch(): boolean; get editFeatures(): any; firstUpdated(changedProperties: any): void; updated(changedProperties: any): void; /** * Set the pin to a specific location. * @param {Array} lonLat - [longitude, latitude] in EPSG:4326 */ setPin(lonLat: Array): void; render(): import("lit-html").TemplateResult<1>; #private; } import { LitElement } from 'lit'; import LayerGroup from 'ol/layer/Group.js'; //# sourceMappingURL=YioMap.d.ts.map