UNPKG

expo-osm-sdk

Version:

OpenStreetMap component for React Native with Expo

20 lines 511 B
import React from 'react'; import { SearchBoxProps } from '../types'; /** * SearchBox Component - Simple, clean search with autocomplete * * @example * <SearchBox * onLocationSelected={(location) => { * mapRef.current?.animateToLocation( * location.coordinate.latitude, * location.coordinate.longitude, * 15 * ); * }} * maxResults={5} * autoComplete={true} * /> */ export declare const SearchBox: React.FC<SearchBoxProps>; //# sourceMappingURL=SearchBox.d.ts.map