UNPKG

react-native-anavi

Version:

react native amap navigation component, Android + iOS

30 lines (29 loc) 527 B
import type { LatLng } from '../types'; export interface CircleProps { /** * 圆点坐标 */ coordinate: LatLng; /** * 半径(米) */ radius: number; /** * 边线宽度 */ strokeWidth?: number; /** * 边线颜色 */ strokeColor?: string; /** * 填充颜色 */ fillColor?: string; /** * 层级 */ zIndex?: number; } declare const _default: import("react-native").HostComponent<CircleProps>; export default _default;