Based on Jorge Sanz's block. You can interact with all the uncommented parameters here.
Last active
May 9, 2016 13:12
-
-
Save ramiroaznar/084f63f4200406508467826522dba842 to your computer and use it in GitHub Desktop.
Training: createVis() example with CartoDB.js
This file contains 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> | |
<title>Training: createVis() example with 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: 100%; | |
padding: 0; | |
margin: 0; | |
} | |
</style> | |
<link rel="stylesheet" href="http://libs.cartocdn.com/cartodb.js/v3/3.15/themes/css/cartodb.css" /> | |
<!-- | |
<link rel="stylesheet" href="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/themes/css/cartodb.css" /> | |
--> | |
</head> | |
<body> | |
<div id="map"></div> | |
<!-- include cartodb.js library --> | |
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js"></script> | |
<!-- | |
<script src="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/cartodb.js"></script> | |
--> | |
<!-- Drop your code between the script tags below! --> | |
<script> | |
mapUrl='https://team.cartodb.com/u/ramirocartodb/api/v2/viz/0ba65c92-120b-11e6-9ab2-0e5db1731f59/viz.json' | |
cartodb.createVis('map', mapUrl, {//options | |
// center_lat:36, | |
// center_lon:0, | |
// zoom:8, | |
// legends:true, | |
// shareable:true, | |
// title:true, | |
// description:true, | |
// search:true, | |
// zoomControl:true, | |
// loaderControl:true, | |
// cartodb_logo:true, | |
// infowindow:true, | |
// time_slider:false, | |
// layer_selector:true, | |
// legends:true, | |
// https:true, | |
// scrollwheel:true, | |
// fullscreen:true, | |
// mobile_layout:true, | |
// force_mobile:false, | |
// no_cdn:false | |
}) | |
.on('done', function(vis,layers) { | |
console.log(vis); | |
console.log(layers); | |
}).on('error', function() { | |
console.log("some error occurred"); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment