mx-ui-components
Version:
mobius ui library
19 lines (18 loc) • 728 B
TypeScript
import BaseComponent from "../Counter/BaseComponent";
import "leaflet/dist/leaflet.css";
export default class MobiusLeafletMap extends BaseComponent {
props: {};
private _marker;
private _map;
private _highlightLayer;
constructor();
connectedCallback(): void;
geocodePincodeNominatim(pincode: string, zoom: any, label: string): Promise<void>;
highlightArea(boundingbox: string[]): void;
updateGPSData: () => Promise<void>;
GetGPSData: () => Promise<unknown>;
ApplyStyling: () => void;
addMap(latitude: number, longitude: number, zoom: number, label: string): void;
changeLocation(latitude: number, longitude: number, label?: string): void;
render(height: string): void;
}