react-native-anavi
Version:
react native amap navigation component, Android + iOS
14 lines • 508 B
JavaScript
import * as PropTypes from 'prop-types';
import { ColorPropType, requireNativeComponent, ViewPropTypes } from 'react-native';
import { LatLngPropType } from '../prop-types';
// @ts-ignore
export default requireNativeComponent('AMapPolygon', {
propTypes: { ...ViewPropTypes,
coordinates: PropTypes.arrayOf(LatLngPropType).isRequired,
strokeWidth: PropTypes.number,
strokeColor: ColorPropType,
fillColor: ColorPropType,
zIndex: PropTypes.number
}
});
//# sourceMappingURL=polygon.js.map