-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMap.js
191 lines (152 loc) · 5.41 KB
/
Map.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import React from 'react';
import { Platform, StyleSheet, Text, View } from 'react-native';
import { Button, FlatList } from 'react-native';
import MapView from 'react-native-maps';
import { Marker } from 'react-native-maps';
import { Constants, Location, Permissions } from 'expo';
export default class Map extends React.Component {
watchID = null;
state = {
text: "",
location: {
latitude: 0,
longitude: 0
},
errorMessage: null,
/*Εδώ θα είναι το state των markers σε έναν αρχικά κενό πίνακα
που θα το γεμίζουμε καλώντας το api με το xml που θα μετατρέπουμε σε json*/
rampMarkers: [],
parkingMarkers: [],
error: null
};
componentWillMount() {
/*fetch('http://zogasmybio.000webhostapp.com/myxmlTest.xml')
.then(response => response.json())
.then(({ results: markers }) => this.setState({ markers }))*/
fetch('http://zogasmybio.000webhostapp.com/data.json')
.then(response => response.json())
.then(responseJson => {
//console.log(responseJson.data.ramps)
this.setState({
rampMarkers: responseJson.data.ramps.ramp,
parkingMarkers: responseJson.data.park_seats.park_seat
});
}).catch((err) => {
console.log('fetch', err)
})
if (Platform.OS === 'android' && !Constants.isDevice) {
this.setState({
errorMessage: 'Oops, this will not work on Sketch in an Android emulator. Try it on your device!',
});
} else {
//this._getLocationAsync();
}
navigator.geolocation.clearWatch(this.watchId);
}
componentDidMount() {
this.watchId = navigator.geolocation.watchPosition(
(position) => {
this.setState({
location: position.coords
});
console.log("lat + " + JSON.stringify(position.coords))
},
(error) => this.setState({ error: error.message }),
{ enableHighAccuracy: true, distanceFilter: 1 },
);
}
/* Η μέθοδος όπου ζητάμε τα δικαιώματα από τον χρήστη για να ανοίξει ο χάρτης*/
/*_getLocationAsync = async () => {
let { status } = await Permissions.askAsync(Permissions.LOCATION);
if (status !== 'granted') {
this.setState({
errorMessage: 'Permission to access location was denied',
});
}
/* Βάζουμε σε μία μεταβλητή loation την τοποθεσία του χρήστη που παίρνουμε από το gps της συσκευής του */
/* let location = await Location.getCurrentPositionAsync({ enableHighAccuracy: true });
this.setState({ location });
};*/
render() {
let latitude = 0;
let longitude = 0;
let coords;
if (this.state.errorMessage) {
text = this.state.errorMessage;
} else if (this.state.location) {
/* Από το location παιρνάμε τις συντεταγμένες σε 2 μεταβλητές */
latitude = JSON.stringify(this.state.location.latitude);
longitude = JSON.stringify(this.state.location.longitude);
//coords = JSON.parse(this.state.location);
//console.log("coords" + coords);
}
//let arrayjson= this.state.markers["ramp"];
return (
<View style={styles.container}>
<MapView style={styles.map} region={{
latitude: parseFloat(latitude),
longitude: parseFloat(longitude),
latitudeDelta: 0.1,
longitudeDelta: 0.1
}}
>
{/*ΕΔΩ ΤΟ ΜΑΡΚΕΡ ΓΙΑ ΤΗΝ ΤΟΠΟΘΕΣΙΑ ΤΟΥ ΧΡΗΣΤΗ*/}
<MapView.Marker
key={"0"}
coordinate={{
latitude: parseFloat(this.state.location['latitude']),
longitude: parseFloat(this.state.location["longitude"])
}}
title={"Η τοποθεσία μου"}
pinColor={"green"}
/>
{/* ΕΔΩ ΤΑ ΜΑΡΚΕΡ ΓΙΑ ΤΙΣ ΡΑΜΠΕΣ*/}
{this.state.rampMarkers.map(marker => (
<MapView.Marker
key={marker["-ID"]}
coordinate={{
latitude: parseFloat(marker["latitude"]),
longitude: parseFloat(marker["longitude"])
}}
title={"Ράμπα"}
description={"Δυσκολία: " + marker["difficultness"]}
pinColor={"coral"}
/>
))}
{/* ΕΔΩ ΤΑ ΜΑΡΚΕΡ ΓΙΑ ΤΙΣ ΘΕΣΕΙΣ ΠΑΡΚΙΝΚ*/}
{this.state.parkingMarkers.map(marker => (
<MapView.Marker
key={marker["-ID"]}
coordinate={{
latitude: parseFloat(marker["latitude"]),
longitude: parseFloat(marker["longitude"]),
}}
title={"Θέση πάρκινγκ"}
pinColor={"lightblue"}
/>
))}
</MapView>
<Text>Latitude: {latitude}</Text>
<Text>Longitude: {longitude}</Text>
{this.state.error ? <Text>Error: {this.state.error}</Text> : null}
</View>
);
}
} const styles = StyleSheet.create({
container: {
position: "absolute",
top: 0,
bottom: 0,
left: 0,
right: 0,
justifyContent: 'flex-end',
alignItems: 'center'
},
map: {
position: "absolute",
top: 0,
bottom: 0,
left: 0,
right: 0,
},
});