@wemap/providers 3.1.23 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/babel.config.json +16 -0
- package/debug/MainComponent.jsx +5 -5
- package/debug/components/AbsoluteAttitudeComponent.jsx +5 -5
- package/debug/components/AbsolutePositionComponent.jsx +7 -9
- package/debug/components/GnssWifiComponent.jsx +5 -5
- package/debug/components/ImuComponent.jsx +4 -4
- package/debug/components/InclinationComponent.jsx +4 -4
- package/debug/components/RelativeAttitudeComponent.jsx +4 -4
- package/debug/components/StepDetectionComponent.jsx +4 -4
- package/debug/components/Utils.js +1 -1
- package/debug/{Common.css → css/App.css} +0 -44
- package/debug/css/UserOnMapHandler.css +43 -0
- package/debug/details/DetailsAttitudeComponent.jsx +1 -1
- package/debug/details/DetailsComponent.jsx +4 -5
- package/debug/details/DetailsPositionComponent.jsx +2 -2
- package/debug/details/ItineraryComponent.jsx +10 -69
- package/debug/index.js +8 -8
- package/debug/map/MapComponent.jsx +23 -15
- package/debug/map/MapHandler.js +7 -16
- package/debug/map/helpers/ItineraryMapHandler.js +15 -16
- package/debug/map/helpers/MapClickHandler.js +9 -7
- package/debug/map/helpers/UserOnMapHandler.js +38 -417
- package/debug/stores/ItineraryStore.js +23 -48
- package/dist/assets/indoor-maps/bureaux-wemap-montpellier.geojson +339 -513
- package/dist/js/providers-components.js +2361 -0
- package/dist/logger.html +58 -0
- package/index.js +7 -5
- package/package.json +25 -21
- package/src/Providers.js +15 -15
- package/src/ProvidersInterface.js +7 -5
- package/src/errors/MissingAccelerometerError.js +2 -2
- package/src/errors/MissingGyroscopeError.js +2 -2
- package/src/errors/MissingMagnetometerError.js +1 -1
- package/src/events/ProviderEvent.js +1 -1
- package/src/events/{ProvidersLogger.js → ProvidersLoggerOld.js} +7 -7
- package/src/logger/NavigationLogger.js +138 -0
- package/src/logger/NavigationLoggerConverter.js +263 -0
- package/src/providers/FakeProvider.spec.js +3 -4
- package/src/providers/MetaProvider.js +3 -3
- package/src/providers/Provider.js +12 -11
- package/src/providers/Provider.spec.js +5 -7
- package/src/providers/attitude/EkfAttitude.spec.js +1 -1
- package/src/providers/attitude/absolute/AbsoluteAttitudeFromBrowserProvider.js +9 -8
- package/src/providers/attitude/absolute/AbsoluteAttitudeFromRelAttProvider.js +5 -6
- package/src/providers/attitude/absolute/AbsoluteAttitudeProvider.js +3 -3
- package/src/providers/attitude/relative/RelativeAttitudeFromBrowserProvider.js +7 -5
- package/src/providers/attitude/relative/RelativeAttitudeFromEkfProvider.js +5 -5
- package/src/providers/attitude/relative/RelativeAttitudeFromInertialProvider.js +3 -3
- package/src/providers/attitude/relative/RelativeAttitudeProvider.js +5 -4
- package/src/providers/imu/AccelerometerProvider.js +4 -4
- package/src/providers/imu/GyroscopeProvider.js +4 -4
- package/src/providers/imu/ImuProvider.js +5 -4
- package/src/providers/inclination/InclinationFromAccProvider.js +3 -3
- package/src/providers/inclination/InclinationFromRelativeAttitudeProvider.js +3 -3
- package/src/providers/inclination/InclinationProvider.js +3 -3
- package/src/providers/legacy/helpers/HeadingUnlocker.spec.js +1 -1
- package/src/providers/others/BarcodeProvider.js +3 -3
- package/src/providers/others/CameraNativeProvider.js +4 -4
- package/src/providers/others/CameraProjectionMatrixProvider.js +3 -3
- package/src/providers/position/absolute/AbsolutePositionFromRelProvider.js +4 -4
- package/src/providers/position/absolute/AbsolutePositionProvider.js +5 -5
- package/src/providers/position/absolute/GnssWifiProvider.js +9 -6
- package/src/providers/position/absolute/IpProvider.js +3 -3
- package/src/providers/position/relative/ArCoreProvider.js +5 -5
- package/src/providers/position/relative/GeoRelativePositionFromArCoreProvider.js +3 -3
- package/src/providers/position/relative/GeoRelativePositionProvider.js +3 -3
- package/src/providers/position/relative/PdrProvider.js +3 -3
- package/src/providers/steps/StepDetectionProvider.js +11 -4
- package/src/smoothers/PositionSmoother.spec.js +1 -1
- package/webpack/{webpack.common.js → webpack.common.cjs} +7 -1
- package/webpack/{webpack.dev.js → webpack.dev.cjs} +1 -7
- package/webpack/{webpack.prod.js → webpack.prod.cjs} +1 -1
- package/babel.config.js +0 -11
- package/debug/map/MapboxHelper.js +0 -50
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { Map } from 'mapbox-gl';
|
|
2
2
|
|
|
3
3
|
import { Level } from '@wemap/geo';
|
|
4
|
+
import { MapboxUtils } from '@wemap/map';
|
|
4
5
|
|
|
5
|
-
import
|
|
6
|
-
import ItineraryStore from '../../stores/ItineraryStore';
|
|
6
|
+
import ItineraryStore from '../../stores/ItineraryStore.js';
|
|
7
7
|
|
|
8
8
|
class ItineraryMapHandler {
|
|
9
9
|
|
|
@@ -20,7 +20,7 @@ class ItineraryMapHandler {
|
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
|
-
* @param {
|
|
23
|
+
* @param {Map} map
|
|
24
24
|
*/
|
|
25
25
|
constructor(map) {
|
|
26
26
|
if (!map) {
|
|
@@ -55,8 +55,7 @@ class ItineraryMapHandler {
|
|
|
55
55
|
});
|
|
56
56
|
|
|
57
57
|
this.generateLayers(ItineraryMapHandler.SOURCE_ID).forEach(layer => {
|
|
58
|
-
this.map.
|
|
59
|
-
this.map.indoor.addLayerForFiltering(layer.id);
|
|
58
|
+
this.map.indoor._addLayerForFiltering(layer);
|
|
60
59
|
});
|
|
61
60
|
}
|
|
62
61
|
|
|
@@ -79,8 +78,8 @@ class ItineraryMapHandler {
|
|
|
79
78
|
geometry: {
|
|
80
79
|
type: 'LineString',
|
|
81
80
|
coordinates: [
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
MapboxUtils.coordsToLngLat(itinerary.start),
|
|
82
|
+
MapboxUtils.coordsToLngLat(itinerary.nodes[0].coords)
|
|
84
83
|
]
|
|
85
84
|
}
|
|
86
85
|
};
|
|
@@ -93,12 +92,12 @@ class ItineraryMapHandler {
|
|
|
93
92
|
*/
|
|
94
93
|
const endFeature = {
|
|
95
94
|
type: 'Feature',
|
|
96
|
-
properties: { 'itinerary': '
|
|
95
|
+
properties: { 'itinerary': 'end' },
|
|
97
96
|
geometry: {
|
|
98
97
|
type: 'LineString',
|
|
99
98
|
coordinates: [
|
|
100
|
-
|
|
101
|
-
|
|
99
|
+
MapboxUtils.coordsToLngLat(itinerary.nodes[itinerary.nodes.length - 1].coords),
|
|
100
|
+
MapboxUtils.coordsToLngLat(itinerary.end)
|
|
102
101
|
]
|
|
103
102
|
}
|
|
104
103
|
};
|
|
@@ -111,7 +110,7 @@ class ItineraryMapHandler {
|
|
|
111
110
|
const itineraryFeatures = itinerary.edges.reduce((acc, edge) => {
|
|
112
111
|
|
|
113
112
|
if (!currentFeatureCoordinates || !Level.equalsTo(edge.level, previousEdgeLevel)) {
|
|
114
|
-
currentFeatureCoordinates = [
|
|
113
|
+
currentFeatureCoordinates = [MapboxUtils.coordsToLngLat(edge.node1.coords)];
|
|
115
114
|
const feature = {
|
|
116
115
|
type: 'Feature',
|
|
117
116
|
properties: { 'itinerary': 'core' },
|
|
@@ -127,7 +126,7 @@ class ItineraryMapHandler {
|
|
|
127
126
|
previousEdgeLevel = edge.level;
|
|
128
127
|
}
|
|
129
128
|
|
|
130
|
-
currentFeatureCoordinates.push(
|
|
129
|
+
currentFeatureCoordinates.push(MapboxUtils.coordsToLngLat(edge.node2.coords));
|
|
131
130
|
|
|
132
131
|
return acc;
|
|
133
132
|
|
|
@@ -158,7 +157,7 @@ class ItineraryMapHandler {
|
|
|
158
157
|
properties: { 'start': 'yes' },
|
|
159
158
|
geometry: {
|
|
160
159
|
type: 'Point',
|
|
161
|
-
coordinates:
|
|
160
|
+
coordinates: MapboxUtils.coordsToLngLat(coordinates)
|
|
162
161
|
}
|
|
163
162
|
};
|
|
164
163
|
if (coordinates.level !== null) {
|
|
@@ -185,7 +184,7 @@ class ItineraryMapHandler {
|
|
|
185
184
|
properties: { 'end': 'yes' },
|
|
186
185
|
geometry: {
|
|
187
186
|
type: 'Point',
|
|
188
|
-
coordinates:
|
|
187
|
+
coordinates: MapboxUtils.coordsToLngLat(coordinates)
|
|
189
188
|
}
|
|
190
189
|
};
|
|
191
190
|
if (coordinates.level !== null) {
|
|
@@ -198,7 +197,7 @@ class ItineraryMapHandler {
|
|
|
198
197
|
}
|
|
199
198
|
|
|
200
199
|
/**
|
|
201
|
-
* @returns {
|
|
200
|
+
* @returns {Layer[]}
|
|
202
201
|
*/
|
|
203
202
|
generateLayers(sourceId) {
|
|
204
203
|
return [
|
|
@@ -1,16 +1,18 @@
|
|
|
1
|
-
import
|
|
1
|
+
import {
|
|
2
|
+
Map, Popup
|
|
3
|
+
} from 'mapbox-gl';
|
|
2
4
|
|
|
3
5
|
import {
|
|
4
6
|
Coordinates, Level
|
|
5
7
|
} from '@wemap/geo';
|
|
6
8
|
|
|
7
|
-
import ItineraryStore from '../../stores/ItineraryStore';
|
|
8
|
-
import UserOnMapHandler from './UserOnMapHandler';
|
|
9
|
+
import ItineraryStore from '../../stores/ItineraryStore.js';
|
|
10
|
+
import UserOnMapHandler from './UserOnMapHandler.js';
|
|
9
11
|
|
|
10
12
|
class MapClickHandler {
|
|
11
13
|
|
|
12
14
|
/**
|
|
13
|
-
* @param {
|
|
15
|
+
* @param {Map} map
|
|
14
16
|
* @param {UserOnMapHandler} userOnMapHandler
|
|
15
17
|
*/
|
|
16
18
|
constructor(map, userOnMapHandler) {
|
|
@@ -39,15 +41,15 @@ class MapClickHandler {
|
|
|
39
41
|
|
|
40
42
|
const coordinates = new Coordinates(e.lngLat.lat, e.lngLat.lng);
|
|
41
43
|
|
|
42
|
-
this.popup = new
|
|
44
|
+
this.popup = new Popup()
|
|
43
45
|
.setLngLat(e.lngLat)
|
|
44
46
|
.setDOMContent(this._generatePopupHtml(coordinates))
|
|
45
47
|
.addTo(this.map);
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
_updateCoordinatesWithMapLevel(coordinates) {
|
|
49
|
-
if (this.map.getLevel() !== null) {
|
|
50
|
-
coordinates.level = new Level(this.map.getLevel());
|
|
51
|
+
if (this.map.indoor.getLevel() !== null) {
|
|
52
|
+
coordinates.level = new Level(this.map.indoor.getLevel());
|
|
51
53
|
}
|
|
52
54
|
}
|
|
53
55
|
|
|
@@ -1,470 +1,91 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
Attitude, UserPosition, Constants
|
|
5
|
-
} from '@wemap/geo';
|
|
6
|
-
import { deg2rad } from '@wemap/maths';
|
|
1
|
+
import { Map } from 'mapbox-gl';
|
|
2
|
+
import { GeolocationLayer } from '@wemap/map';
|
|
3
|
+
import { TimeUtils } from '@wemap/utils';
|
|
7
4
|
|
|
8
5
|
import {
|
|
9
6
|
PositionSmoother, ProvidersInterface, EventType
|
|
10
|
-
} from '
|
|
11
|
-
|
|
12
|
-
import ItineraryStore from '../../stores/ItineraryStore';
|
|
13
|
-
import MapboxHelper from '../MapboxHelper';
|
|
7
|
+
} from '../../../index.js';
|
|
14
8
|
|
|
15
|
-
/**
|
|
16
|
-
* Minimum size of accuracy circle radius
|
|
17
|
-
*/
|
|
18
|
-
const MIN_ACCURACY_CIRCLE_RADIUS = 18;
|
|
19
9
|
|
|
20
10
|
class UserOnMapHandler {
|
|
21
11
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
trackUserLocationFirst = true;
|
|
26
|
-
|
|
27
|
-
attitude = null;
|
|
28
|
-
attitudeDirty = false;
|
|
29
|
-
renderedAttitude = null;
|
|
30
|
-
|
|
31
|
-
position = null;
|
|
32
|
-
positionDirty = false;
|
|
33
|
-
renderedPosition = null;
|
|
34
|
-
|
|
35
|
-
positionAccuracy = null;
|
|
36
|
-
positionAccuracyDirty = false;
|
|
37
|
-
renderAccuracy = false;
|
|
38
|
-
|
|
39
|
-
positionForCameraDirty = false;
|
|
40
|
-
levelForPositionDirty = false;
|
|
12
|
+
smoother;
|
|
13
|
+
attitudeProviderId;
|
|
14
|
+
positionProviderId;
|
|
41
15
|
|
|
42
16
|
/**
|
|
43
|
-
* @param {
|
|
44
|
-
* @param {HTMLDivElement} mapContainer
|
|
17
|
+
* @param {Map} map
|
|
45
18
|
*/
|
|
46
|
-
constructor(map
|
|
47
|
-
if (!map) {
|
|
48
|
-
throw new TypeError('map cannot be null');
|
|
49
|
-
}
|
|
19
|
+
constructor(map) {
|
|
50
20
|
|
|
51
|
-
this.
|
|
52
|
-
this.mapContainer = mapContainer;
|
|
53
|
-
this.itineraryStore = ItineraryStore.instance;
|
|
21
|
+
this.geolocationLayer = new GeolocationLayer(map);
|
|
54
22
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
map.on('level', () => (this.levelForPositionDirty = true));
|
|
58
|
-
|
|
59
|
-
this.createDomPosition();
|
|
60
|
-
this.createButtons();
|
|
23
|
+
this.geolocationLayer.onStartButtonClicked = layer => this.start(layer);
|
|
24
|
+
this.geolocationLayer.onStopButtonClicked = layer => this.stop(layer);
|
|
61
25
|
}
|
|
62
26
|
|
|
27
|
+
start() {
|
|
63
28
|
|
|
64
|
-
|
|
65
|
-
this.renderLoop();
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
componentWillUnmount() {
|
|
69
|
-
cancelAnimationFrame(this.renderLoopId);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
/**
|
|
74
|
-
* Geo location logic
|
|
75
|
-
*/
|
|
76
|
-
|
|
77
|
-
startPositioning() {
|
|
78
|
-
|
|
79
|
-
if (this.positioningStarted) {
|
|
80
|
-
return;
|
|
81
|
-
}
|
|
82
|
-
this.positioningStarted = true;
|
|
83
|
-
|
|
29
|
+
this.geolocationLayer.startRenderLoop();
|
|
84
30
|
|
|
85
31
|
/**
|
|
86
32
|
* Attitude
|
|
87
33
|
*/
|
|
88
|
-
|
|
89
|
-
this.attitudeProvidersId = ProvidersInterface.addEventListener(
|
|
34
|
+
this.attitudeProviderId = ProvidersInterface.addEventListener(
|
|
90
35
|
EventType.AbsoluteAttitude,
|
|
91
|
-
attitude => this.
|
|
36
|
+
attitude => this.geolocationLayer.updateHeading(attitude.headingDegrees)
|
|
92
37
|
);
|
|
93
38
|
|
|
94
39
|
// There is no sense to show the last known attitude on the map
|
|
95
|
-
// this.
|
|
40
|
+
// this.geolocationLayer.updateHeading(ProvidersInterface.getLastKnown(EventType.AbsoluteAttitude));
|
|
96
41
|
|
|
97
42
|
|
|
98
43
|
/**
|
|
99
44
|
* Position
|
|
100
45
|
*/
|
|
101
46
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
const firstPositionFn = () => {
|
|
107
|
-
this.buttonLocateMe.classList.remove('mapboxgl-ctrl-geolocate-waiting');
|
|
108
|
-
this.blueDot.classList.remove('inaccurate');
|
|
109
|
-
this.accuracyCircle.classList.remove('inaccurate');
|
|
110
|
-
};
|
|
111
|
-
|
|
112
|
-
this.positionProvidersId = ProvidersInterface.addEventListener(
|
|
113
|
-
EventType.AbsolutePosition,
|
|
114
|
-
position => {
|
|
115
|
-
this.smoother.feed(position);
|
|
116
|
-
|
|
117
|
-
if (!firstPositionFound) {
|
|
118
|
-
firstPositionFn();
|
|
119
|
-
firstPositionFound = true;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
);
|
|
123
|
-
|
|
124
|
-
this.updatePosition(ProvidersInterface.getLastKnown(EventType.AbsolutePosition));
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
/**
|
|
128
|
-
* Itinerary
|
|
129
|
-
*/
|
|
130
|
-
|
|
131
|
-
this.onItineraryChanged = itinerary => {
|
|
132
|
-
if (!itinerary) {
|
|
133
|
-
this.stopPositioning();
|
|
47
|
+
const positionTransform = input => {
|
|
48
|
+
if (input === null) {
|
|
49
|
+
return null;
|
|
134
50
|
}
|
|
51
|
+
const output = input.clone();
|
|
52
|
+
output.timestamp = TimeUtils.preciseTimeToUnixTimestamp(input.time * 1e3);
|
|
53
|
+
return output;
|
|
135
54
|
};
|
|
136
|
-
this.itineraryStore.on(ItineraryStore.Events.ItineraryChanged, this.onItineraryChanged);
|
|
137
55
|
|
|
56
|
+
this.smoother = new PositionSmoother(position => {
|
|
57
|
+
this.geolocationLayer.updatePosition(positionTransform(position));
|
|
58
|
+
});
|
|
138
59
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
this.buttonLocateMe.classList.add('mapboxgl-ctrl-geolocate-active');
|
|
144
|
-
this.buttonLocateMe.classList.add('mapboxgl-ctrl-geolocate-waiting');
|
|
145
|
-
this.buttonStopNav.style.display = 'block';
|
|
146
|
-
|
|
147
|
-
this.blueDot.classList.add('inaccurate');
|
|
148
|
-
this.accuracyCircle.classList.add('inaccurate');
|
|
60
|
+
this.positionProviderId = ProvidersInterface.addEventListener(
|
|
61
|
+
EventType.AbsolutePosition,
|
|
62
|
+
position => this.smoother.feed(position)
|
|
63
|
+
);
|
|
149
64
|
|
|
65
|
+
const lastKnownPosition = ProvidersInterface.getLastKnown(EventType.AbsolutePosition);
|
|
66
|
+
if (lastKnownPosition) {
|
|
67
|
+
this.geolocationLayer.updatePosition(positionTransform(lastKnownPosition));
|
|
68
|
+
}
|
|
150
69
|
}
|
|
151
70
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
if (!this.positioningStarted) {
|
|
155
|
-
return;
|
|
156
|
-
}
|
|
157
|
-
this.positioningStarted = false;
|
|
71
|
+
stop() {
|
|
158
72
|
|
|
73
|
+
this.geolocationLayer.stopRenderLoop();
|
|
159
74
|
|
|
160
75
|
/**
|
|
161
76
|
* Attitude
|
|
162
77
|
*/
|
|
163
78
|
|
|
164
|
-
ProvidersInterface.removeEventListener(this.
|
|
79
|
+
ProvidersInterface.removeEventListener(this.attitudeProviderId);
|
|
165
80
|
|
|
166
81
|
|
|
167
82
|
/**
|
|
168
83
|
* Position
|
|
169
84
|
*/
|
|
170
85
|
|
|
171
|
-
ProvidersInterface.removeEventListener(this.
|
|
86
|
+
ProvidersInterface.removeEventListener(this.positionProviderId);
|
|
172
87
|
this.smoother.clear();
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
/**
|
|
176
|
-
* Itinerary
|
|
177
|
-
*/
|
|
178
|
-
|
|
179
|
-
this.itineraryStore.off(ItineraryStore.Events.ItineraryChanged, this.onItineraryChanged);
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
/**
|
|
183
|
-
* UI
|
|
184
|
-
*/
|
|
185
|
-
|
|
186
|
-
this.buttonLocateMe.classList.remove('mapboxgl-ctrl-geolocate-active');
|
|
187
|
-
this.buttonLocateMe.classList.remove('mapboxgl-ctrl-geolocate-waiting');
|
|
188
|
-
|
|
189
|
-
this.buttonStopNav.style.display = 'none';
|
|
190
|
-
|
|
191
|
-
this.position = null;
|
|
192
|
-
this.positionDirty = true;
|
|
193
|
-
this.positionAccuracy = null;
|
|
194
|
-
this.positionAccuracyDirty = true;
|
|
195
|
-
this.attitude = null;
|
|
196
|
-
this.attitudeDirty = true;
|
|
197
|
-
this.renderPosition();
|
|
198
|
-
this.renderOrientation();
|
|
199
88
|
}
|
|
200
89
|
|
|
201
|
-
/**
|
|
202
|
-
* @param {UserPosition} position
|
|
203
|
-
*/
|
|
204
|
-
updatePosition = position => {
|
|
205
|
-
|
|
206
|
-
if (this.position === position) {
|
|
207
|
-
return;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
this.positionDirty = true;
|
|
211
|
-
this.positionForCameraDirty = true;
|
|
212
|
-
this.position = position;
|
|
213
|
-
|
|
214
|
-
const newAccuracy = !position ? null : position.accuracy;
|
|
215
|
-
if (this.positionAccuracy !== newAccuracy) {
|
|
216
|
-
this.positionAccuracy = newAccuracy;
|
|
217
|
-
this.positionAccuracyDirty = true;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* @param {Attitude} attitude
|
|
224
|
-
*/
|
|
225
|
-
updateAttitude = attitude => {
|
|
226
|
-
|
|
227
|
-
if (this.attitude === attitude) {
|
|
228
|
-
return;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
this.attitudeDirty = true;
|
|
232
|
-
this.attitude = attitude;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
/**
|
|
237
|
-
* Render loops
|
|
238
|
-
*/
|
|
239
|
-
|
|
240
|
-
renderLoop = () => {
|
|
241
|
-
this.renderPosition();
|
|
242
|
-
this.renderPositionAccuracy();
|
|
243
|
-
this.renderOrientation();
|
|
244
|
-
this.renderCameraCenter();
|
|
245
|
-
this.renderLoopId = requestAnimationFrame(this.renderLoop);
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
renderPosition() {
|
|
249
|
-
|
|
250
|
-
if (!this.positionDirty && !this.levelForPositionDirty) {
|
|
251
|
-
return;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
let position;
|
|
255
|
-
if (this.position !== null
|
|
256
|
-
&& (this.map.getLevel() === null
|
|
257
|
-
|| this.position.level === null
|
|
258
|
-
|| this.map.getLevel() === this.position.level.val
|
|
259
|
-
)
|
|
260
|
-
) {
|
|
261
|
-
position = this.position;
|
|
262
|
-
} else {
|
|
263
|
-
position = null;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
if (position && !this.renderedPosition) {
|
|
267
|
-
|
|
268
|
-
this.mapMarker = MapboxHelper.createMarker({
|
|
269
|
-
dom: this.positionIcon,
|
|
270
|
-
iconAnchor: [0, 0],
|
|
271
|
-
latitude: position.lat,
|
|
272
|
-
longitude: position.lng
|
|
273
|
-
}).addTo(this.map);
|
|
274
|
-
|
|
275
|
-
} else if (!position && this.renderPosition) {
|
|
276
|
-
this.mapMarker.remove();
|
|
277
|
-
} else if (position) {
|
|
278
|
-
this.mapMarker.setLngLat([position.lng, position.lat]);
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
this.renderedPosition = position;
|
|
282
|
-
this.positionDirty = false;
|
|
283
|
-
this.levelForPositionDirty = false;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
renderPositionAccuracy() {
|
|
287
|
-
|
|
288
|
-
if (!this.positionAccuracyDirty) {
|
|
289
|
-
return;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
let accuracyToSmall = false;
|
|
293
|
-
if (this.positionAccuracy !== null) {
|
|
294
|
-
|
|
295
|
-
// https://wiki.openstreetmap.org/wiki/Zoom_levels
|
|
296
|
-
const lengthOfATileInMeters = Constants.CIRCUMFERENCE * Math.cos(deg2rad(this.position.lat)) / (2 ** this.map.getZoom());
|
|
297
|
-
const lengthOfAPixel = lengthOfATileInMeters / this.map.transform.tileSize;
|
|
298
|
-
const radiusInPx = this.position.accuracy / lengthOfAPixel;
|
|
299
|
-
|
|
300
|
-
if (radiusInPx < MIN_ACCURACY_CIRCLE_RADIUS) {
|
|
301
|
-
accuracyToSmall = true;
|
|
302
|
-
} else {
|
|
303
|
-
this.accuracyCircle.style.width = `${radiusInPx * 2}px`;
|
|
304
|
-
this.accuracyCircle.style.height = `${radiusInPx * 2}px`;
|
|
305
|
-
this.accuracyCircle.style.top = `-${radiusInPx}px`;
|
|
306
|
-
this.accuracyCircle.style.left = `-${radiusInPx}px`;
|
|
307
|
-
}
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
const renderAccuracy = this.positionAccuracy !== null && !accuracyToSmall;
|
|
311
|
-
|
|
312
|
-
if (renderAccuracy && !this.renderAccuracy) {
|
|
313
|
-
this.positionIcon.appendChild(this.accuracyCircle);
|
|
314
|
-
} else if (!renderAccuracy && this.renderAccuracy) {
|
|
315
|
-
this.positionIcon.removeChild(this.accuracyCircle);
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
this.renderAccuracy = renderAccuracy;
|
|
319
|
-
this.positionAccuracyDirty = false;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
renderOrientation() {
|
|
323
|
-
|
|
324
|
-
if (!this.attitudeDirty || !this.positionIcon) {
|
|
325
|
-
return;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
if (!this.renderedAttitude && this.attitude) {
|
|
329
|
-
this.positionIcon.appendChild(this.compassIcon);
|
|
330
|
-
} else if (this.renderedAttitude && !this.attitude) {
|
|
331
|
-
this.positionIcon.removeChild(this.compassIcon);
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
if (this.attitude) {
|
|
335
|
-
this.positionIcon.style.transform = 'rotate(' + this.attitude.headingDegrees + 'deg)';
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
this.renderedAttitude = this.attitude;
|
|
339
|
-
this.attitudeDirty = false;
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
renderCameraCenter() {
|
|
343
|
-
|
|
344
|
-
if (!this.positionForCameraDirty || !this.trackUserLocation || !this.position) {
|
|
345
|
-
return;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
const center = new mapboxgl.LngLat(this.position.lng, this.position.lat);
|
|
349
|
-
|
|
350
|
-
let transform;
|
|
351
|
-
if (this.trackUserLocationFirst) {
|
|
352
|
-
|
|
353
|
-
transform = this.map.cameraForBounds(
|
|
354
|
-
center.toBounds(this.position.accuracy),
|
|
355
|
-
{
|
|
356
|
-
bearing: this.map.getBearing(),
|
|
357
|
-
maxZoom: 21,
|
|
358
|
-
padding: 100
|
|
359
|
-
}
|
|
360
|
-
);
|
|
361
|
-
|
|
362
|
-
this.trackUserLocationFirst = false;
|
|
363
|
-
|
|
364
|
-
} else {
|
|
365
|
-
transform = { center };
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
this.map.jumpTo(transform);
|
|
369
|
-
|
|
370
|
-
if (this.position && this.position.level && !this.position.level.isRange
|
|
371
|
-
&& this.position.level.val !== this.map.getLevel()) {
|
|
372
|
-
this.map.setLevel(this.position.level.val);
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
this.positionForCameraDirty = false;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
/**
|
|
380
|
-
* Styling
|
|
381
|
-
*/
|
|
382
|
-
|
|
383
|
-
createDomPosition() {
|
|
384
|
-
|
|
385
|
-
// Main element
|
|
386
|
-
this.positionIcon = document.createElement('div');
|
|
387
|
-
|
|
388
|
-
// Accuracy circle
|
|
389
|
-
this.accuracyCircle = document.createElement('div');
|
|
390
|
-
this.accuracyCircle.id = 'location-marker-accuracy';
|
|
391
|
-
this.positionIcon.appendChild(this.accuracyCircle);
|
|
392
|
-
|
|
393
|
-
// Blue dot
|
|
394
|
-
this.blueDot = document.createElement('div');
|
|
395
|
-
this.blueDot.id = 'location-marker';
|
|
396
|
-
this.positionIcon.appendChild(this.blueDot);
|
|
397
|
-
|
|
398
|
-
// Compass cone
|
|
399
|
-
this.compassIcon = document.createElement('div');
|
|
400
|
-
this.compassIcon.id = 'location-marker-compass';
|
|
401
|
-
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
createButtons() {
|
|
406
|
-
|
|
407
|
-
const topRightContainer = document.getElementsByClassName('mapboxgl-ctrl-top-right')[0];
|
|
408
|
-
|
|
409
|
-
const userLocationContainer = document.createElement('div');
|
|
410
|
-
userLocationContainer.className = 'mapboxgl-ctrl mapboxgl-ctrl-group';
|
|
411
|
-
userLocationContainer.id = 'user-location-container';
|
|
412
|
-
topRightContainer.appendChild(userLocationContainer);
|
|
413
|
-
|
|
414
|
-
this.createLocateMeButton(userLocationContainer);
|
|
415
|
-
this.createStopNavButton(userLocationContainer);
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
/**
|
|
419
|
-
* @param {HTMLDivElement} container
|
|
420
|
-
*/
|
|
421
|
-
createLocateMeButton(container) {
|
|
422
|
-
|
|
423
|
-
const buttonLocateMe = document.createElement('button');
|
|
424
|
-
this.buttonLocateMe = buttonLocateMe;
|
|
425
|
-
|
|
426
|
-
buttonLocateMe.type = 'button';
|
|
427
|
-
buttonLocateMe.title = 'Find my location';
|
|
428
|
-
buttonLocateMe.className = 'mapboxgl-ctrl-geolocate';
|
|
429
|
-
container.appendChild(buttonLocateMe);
|
|
430
|
-
|
|
431
|
-
const span = document.createElement('span');
|
|
432
|
-
span.className = 'mapboxgl-ctrl-icon';
|
|
433
|
-
buttonLocateMe.appendChild(span);
|
|
434
|
-
|
|
435
|
-
buttonLocateMe.onclick = () => {
|
|
436
|
-
this.trackUserLocation = true;
|
|
437
|
-
this.positionForCameraDirty = true;
|
|
438
|
-
this.trackUserLocationFirst = true;
|
|
439
|
-
this.renderCameraCenter();
|
|
440
|
-
|
|
441
|
-
if (!this.positioningStarted) {
|
|
442
|
-
this.startPositioning();
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
};
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
/**
|
|
449
|
-
* @param {HTMLDivElement} container
|
|
450
|
-
*/
|
|
451
|
-
createStopNavButton(container) {
|
|
452
|
-
|
|
453
|
-
const buttonStopNav = document.createElement('button');
|
|
454
|
-
this.buttonStopNav = buttonStopNav;
|
|
455
|
-
buttonStopNav.type = 'button';
|
|
456
|
-
buttonStopNav.title = 'Remove my location';
|
|
457
|
-
buttonStopNav.className = 'mapboxgl-ctrl-geolocate-remove';
|
|
458
|
-
buttonStopNav.style.display = 'none';
|
|
459
|
-
container.appendChild(buttonStopNav);
|
|
460
|
-
|
|
461
|
-
const span = document.createElement('span');
|
|
462
|
-
span.className = 'mapboxgl-ctrl-icon';
|
|
463
|
-
buttonStopNav.appendChild(span);
|
|
464
|
-
|
|
465
|
-
buttonStopNav.onclick = () => {
|
|
466
|
-
this.stopPositioning();
|
|
467
|
-
};
|
|
468
|
-
}
|
|
469
90
|
}
|
|
470
91
|
export default UserOnMapHandler;
|