From 50505e02d2464a5f353aa805c9622c6d4f940ebc Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 24 Oct 2020 12:49:47 -0700 Subject: Simplify map code --- modern/src/map/MainMap.js | 2 +- modern/src/map/mapManager.js | 68 +++++++++++++++++++++----------------------- 2 files changed, 33 insertions(+), 37 deletions(-) (limited to 'modern/src/map') diff --git a/modern/src/map/MainMap.js b/modern/src/map/MainMap.js index 7332d93..c93c26d 100644 --- a/modern/src/map/MainMap.js +++ b/modern/src/map/MainMap.js @@ -57,7 +57,7 @@ const MainMap = () => { }, [containerEl]); useEffect(() => { - mapManager.registerListener(() => setMapReady(true)); + mapManager.onMapReady(() => setMapReady(true)); }, []); const markerClickHandler = (event) => { diff --git a/modern/src/map/mapManager.js b/modern/src/map/mapManager.js index a78a598..5c0510c 100644 --- a/modern/src/map/mapManager.js +++ b/modern/src/map/mapManager.js @@ -1,14 +1,13 @@ import 'mapbox-gl/dist/mapbox-gl.css'; import mapboxgl from 'mapbox-gl'; -let ready = false; -let registeredListener = null; +let readyListeners = []; -const registerListener = listener => { - if (ready) { +const onMapReady = listener => { + if (!readyListeners) { listener(); } else { - registeredListener = listener; + readyListeners.push(listener); } }; @@ -20,24 +19,24 @@ const loadImage = (url) => { }); }; -const loadIcon = (key, background, url) => { - return loadImage(url).then((image) => { - const canvas = document.createElement('canvas'); - canvas.width = background.width * window.devicePixelRatio; - canvas.height = background.height * window.devicePixelRatio; - canvas.style.width = `${background.width}px`; - canvas.style.height = `${background.height}px`; - const context = canvas.getContext('2d'); - context.drawImage(background, 0, 0, canvas.width, canvas.height); - - const imageWidth = image.width * window.devicePixelRatio; - const imageHeight = image.height * window.devicePixelRatio; - context.drawImage(image, (canvas.width - imageWidth) / 2, (canvas.height - imageHeight) / 2, imageWidth, imageHeight); - - map.addImage(key, context.getImageData(0, 0, canvas.width, canvas.height), { - pixelRatio: window.devicePixelRatio - }); - }); +const loadIcon = async (key, background, url) => { + const image = await loadImage(url); + const pixelRatio = window.devicePixelRatio; + + const canvas = document.createElement('canvas'); + canvas.width = background.width * pixelRatio; + canvas.height = background.height * pixelRatio; + canvas.style.width = `${background.width}px`; + canvas.style.height = `${background.height}px`; + + const context = canvas.getContext('2d'); + context.drawImage(background, 0, 0, canvas.width, canvas.height); + + const imageWidth = image.width * pixelRatio; + const imageHeight = image.height * pixelRatio; + context.drawImage(image, (canvas.width - imageWidth) / 2, (canvas.height - imageHeight) / 2, imageWidth, imageHeight); + + map.addImage(key, context.getImageData(0, 0, canvas.width, canvas.height), { pixelRatio }); }; const layerClickCallbacks = {}; @@ -155,24 +154,21 @@ const map = new mapboxgl.Map({ map.addControl(new mapboxgl.NavigationControl()); -map.on('load', () => { - loadImage('images/background.svg').then(background => { - Promise.all([ - loadIcon('icon-marker', background, 'images/icon/marker.svg') - ]).then(() => { - ready = true; - if (registeredListener) { - registeredListener(); - registeredListener = null; - } - }); - }); +map.on('load', async () => { + const background = await loadImage('images/background.svg'); + await Promise.all([ + loadIcon('icon-marker', background, 'images/icon/marker.svg'), + ]); + if (readyListeners) { + readyListeners.forEach(listener => listener()); + readyListeners = null; + } }); export default { element, map, - registerListener, + onMapReady, addLayer, removeLayer, calculateBounds, -- cgit v1.2.3