-
Notifications
You must be signed in to change notification settings - Fork 9
/
App.js
120 lines (114 loc) · 2.69 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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
import React, { Component } from "react";
import {
Platform,
StyleSheet,
Text,
View,
Button,
PermissionsAndroid
} from "react-native";
import NavigationView from "./NavigationView";
import { NativeModules } from "react-native";
type Props = {};
export default class App extends Component<Props> {
state = {
granted: Platform.OS === "ios",
fromLat: 34.028092,
fromLong: -118.484868,
toLat: 34.019444,
toLong: -118.409259
};
componentDidMount() {
if (!this.state.granted) {
this.requestFineLocationPermission();
}
}
async requestFineLocationPermission() {
try {
const granted = await PermissionsAndroid.request(
PermissionsAndroid.PERMISSIONS.ACCESS_FINE_LOCATION,
{
title: "ACCESS_FINE_LOCATION",
message: "Mapbox navigation needs ACCESS_FINE_LOCATION"
}
);
if (granted === PermissionsAndroid.RESULTS.GRANTED) {
this.setState({ granted: true });
} else {
console.log("ACCESS_FINE_LOCATION permission denied");
}
} catch (err) {
console.warn(err);
}
}
render() {
const { granted, fromLat, fromLong, toLat, toLong } = this.state;
return (
<View style={styles.container}>
<View style={styles.subcontainer}>
<Text style={styles.welcome}>
Welcome to Mapbox Navigation for React Native
</Text>
</View>
{granted && (
<NavigationView
style={styles.navigation}
destination={{
lat: toLat,
long: toLong
}}
origin={{
lat: fromLat,
long: fromLong
}}
/>
)}
<View style={styles.subcontainer}>
<Text style={styles.welcome}>Another View !</Text>
{Platform.OS === "android" && (
<Button
title={"Start Navigation - NativeModule"}
onPress={() => {
NativeModules.MapboxNavigation.navigate(
fromLat,
fromLong,
toLat,
toLong
);
}}
/>
)}
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "stretch",
backgroundColor: "whitesmoke"
},
subcontainer: {
flex: 1,
justifyContent: "center",
backgroundColor: "whitesmoke"
},
welcome: {
fontSize: 20,
textAlign: "center",
margin: 10
},
navigation: {
backgroundColor: "gainsboro",
flex: 1
}
});