aboutsummaryrefslogtreecommitdiff
path: root/modern
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2020-03-22 18:12:53 -0700
committerAnton Tananaev <anton.tananaev@gmail.com>2020-03-22 18:12:53 -0700
commit80f36b23de8557445623e530708298a557f9fa2e (patch)
tree0b116888b22af7a449aad03fc7939c70407ff262 /modern
parentd9ac1837c3f1640a0b1daf201bf281cbc2f35bcb (diff)
downloadetbsa-traccar-web-80f36b23de8557445623e530708298a557f9fa2e.tar.gz
etbsa-traccar-web-80f36b23de8557445623e530708298a557f9fa2e.tar.bz2
etbsa-traccar-web-80f36b23de8557445623e530708298a557f9fa2e.zip
Wait for image loading
Diffstat (limited to 'modern')
-rw-r--r--modern/src/MainMap.js51
1 files changed, 30 insertions, 21 deletions
diff --git a/modern/src/MainMap.js b/modern/src/MainMap.js
index d934c51..f030560 100644
--- a/modern/src/MainMap.js
+++ b/modern/src/MainMap.js
@@ -36,34 +36,43 @@ class MainMap extends Component {
}
loadImage(key, url) {
- const image = new Image();
- image.onload = () => {
- const canvas = document.createElement('canvas');
- canvas.width = image.width * window.devicePixelRatio;
- canvas.height = image.height * window.devicePixelRatio;
- canvas.style.width = `${image.width}px`;
- canvas.style.height = `${image.height}px`;
- const context = canvas.getContext('2d');
- context.drawImage(image, 0, 0, canvas.width, canvas.height);
- this.map.addImage(key, context.getImageData(0, 0, canvas.width, canvas.height), {
- pixelRatio: window.devicePixelRatio
- });
- }
- image.src = url;
+ return new Promise(resolutionFunc => {
+ const image = new Image();
+ image.onload = () => {
+ const canvas = document.createElement('canvas');
+ canvas.width = image.width * window.devicePixelRatio;
+ canvas.height = image.height * window.devicePixelRatio;
+ canvas.style.width = `${image.width}px`;
+ canvas.style.height = `${image.height}px`;
+ const context = canvas.getContext('2d');
+ context.drawImage(image, 0, 0, canvas.width, canvas.height);
+ this.map.addImage(key, context.getImageData(0, 0, canvas.width, canvas.height), {
+ pixelRatio: window.devicePixelRatio
+ });
+ resolutionFunc()
+ }
+ image.src = url;
+ });
}
mapDidLoad(map) {
this.map = map;
- this.loadImage('background', 'images/background.svg');
- this.loadImage('icon-marker', 'images/icon/marker.svg');
+ Promise.all([
+ this.loadImage('background', 'images/background.svg'),
+ this.loadImage('icon-marker', 'images/icon/marker.svg')
+ ]).then(() => {
+ this.imagesDidLoad();
+ });
+ }
- map.addSource('positions', {
+ imagesDidLoad() {
+ this.map.addSource('positions', {
'type': 'geojson',
'data': this.props.data
});
- map.addLayer({
+ this.map.addLayer({
'id': 'device-background',
'type': 'symbol',
'source': 'positions',
@@ -83,7 +92,7 @@ class MainMap extends Component {
}
});
- map.addLayer({
+ this.map.addLayer({
'id': 'device-icon',
'type': 'symbol',
'source': 'positions',
@@ -93,9 +102,9 @@ class MainMap extends Component {
}
});
- map.addControl(new mapboxgl.NavigationControl());
+ this.map.addControl(new mapboxgl.NavigationControl());
- map.fitBounds(this.calculateBounds(), {
+ this.map.fitBounds(this.calculateBounds(), {
padding: 100,
maxZoom: 9
});