@w3geo/vue-place-search
Version:
Vue3 place search for Austria, using the [BEV Kataster](https://kataster.bev.gv.at/) API.
17 lines (16 loc) • 459 B
TypeScript
import { default as PlaceSearch } from './components/PlaceSearch.vue';
export { PlaceSearch };
export { usePlaceSearch } from './composables/usePlaceSearch.js';
export type PlaceProperties = {
name: string;
objectType: number;
pg?: string;
kg_nr?: string;
};
export type PlaceItem = {
properties: PlaceProperties;
geometry: import('geojson').Polygon | import('geojson').Point;
type?: string;
score?: number;
id: string;
};