forked from novalabio/react-native-maps-super-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.js
74 lines (64 loc) · 2.18 KB
/
util.js
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
'use-strict'
/**
* Compute bounding box for the given region
* @param {Object} region - Google Maps/MapKit region
* @returns {Object} - Region's bounding box as WSEN array
*/
export const regionToBoundingBox = (region) => {
let lngD
if (region.longitudeDelta < 0)
lngD = region.longitudeDelta + 360
else
lngD = region.longitudeDelta
return ([
region.longitude - lngD, // westLng - min lng
region.latitude - region.latitudeDelta, // southLat - min lat
region.longitude + lngD, // eastLng - max lng
region.latitude + region.latitudeDelta // northLat - max lat
])
}
/**
* Calculate region from the given bounding box.
* Bounding box must be represented as WSEN:
* {
* ws: { longitude: minLon, latitude: minLat }
* en: { longitude: maxLon, latitude: maxLat }
* }
* @param {Object} bbox - Bounding box
* @returns {Object} - Google Maps/MapKit compliant region
*/
export const boundingBoxToRegion = (bbox) => {
const minLon = bbox.ws.longitude * Math.PI / 180,
maxLon = bbox.en.longitude * Math.PI / 180
const minLat = bbox.ws.latitude * Math.PI / 180,
maxLat = bbox.en.latitude * Math.PI / 180
const dLon = maxLon - minLon,
dLat = maxLat - minLat
const x = Math.cos(maxLat) * Math.cos(dLon),
y = Math.cos(maxLat) * Math.sin(dLon)
const latRad = Math.atan2(Math.sin(minLat) + Math.sin(maxLat), Math.sqrt((Math.cos(minLat) + x) * (Math.cos(minLat) + x) + y * y )),
lonRad = minLon + Math.atan2(y, Math.cos(minLat) + x)
const latitude = latRad * 180 / Math.PI,
longitude = lonRad * 180 / Math.PI
return {
latitude,
longitude,
latitudeDelta: dLat * 180 / Math.PI,
longitudeDelta: dLon * 180 / Math.PI
}
}
/**
* Compute a RFC-compliant GeoJSON Feature object
* from the given JS object
* RFC7946: https://tools.ietf.org/html/rfc7946#section-3.2
* @param {Object} item - JS object containing marker data
* @returns {Object} - GeoJSON Feature object
*/
export const itemToGeoJSONFeature = (item) => ({
type: 'Feature',
geometry: {
type: 'Point',
coordinates: [item.location.longitude, item.location.latitude]
},
properties: { point_count: 0, item } // eslint-disable-line camelcase
})