-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp.js
170 lines (148 loc) · 4.42 KB
/
App.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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
import React, {Component} from 'react';
import {
StyleSheet,
View,
Text,
Dimensions,
TouchableOpacity,
} from 'react-native';
import {MapView} from 'expo';
import ClusterMarker from './ClusterMaker';
import {getRegion, getCluster} from './MapUtils';
const LATITUDE = 37.78825;
const LONGITUDE = -122.4324;
const LATITUDE_DELTA = 0.0922;
const LONGITUDE2 = -122.4334;
const markers = [
{
latitude: LATITUDE,
longitude: LONGITUDE
}, {
latitude: LATITUDE,
longitude: LONGITUDE2
}
];
export default class App extends Component {
constructor(props) {
super(props);
const region = getRegion(LATITUDE, LONGITUDE, LATITUDE_DELTA);
this.state = {region};
this.renderMarker = this.renderMarker.bind(this);
}
increment() {
const region = getRegion(
this.state.region.latitude,
this.state.region.longitude,
this.state.region.latitudeDelta * 0.5
);
this.setState({region});
}
decrement() {
const region = getRegion(
this.state.region.latitude,
this.state.region.longitude,
this.state.region.latitudeDelta / 0.5
);
this.setState({region});
}
handleClusterMarkerPress(marker) {
const region = getRegion(
marker.geometry.coordinates[1],
marker.geometry.coordinates[0],
this.state.region.latitudeDelta * 0.5,
);
this.setState({region});
}
renderMarker(marker, _index) {
const key = _index + marker.geometry.coordinates[0];
if (marker.properties) {
return (
<MapView.Marker
key={`${key}${marker.properties.cluster_id}`}
coordinate={{latitude: marker.geometry.coordinates[1], longitude: marker.geometry.coordinates[0]}}
onPress={() => this.handleClusterMarkerPress(marker)}
>
<ClusterMarker count={marker.properties.point_count}/>
</MapView.Marker>
)
}
else {
return (
<MapView.Marker
key={key}
coordinate={{latitude: marker.geometry.coordinates[1], longitude: marker.geometry.coordinates[0]}}
/>
)
}
}
render() {
const places = markers.map(place => {
return {
geometry: {
coordinates: [
place.longitude,
place.latitude,
]
}
}
});
const cluster = getCluster(places, this.state.region);
return (
<View style={styles.container}>
<MapView
style={styles.map}
region={this.state.region}
>
{
cluster.markers.map(this.renderMarker)
}
</MapView>
<View style={styles.buttonContainer}>
<TouchableOpacity
onPress={() => this.decrement()}
style={[styles.bubble, styles.button]}
>
<Text style={{fontSize: 20, fontWeight: 'bold'}}>-</Text>
</TouchableOpacity>
<TouchableOpacity
onPress={() => this.increment()}
style={[styles.bubble, styles.button]}
>
<Text style={{fontSize: 20, fontWeight: 'bold'}}>+</Text>
</TouchableOpacity>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
...StyleSheet.absoluteFillObject,
justifyContent: 'flex-end',
alignItems: 'center',
},
map: {
...StyleSheet.absoluteFillObject,
},
bubble: {
backgroundColor: 'rgba(255,255,255,0.7)',
paddingHorizontal: 18,
paddingVertical: 12,
borderRadius: 20,
},
latlng: {
width: 200,
alignItems: 'stretch',
},
button: {
width: 80,
paddingHorizontal: 12,
alignItems: 'center',
marginHorizontal: 10,
},
buttonContainer: {
flexDirection: 'row',
marginVertical: 20,
backgroundColor: 'transparent',
},
});