Skip to content
Snippets Groups Projects

Get own location

Merged H9031 requested to merge get-own-location into development
1 file
+ 25
4
Compare changes
  • Side-by-side
  • Inline
+ 25
4
@@ -8,14 +8,35 @@ class UserMap extends Component {
ownLat: null,
ownLng: null,
}
this.DeviceLocationUpdater = null;
this.updateDeviceLocation = this.updateDeviceLocation.bind(this);
}
componentDidMount(){
this.startDeviceLocationUpdater();
}
componentWillUnmount(){
if(this.DeviceLocationUpdater != null){
clearInterval(this.DeviceLocationUpdater);
}
}
startDeviceLocationUpdater(){
this.DeviceLocationUpdater = setInterval(this.updateDeviceLocation, 1000);
}
updateDeviceLocation(){
this.getCurrentPosition((position) => {
this.setState({
ownLat: position.coords.latitude,
ownLng: position.coords.longitude,
});
this.setCurrentPosition(position);
});
}
setCurrentPosition(position){
this.setState({
ownLat: position.coords.latitude,
ownLng: position.coords.longitude,
});
}
Loading