UNPKG

expo-osm-sdk

Version:

OpenStreetMap component for React Native with Expo

14 lines 484 B
import React from 'react'; import { MarkerProps } from '../types'; /** * Marker component for OSMView * * Note: This component is primarily a data container for markers. * The actual rendering is handled by the OSMView component through * the markers prop. This component exists to provide a consistent * API interface similar to other map libraries. */ declare const Marker: React.FC<MarkerProps>; export { Marker }; export default Marker; //# sourceMappingURL=Marker.d.ts.map