expo-osm-sdk
Version:
OpenStreetMap component for React Native with Expo
17 lines • 582 B
TypeScript
import React from 'react';
import { CircleConfig } from '../types';
/**
* Circle component for OSMView
*
* Note: This component is primarily a data container for circles.
* The actual rendering is handled by the OSMView component through
* the circles prop. This component exists to provide a consistent
* API interface similar to other map libraries.
*/
interface CircleProps extends Omit<CircleConfig, 'id'> {
children?: React.ReactNode;
}
declare const Circle: React.FC<CircleProps>;
export { Circle };
export type { CircleProps };
//# sourceMappingURL=Circle.d.ts.map