Last active
March 14, 2018 18:39
-
-
Save padawannn/efd8972ef85bb119c9168fd5318c89ba to your computer and use it in GitHub Desktop.
Carto-base-map-selector
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>MapboxGL CARTO Building</title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.1/mapbox-gl.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.1/mapbox-gl.css' rel='stylesheet' /> | |
<style> | |
body { margin:0; padding:0; } | |
#map { position:absolute; top:0; bottom:0; width:100%; } | |
#menu { | |
position: absolute; | |
background: #fff; | |
top: 0; | |
left: 0; | |
padding: 10px; | |
z-index: 1; | |
} | |
</style> | |
</head> | |
<body> | |
<div id='map'></div> | |
<div id='menu'> | |
<input id='voyager' type='radio' name='style' checked='checked' onclick="setStyle('voyager-gl-style')"> | |
<label for='voyager'>Voyager</label> | |
<input id='positron' type='radio' name='style' onclick="setStyle('positron-gl-style')"> | |
<label for='positron'>Positron</label> | |
<input id='dark' type='radio' name='style' onclick="setStyle('dark-matter-gl-style')"> | |
<label for='dark'>Dark matter</label> | |
</div> | |
<script> | |
var map = new mapboxgl.Map({ | |
container: 'map', | |
center: [-74.000271, 40.7191704], | |
zoom: 2 | |
}); | |
setStyle('voyager-gl-style'); | |
function setStyle(style) { | |
map.setStyle('http://basemaps.cartocdn.com/gl/' + style + '/style.json'); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment