@maptiler/geocoding-control
Version:
The Javascript & TypeScript Map Control component for MapTiler Geocoding service. Easy to be integrated into any JavaScript mapping application.
19 lines (18 loc) • 573 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
displayIn: "list" | "leaflet" | "maplibre";
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
exports?: {} | undefined;
bindings?: string | undefined;
};
export type MarkerIconProps = typeof __propDef.props;
export type MarkerIconEvents = typeof __propDef.events;
export type MarkerIconSlots = typeof __propDef.slots;
export default class MarkerIcon extends SvelteComponent<MarkerIconProps, MarkerIconEvents, MarkerIconSlots> {
}
export {};