helpers.js
2.79 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
import GeoViewport from "@mapbox/geo-viewport";
import { Dimensions } from "react-native";
const { width, height } = Dimensions.get("window");
export const isMarker = child =>
child &&
child.props &&
child.props.coordinate &&
child.props.cluster !== false;
export const calculateBBox = 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
];
};
export const returnMapZoom = (region, bBox, minZoom) => {
const viewport =
region.longitudeDelta >= 40
? { zoom: minZoom }
: GeoViewport.viewport(bBox, [width, height]);
return viewport.zoom;
};
export const markerToGeoJSONFeature = (marker, index) => {
return {
type: "Feature",
geometry: {
coordinates: [
marker.props.coordinate.longitude,
marker.props.coordinate.latitude
],
type: "Point"
},
properties: {
point_count: 0,
index,
..._removeChildrenFromProps(marker.props)
}
};
};
export const generateSpiral = (count, centerLocation, clusterChildren) => {
let res = [];
res.length = count;
let angle = 0;
for (let i = 0; i < count; i++) {
angle = 0.25 * (i * 0.5);
let latitude = centerLocation[1] + 0.0002 * angle * Math.cos(angle);
let longitude = centerLocation[0] + 0.0002 * angle * Math.sin(angle);
res[i] = {
longitude,
latitude,
image: clusterChildren[i] && clusterChildren[i].properties.image,
onPress: clusterChildren[i] && clusterChildren[i].properties.onPress
};
}
return res;
};
export const returnMarkerStyle = points => {
if (points >= 50) {
return {
width: 84,
height: 84,
size: 64,
fontSize: 20
};
}
if (points >= 25) {
return {
width: 78,
height: 78,
size: 58,
fontSize: 19
};
}
if (points >= 15) {
return {
width: 72,
height: 72,
size: 54,
fontSize: 18
};
}
if (points >= 10) {
return {
width: 66,
height: 66,
size: 50,
fontSize: 17
};
}
if (points >= 8) {
return {
width: 60,
height: 60,
size: 46,
fontSize: 17
};
}
if (points >= 4) {
return {
width: 84,
height: 84,
size: 64,
fontSize: 16
};
}
return {
width: 84,
height: 84,
size: 64,
fontSize: 15
};
};
const _removeChildrenFromProps = props => {
const newProps = {};
Object.keys(props).forEach(key => {
if (key !== "children") {
newProps[key] = props[key];
}
});
return newProps;
};