-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
115 lines (102 loc) · 2.48 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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
import MapView, { UrlTile, Marker } from 'react-native-maps';
type Props = {};
export default class App extends Component<Props> {
constructor(props) {
super(props);
this.state = {
region: {
latitude: 35.645736,
longitude: 139.747575,
latitudeDelta: 0.03,
longitudeDelta: 0.03,
},
urlTemplate: 'http://c.tile.openstreetmap.org/{z}/{x}/{y}.png',
markers: [
{
key: 'tamachiStation',
latlng: {
latitude: 35.645736,
longitude: 139.747575,
},
title: '田町駅',
description: '田町ニューデイズ',
},
],
};
this.requestGetCurrentPosition();
}
onRegionChange(region) {
this.setState({ region });
}
requestGetCurrentPosition = () => {
if (!navigator.geolocation) return false
const options = {
enableHighAccuracy: true,
timeout: 5000,
maximumAge: 0,
};
navigator.geolocation.getCurrentPosition(
this.successToGetCurrentPosition,
this.failToGetCurrentPosition,
options
);
}
successToGetCurrentPosition = (position) => {
const { latitude, longitude } = position.coords;
this.setState(prevState => ({
region: {
...prevState.region,
latitude,
longitude,
}
}));
}
failToGetCurrentPosition = (error) => {
console.warn(`ERROR(${error.code}): ${error.message}`);
}
render() {
return (
<View style={styles.container}>
<MapView
style={styles.map}
region={this.state.region}
onRegionChange={this.onRegionChange.bind(this)}
>
<UrlTile
urlTemplate={this.state.urlTemplate}
maximumZ={19}
/>
{this.state.markers.map(marker => (
<Marker
key={marker.key}
coordinate={marker.latlng}
title={marker.title}
description={marker.description}
/>
))}
</MapView>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
...StyleSheet.absoluteFillObject,
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#ffffff',
},
map: {
...StyleSheet.absoluteFillObject,
},
});