-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
UserLocation.tsx
307 lines (275 loc) · 7.77 KB
/
UserLocation.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
import {
forwardRef,
memo,
type ReactElement,
useEffect,
useImperativeHandle,
useRef,
useState,
} from "react";
import Annotation from "./Annotation";
import CircleLayer from "./CircleLayer";
import HeadingIndicator from "./HeadingIndicator";
import NativeUserLocation from "./NativeUserLocation";
import locationManager, {
type Location,
} from "../modules/location/locationManager";
import { type CircleLayerStyleProps } from "../utils/MapLibreRNStyles";
const mapboxBlue = "rgba(51, 181, 229, 100)";
const layerStyles: Record<string, CircleLayerStyleProps> = {
pluse: {
circleRadius: 15,
circleColor: mapboxBlue,
circleOpacity: 0.2,
circlePitchAlignment: "map",
},
background: {
circleRadius: 9,
circleColor: "#fff",
circlePitchAlignment: "map",
},
foreground: {
circleRadius: 6,
circleColor: mapboxBlue,
circlePitchAlignment: "map",
},
};
export const normalIcon = (
showsUserHeadingIndicator?: boolean,
heading?: number,
): ReactElement[] => [
<CircleLayer
key="mapboxUserLocationPluseCircle"
id="mapboxUserLocationPluseCircle"
style={layerStyles.pluse}
/>,
<CircleLayer
key="mapboxUserLocationWhiteCircle"
id="mapboxUserLocationWhiteCircle"
style={layerStyles.background}
/>,
<CircleLayer
key="mapboxUserLocationBlueCicle"
id="mapboxUserLocationBlueCicle"
aboveLayerID="mapboxUserLocationWhiteCircle"
style={layerStyles.foreground}
/>,
...(showsUserHeadingIndicator && heading
? [HeadingIndicator({ heading })]
: []),
];
interface UserLocationProps {
/**
* Whether location icon is animated between updates
*/
animated?: boolean;
/**
* Which render mode to use.
* Can either be `normal` or `native`
*/
renderMode?: "normal" | "native";
/**
* native/android only render mode
*
* - normal: just a circle
* - compass: triangle with heading
* - gps: large arrow
*
* @platform android
*/
androidRenderMode?: "normal" | "compass" | "gps";
/**
* Whether location icon is visible
*/
visible?: boolean;
/**
* Callback that is triggered on location icon press
*/
onPress?(): void;
/**
* Callback that is triggered on location update
*/
onUpdate?(location: Location): void;
/**
* Show or hide small arrow which indicates direction the device is pointing relative to north.
*/
showsUserHeadingIndicator?: boolean;
/**
* Minimum amount of movement before GPS location is updated in meters
*/
minDisplacement?: number;
/**
* Android only. Set max FPS at which location animators can output updates. Use this setting to limit animation rate of the location puck on higher zoom levels to decrease the stress on the device's CPU which can directly improve battery life, without sacrificing UX.
*
* @platform android
*/
androidPreferredFramesPerSecond?: number;
/**
* Custom location icon of type mapbox-gl-native components
*
* NOTE: Forking maintainer does not understand the above comment.
*/
children?: ReactElement | ReactElement[];
}
interface UserLocationState {
shouldShowUserLocation: boolean;
coordinates?: number[];
heading?: number;
}
export enum UserLocationRenderMode {
Native = "native",
Normal = "normal",
}
export interface UserLocationRef {
setLocationManager: (props: { running: boolean }) => Promise<void>;
needsLocationManagerRunning: () => boolean;
_onLocationUpdate: (location: Location | null) => void;
}
const UserLocation = memo(
forwardRef<UserLocationRef, UserLocationProps>(
(
{
animated = true,
visible = true,
showsUserHeadingIndicator = false,
minDisplacement = 0,
renderMode = "normal",
androidRenderMode,
androidPreferredFramesPerSecond,
children,
onUpdate,
onPress,
}: UserLocationProps,
ref,
) => {
const _isMounted = useRef<boolean | null>(null);
const locationManagerRunning = useRef<boolean>(false);
const [userLocationState, setUserLocationState] =
useState<UserLocationState>({
shouldShowUserLocation: false,
});
useImperativeHandle(
ref,
(): UserLocationRef => ({
/**
* Whether to start or stop listening to the locationManager
*
* Notice, that listening will start automatically when
* either `onUpdate` or `visible` are set
*
* @async
* @param {Object} running - Object with key `running` and `boolean` value
* @return {Promise<void>}
*/
setLocationManager,
/**
*
* If locationManager should be running
*
* @return {boolean}
*/
needsLocationManagerRunning,
_onLocationUpdate,
}),
);
useEffect(() => {
_isMounted.current = true;
setLocationManager({
running: needsLocationManagerRunning(),
}).then(() => {
if (renderMode === UserLocationRenderMode.Native) {
return;
}
locationManager.setMinDisplacement(minDisplacement ?? 0);
});
return (): void => {
_isMounted.current = false;
setLocationManager({ running: false });
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
useEffect(() => {
locationManager.setMinDisplacement(minDisplacement ?? 0);
}, [minDisplacement]);
useEffect(() => {
if (!_isMounted.current) {
return;
}
setLocationManager({
running: needsLocationManagerRunning(),
});
});
async function setLocationManager({
running,
}: {
running: boolean;
}): Promise<void> {
if (locationManagerRunning.current !== running) {
locationManagerRunning.current = running;
if (running) {
locationManager.addListener(_onLocationUpdate);
const location = await locationManager.getLastKnownLocation();
_onLocationUpdate(location);
} else {
locationManager.removeListener(_onLocationUpdate);
}
}
}
function needsLocationManagerRunning(): boolean {
return !!(
!!onUpdate ||
(renderMode === UserLocationRenderMode.Normal && visible)
);
}
function _onLocationUpdate(location: Location | null): void {
if (!_isMounted.current || !location) {
return;
}
let coordinates;
let heading;
if (location && location.coords) {
const { longitude, latitude } = location.coords;
heading = location.coords.heading;
coordinates = [longitude, latitude];
}
setUserLocationState({
...userLocationState,
coordinates,
heading,
});
if (onUpdate) {
onUpdate(location);
}
}
if (!visible) {
return null;
}
if (renderMode === UserLocationRenderMode.Native) {
const props = {
androidRenderMode,
iosShowsUserHeadingIndicator: showsUserHeadingIndicator,
androidPreferredFramesPerSecond,
};
return <NativeUserLocation {...props} />;
}
if (!userLocationState.coordinates) {
return null;
}
return (
<Annotation
animated={animated}
id="mapboxUserLocation"
onPress={onPress}
coordinates={userLocationState.coordinates}
style={{
iconRotate: userLocationState.heading,
}}
>
{children ||
normalIcon(showsUserHeadingIndicator, userLocationState.heading)}
</Annotation>
);
},
),
);
export default UserLocation;