-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
64 lines (56 loc) · 1.53 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
import React, { Component } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import FetchLocation from './components/FetchLocation'
import UserMap from './components/UserMaps'
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
userLocation: null
}
}
getUserLocationHandler = () => {
navigator.geolocation.getCurrentPosition(position => {
this.setState({
userLocation: {
latitude: position.coords.latitude,
longitude: position.coords.longitude,
latitudeDelta: 0.0622,
longitudeDelta: 0.0421
}
})
console.log("Position: ", position)
}), error => console.log(error);
;
console.log("Pressed the button")
}
render() {
return (
<View style={styles.container}>
<Text style={styles.heading}>To Find Your Location In A Map Press Button..!</Text>
<FetchLocation onGetLocation={this.getUserLocationHandler}></FetchLocation>
<UserMap userLocation={this.state.userLocation} />
<Text>Hello Farrukh</Text>
<Text>Your app is created..!</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
heading: {
alignItems: 'center',
justifyContent: 'center',
marginBottom: 20,
paddingLeft: 30,
paddingRight: 30,
backgroundColor: '#32B76C',
color: '#f0ffff',
fontSize: 30,
},
});