Last active
November 9, 2021 11:24
-
-
Save tsuz/f16fcd54ff6b9ce3e17b58648c546c5a to your computer and use it in GitHub Desktop.
Maxzoom = 16 vs 19 for POI https://jsfiddle.net/9wqoksav/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Swipe between maps</title> | |
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"> | |
<link href="https://api.mapbox.com/mapbox-gl-js/v2.4.1/mapbox-gl.css" rel="stylesheet"> | |
<script src="https://api.mapbox.com/mapbox-gl-js/v2.4.1/mapbox-gl.js"></script> | |
<style> | |
body { margin: 0; padding: 0; } | |
#map { position: absolute; top: 0; bottom: 0; width: 100%; } | |
</style> | |
</head> | |
<body> | |
<style> | |
body { | |
overflow: hidden; | |
} | |
body * { | |
-webkit-touch-callout: none; | |
-webkit-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} | |
.map { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
width: 100%; | |
} | |
</style> | |
<script src="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.4.0/mapbox-gl-compare.js"></script> | |
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-compare/v0.4.0/mapbox-gl-compare.css" type="text/css"> | |
<div id="comparison-container"> | |
<div id="before" class="map"></div> | |
<div id="after" class="map"></div> | |
</div> | |
<script> | |
mapboxgl.accessToken = 'pk.eyJ1IjoidGFrdXRvc3V6dWtpbWFwYm94IiwiYSI6ImNrMjJlMXplcTE4a2czY3F3MWkxZHN4cWkifQ.CRcFM34KAOiPKIbscodOqA'; | |
const beforeMap = new mapboxgl.Map({ | |
container: 'before', | |
style: 'mapbox://styles/mapbox/light-v10', | |
center: [103.8427611, 1.2831373], | |
zoom: 18.88 | |
}); | |
beforeMap.on('load', () => { | |
beforeMap.addSource('airports', { | |
'type': 'vector', | |
'url': 'mapbox://takutosuzukimapbox.sla-4514_1129_POI_GD_Labels16' | |
}); | |
beforeMap.addLayer({ | |
'id': 'airport', | |
'source': 'airports', | |
'source-layer': 'sla-4514_1129_POI_GD_Labels16', | |
'type': 'circle', | |
'paint': { | |
'circle-color': "hsl(119, 89%, 48%)", | |
'circle-radius': 4, | |
'circle-stroke-width': 2, | |
'circle-stroke-color': '#ffffff' | |
} | |
}); | |
}) | |
const afterMap = new mapboxgl.Map({ | |
container: 'after', | |
style: 'mapbox://styles/mapbox/light-v10', | |
center: [103.8427611, 1.2831373], | |
zoom: 18.88 | |
}); | |
afterMap.on('load', () => { | |
afterMap.addSource('airports', { | |
'type': 'vector', | |
'url': 'mapbox://takutosuzukimapbox.sla-4514_1129_POI_GD_Labels19' | |
}); | |
afterMap.addLayer({ | |
'id': 'airport', | |
'source': 'airports', | |
'source-layer': 'sla-4514_1129_POI_GD_Labels19', | |
'type': 'circle', | |
'paint': { | |
'circle-color': "hsl(238, 100%, 61%)", | |
'circle-radius': 4, | |
'circle-stroke-width': 2, | |
'circle-stroke-color': '#ffffff' | |
} | |
}); | |
}) | |
// A selector or reference to HTML element | |
const container = '#comparison-container'; | |
const map = new mapboxgl.Compare(beforeMap, afterMap, container, { | |
// Set this to enable comparing two maps by mouse movement: | |
// mousemove: true | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment