forked from react-native-maps/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMapCircle.tsx
161 lines (143 loc) · 4.53 KB
/
MapCircle.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import * as React from 'react';
import {View, ViewProps} from 'react-native';
import decorateMapComponent, {
USES_DEFAULT_IMPLEMENTATION,
SUPPORTED,
ProviderContext,
NativeComponent,
MapManagerCommand,
UIManagerCommand,
} from './decorateMapComponent';
import {LatLng, LineCapType, LineJoinType} from './sharedTypes';
export type MapCircleProps = ViewProps & {
/**
* The coordinates of the center of the circle.
*
* @platform iOS: Supported
* @platform Android: Supported
*/
center: LatLng;
/**
* The fill color to use for the path.
*
* @default `#000`, `rgba(r,g,b,0.5)`
* @platform iOS: Supported
* @platform Android: Supported
*/
fillColor?: string;
/**
* The line cap style to apply to the open ends of the path
*
* @default `round`
* @platform iOS: Apple Maps only
* @platform Android: Not supported
*/
lineCap?: LineCapType;
/**
* An array of numbers specifying the dash pattern to use for the path.
* The array contains one or more numbers that indicate the lengths (measured in points)
* of the line segments and gaps in the pattern.
* The values in the array alternate, starting with the first line segment length,
* followed by the first gap length, followed by the second line segment length, and so on.
*
* @platform iOS: Apple Maps only
* @platform Android: Not supported
*/
lineDashPattern?: number[];
/**
* The offset (in points) at which to start drawing the dash pattern.
* Use this property to start drawing a dashed line partway through a segment or gap.
* For example, a phase value of 6 for the patter 5-2-3-2 would cause drawing to begin in the middle of the first gap.
*
* @default 0
* @platform iOS: Apple Maps only
* @platform Android: Not supported
*/
lineDashPhase?: number;
/**
* The line join style to apply to corners of the path.
*
* @platform iOS: Apple Maps only
* @platform Android: Not supported
*/
lineJoin?: LineJoinType;
/**
* The limiting value that helps avoid spikes at junctions between connected line segments.
* The miter limit helps you avoid spikes in paths that use the `miter` `lineJoin` style.
* If the ratio of the miter length—that is, the diagonal length of the miter join—to the line thickness exceeds the miter limit,
* the joint is converted to a bevel join.
* The default miter limit is 10, which results in the conversion of miters whose angle at the joint is less than 11 degrees.
*
* @default 10
* @platform iOS: Apple Maps only
* @platform Android: Not supported
*/
miterLimit?: number;
/**
* The radius of the circle to be drawn (in meters)
*
* @platform iOS: Supported
* @platform Android: Supported
*/
radius: number;
/**
* The stroke color to use for the path.
*
* @default `#000`, `rgba(r,g,b,0.5)`
* @platform iOS: Supported
* @platform Android: Supported
*/
strokeColor?: string;
/**
* The stroke width to use for the path.
*
* @default 1
* @platform iOS: Supported
* @platform Android: Supported
*/
strokeWidth?: number;
/**
* The order in which this tile overlay is drawn with respect to other overlays.
* An overlay with a larger z-index is drawn over overlays with smaller z-indices.
* The order of overlays with the same z-index is arbitrary.
*
* @default 0
* @platform iOS: Google Maps only
* @platform Android: Supported
*/
zIndex?: number;
};
type NativeProps = MapCircleProps & {ref: React.RefObject<View>};
export class MapCircle extends React.Component<MapCircleProps> {
// declaration only, as they are set through decorateMap
declare context: React.ContextType<typeof ProviderContext>;
getNativeComponent!: () => NativeComponent<NativeProps>;
getMapManagerCommand!: (name: string) => MapManagerCommand;
getUIManagerCommand!: (name: string) => UIManagerCommand;
private circle: NativeProps['ref'];
constructor(props: MapCircleProps) {
super(props);
this.circle = React.createRef<View>();
}
setNativeProps(props: Partial<NativeProps>) {
this.circle.current?.setNativeProps(props);
}
render() {
const {strokeColor = '#000', strokeWidth = 1} = this.props;
const AIRMapCircle = this.getNativeComponent();
return (
<AIRMapCircle
{...this.props}
strokeColor={strokeColor}
strokeWidth={strokeWidth}
ref={this.circle}
/>
);
}
}
export default decorateMapComponent(MapCircle, 'Circle', {
google: {
ios: SUPPORTED,
android: USES_DEFAULT_IMPLEMENTATION,
},
});