-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMapContainer.tsx
122 lines (108 loc) · 3.45 KB
/
MapContainer.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
import { useRef, useEffect, Dispatch, SetStateAction, useState } from "react";
import type { Location, Observation } from "../types";
import "@arcgis/map-components/components/arcgis-map";
import "@arcgis/map-components/components/arcgis-zoom";
import Graphic from "@arcgis/core/Graphic";
import Point from "@arcgis/core/geometry/Point";
import GraphicsLayer from "@arcgis/core/layers/GraphicsLayer";
import SimpleMarkerSymbol from "@arcgis/core/symbols/SimpleMarkerSymbol";
interface MapContainerProps {
setLocation: Dispatch<SetStateAction<Location | null>>;
observations: Observation[];
location: Location | null;
onMapLoad?: () => void;
onMapClick?: () => void;
}
const MapContainer = ({
setLocation,
observations,
location,
onMapLoad,
onMapClick,
}: MapContainerProps) => {
const mapRef = useRef<HTMLArcgisMapElement>(null);
const pinLayerRef = useRef(new GraphicsLayer());
const pointLayerRef = useRef(new GraphicsLayer());
const [mapReady, setMapReady] = useState(false);
useEffect(() => {
if (mapReady && mapRef.current) {
const map = mapRef.current;
map.addLayer(pinLayerRef.current);
map.addLayer(pointLayerRef.current);
// append ready to the class for testing
map.classList.add("ready");
if (onMapLoad) {
onMapLoad();
}
}
}, [mapReady]);
useEffect(() => {
if (!mapReady) return;
if (location) {
pinLayerRef.current.graphics.removeAll();
const { latitude, longitude } = location;
const pin = new Graphic({
geometry: new Point({ latitude, longitude }),
symbol: new SimpleMarkerSymbol({
style: "x",
size: 10,
outline: { width: 3 },
}),
});
pinLayerRef.current.graphics.push(pin);
} else {
pinLayerRef.current.graphics.removeAll();
}
}, [location, mapReady]);
useEffect(() => {
if (observations.length > 0 && mapReady) {
pointLayerRef.current.graphics.removeAll();
observations.forEach(({ latitude, longitude, observation }) => {
const point = new Graphic({
geometry: new Point({ latitude, longitude }),
symbol: new SimpleMarkerSymbol({
style: "circle",
size: 10,
outline: { width: 1 },
}),
attributes: { latitude, longitude, observation },
popupTemplate: {
title: "Observation",
content:
"<b>Latitude. </b> {latitude}<br/><b>Longitude. </b> {longitude}<br/><br/><b>Observation</b><br/>{observation}",
},
});
pointLayerRef.current.graphics.push(point);
});
}
}, [observations, mapReady]);
return (
<arcgis-map
ref={mapRef}
basemap="streets-navigation-vector"
zoom={13}
center={[-118.805, 34.027]}
onarcgisViewReadyChange={(e) => {
setMapReady(e.currentTarget.ready);
}}
onarcgisViewClick={async (e) => {
const { latitude, longitude } = e.detail.mapPoint;
const view = mapRef.current!.view;
const { x, y } = e.detail;
const { results } = await view.hitTest(
{ x, y },
{ include: pointLayerRef.current }
);
if (results.length === 0) {
setLocation({ latitude: latitude!, longitude: longitude! });
}
if (onMapClick) {
onMapClick();
}
}}
>
<arcgis-zoom position="top-right"></arcgis-zoom>
</arcgis-map>
);
};
export default MapContainer;