UNPKG

react-native-anavi

Version:

react native amap navigation component, Android + iOS

15 lines 527 B
import * as PropTypes from 'prop-types'; import { ColorPropType, requireNativeComponent, ViewPropTypes } from 'react-native'; import { LatLngPropType } from '../prop-types'; // @ts-ignore export default requireNativeComponent('AMapCircle', { propTypes: { ...ViewPropTypes, coordinate: LatLngPropType.isRequired, radius: PropTypes.number.isRequired, strokeWidth: PropTypes.number, strokeColor: ColorPropType, fillColor: ColorPropType, zIndex: PropTypes.number } }); //# sourceMappingURL=circle.js.map