-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathmapView.tsx
More file actions
150 lines (130 loc) · 4.08 KB
/
mapView.tsx
File metadata and controls
150 lines (130 loc) · 4.08 KB
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
/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React, { useCallback, useEffect, useRef, useState } from 'react';
import { StyleSheet, View, findNodeHandle } from 'react-native';
import {
NavViewManager,
sendCommand,
commands,
type LatLng,
} from '../../shared';
import {
getMapViewController,
FragmentType,
type Circle,
type GroundOverlay,
type MapViewProps,
type Marker,
type Polygon,
type Polyline,
} from '..';
export const MapView = (props: MapViewProps): React.JSX.Element => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const mapViewRef = useRef<any>(null);
const [viewId, setViewId] = useState<number | null>(null);
const { onMapViewControllerCreated } = props;
/**
* @param ref - The reference to the NavViewManager component.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const onRefAssign = (ref: any): void => {
if (mapViewRef.current !== ref) {
mapViewRef.current = ref;
}
};
useEffect(() => {
if (!mapViewRef.current) {
return;
}
const _viewId = findNodeHandle(mapViewRef.current) || 0;
if (viewId !== _viewId) {
setViewId(_viewId);
const stylingOptions = {};
const args = [stylingOptions, FragmentType.MAP];
setTimeout(() => {
sendCommand(_viewId, commands.createFragment, args);
});
onMapViewControllerCreated(getMapViewController(_viewId));
}
}, [onMapViewControllerCreated, viewId]);
const onMapClick = useCallback(
({ nativeEvent: latlng }: { nativeEvent: LatLng }) => {
props.mapViewCallbacks?.onMapClick?.(latlng);
},
[props.mapViewCallbacks]
);
const onMapReady = useCallback(() => {
props.mapViewCallbacks?.onMapReady?.();
}, [props.mapViewCallbacks]);
const onMarkerClick = useCallback(
({ nativeEvent: marker }: { nativeEvent: Marker }) => {
props.mapViewCallbacks?.onMarkerClick?.(marker);
},
[props.mapViewCallbacks]
);
const onPolylineClick = useCallback(
({ nativeEvent: polyline }: { nativeEvent: Polyline }) => {
props.mapViewCallbacks?.onPolylineClick?.(polyline);
},
[props.mapViewCallbacks]
);
const onPolygonClick = useCallback(
({ nativeEvent: polygon }: { nativeEvent: Polygon }) => {
props.mapViewCallbacks?.onPolygonClick?.(polygon);
},
[props.mapViewCallbacks]
);
const onCircleClick = useCallback(
({ nativeEvent: circle }: { nativeEvent: Circle }) => {
props.mapViewCallbacks?.onCircleClick?.(circle);
},
[props.mapViewCallbacks]
);
const onGroundOverlayClick = useCallback(
({ nativeEvent: groundOverlay }: { nativeEvent: GroundOverlay }) => {
props.mapViewCallbacks?.onGroundOverlayClick?.(groundOverlay);
},
[props.mapViewCallbacks]
);
const onMarkerInfoWindowTapped = useCallback(
({ nativeEvent: marker }: { nativeEvent: Marker }) => {
props.mapViewCallbacks?.onMarkerInfoWindowTapped?.(marker);
},
[props.mapViewCallbacks]
);
return (
<View style={props.style ?? styles.defaultStyle}>
<NavViewManager
ref={onRefAssign}
flex={1}
onMapClick={onMapClick}
onMapReady={onMapReady}
onMarkerClick={onMarkerClick}
onPolylineClick={onPolylineClick}
onPolygonClick={onPolygonClick}
onCircleClick={onCircleClick}
onGroundOverlayClick={onGroundOverlayClick}
onMarkerInfoWindowTapped={onMarkerInfoWindowTapped}
/>
</View>
);
};
const styles = StyleSheet.create({
defaultStyle: {
flex: 1,
},
});
export default MapView;