-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
90 lines (73 loc) · 1.92 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
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View
} from 'react-native';
import MapView, { PROVIDER_GOOGLE } from 'react-native-maps';
import io from 'socket.io-client';
// const socketURL = 'http://trackinglocation.skylab.vn'
const socketURL = 'http://192.168.1.30:3000'
// Ingnore warning timer on Android simulator
console.ignoredYellowBox = ['Setting a timer'];
export default class App extends Component {
constructor(props) {
super(props);
this.socket = io(socketURL);
this.state = {
markerCoordinates : [],
region: {
latitude: 10.782546,
longitude: 106.650416,
latitudeDelta: 0.0922,
longitudeDelta: 0.0421,
}
}
}
componentDidMount() {
const socket = this.socket;
if (!socket) return;
socket.on('disconnect', () => alert('You have been disconnected.'));
socket.on("locationUpdated", (locationState) => {
const newMarkerCoordinates = Object.values(locationState).map( item => ({
latitude: item.lat,
longitude: item.lng
}));
this.setState({ markerCoordinates: newMarkerCoordinates });
});
}
renderMarkers = (markerCoordinates) => {
return markerCoordinates.map((coord, index) => (
<MapView.Marker
key={ index }
image={require('./imgs/truck.png')}
centerOffset={{ x: 25, y: 25}}
anchor={{ x: 0.5, y: 0.5}}
coordinate={coord}
title={ `Truck ${index}` }
/>
));
}
render() {
const { region, markerCoordinates } = this.state;
return (
<View style={styles.container}>
<MapView
provider={ PROVIDER_GOOGLE }
initialRegion={ region }
style={ styles.mapView }
>
{ this.renderMarkers(markerCoordinates) }
</MapView>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
mapView : {
flex: 1,
}
});