@geogirafe/lib-geoportal
Version:
GeoGirafe is a flexible application to build online geoportals.
17 lines (16 loc) • 538 B
TypeScript
import GirafeHTMLElement from '../../base/GirafeHTMLElement.js';
declare class CoordinateComponent extends GirafeHTMLElement {
#private;
protected templateUrl: string | null;
protected styleUrls: string[] | null;
template: () => import("uhtml").Hole;
east: string | null;
north: string | null;
constructor();
get locale(): string;
render(): void;
registerEvents(): void;
onChangeCoordinates(coord: number[]): void;
protected connectedCallback(): void;
}
export default CoordinateComponent;