-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpers.jsx
103 lines (92 loc) · 2.88 KB
/
helpers.jsx
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
/*
Handles reverse geocoding from lat lon to asci address
*/
async function geocodeReverse({
apiKey, setterFunc, zoom, latitude, longitude,
}) {
await fetch(`https://api.mapbox.com/geocoding/v5/mapbox.places/${longitude}%2C%20${latitude}.json?access_token=${apiKey}`)
.then((response) => response.json())
.then((data) => {
if (data.features && data.features.length > 0) {
setterFunc((prevVal) => {
const value = (parm) => (
data.features.filter((feature) => feature.id.includes(parm))[0]?.text
);
const stateCode = () => {
const f = data.features.filter((feature) => feature.id.includes('region'))[0];
return f?.properties?.short_code?.split('-')[1];
};
const newVal = {
...prevVal,
fullAddress: data.features[0].place_name,
address: data.features[0].place_name.split(',')[0],
zipCode: value('postcode'),
city: value('place'),
county: value('district'),
state: value('region'),
stateCode: stateCode(),
zoom,
};
return newVal;
});
} else if (latitude && longitude) {
setterFunc((prevVal) => {
const newVal = {
...prevVal,
fullAddress: '',
address: '',
zipCode: '',
city: '',
county: '',
state: '',
stateCode: 'none',
zoom,
};
return newVal;
});
}
});
}
/* Given a query in the form "lng, lat" or "lat, lng"
* returns the matching geographic coordinate(s)
* as search results in carmen geojson format,
* https://github.com/mapbox/carmen/blob/master/carmen-geojson.md */
const coordinatesGeocoder = (query) => {
// Match anything which looks like
// decimal degrees coordinate pair.
const matches = query.match(/^[ ]*(?:Lat: )?(-?\d+\.?\d*)[, ]+(?:Lng: )?(-?\d+\.?\d*)[ ]*$/i);
if (!matches) {
return null;
}
function coordinateFeature(lng, lat) {
return {
center: [lng, lat],
geometry: {
type: 'Point',
coordinates: [lng, lat],
},
place_name: `Lat: ${lat} Lng: ${lng}`,
place_type: ['coordinate'],
properties: {},
type: 'Feature',
};
}
const coord1 = Number(matches[1]);
const coord2 = Number(matches[2]);
const geocodes = [];
if (coord1 < -90 || coord1 > 90) {
// must be lng, lat
geocodes.push(coordinateFeature(coord1, coord2));
}
if (coord2 < -90 || coord2 > 90) {
// must be lat, lng
geocodes.push(coordinateFeature(coord2, coord1));
}
if (geocodes.length === 0) {
// else could be either lng, lat or lat, lng
// geocodes.push(coordinateFeature(coord1, coord2));
geocodes.push(coordinateFeature(coord2, coord1));
}
return geocodes;
};
export { geocodeReverse, coordinatesGeocoder };