Skip to content

Instantly share code, notes, and snippets.

@iriberri
Created July 21, 2015 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iriberri/08abc420a376053c71d4 to your computer and use it in GitHub Desktop.
Save iriberri/08abc420a376053c71d4 to your computer and use it in GitHub Desktop.
Change basemap createVis
<!DOCTYPE html>
<html>
<head>
<title>Basemap example | CartoDB.js</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" href="http://cartodb.com/assets/favicon.ico" />
<style>
html, body, #map {
height: 90%;
padding: 0;
margin: 0;
}
</style>
<link rel="stylesheet" href="http://libs.cartocdn.com/cartodb.js/v3/3.15/themes/css/cartodb.css" />
</head>
<body>
<div id="map"></div>
<button type="button" id="button-basemap1" onclick="setBasemap1();"> Basemap 1</button>
<button type="button" id="button-basemap2" onclick="setBasemap2();"> Basemap 2</button>
<!-- include cartodb.js library -->
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js"></script>
<script>
var basemap;
function setBasemap1(){
basemap._url="http://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png";
basemap.redraw();
}
function setBasemap2(){
basemap._url="http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png";
basemap.redraw();
}
function main() {
cartodb.createVis('map', 'http://documentation.cartodb.com/api/v2/viz/2b13c956-e7c1-11e2-806b-5404a6a683d5/viz.json')
.done(function(vis, layers) {
basemap = layers[0];
})
.error(function(err) {
console.log(err);
});
}
window.onload = main;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment