Skip to content

Instantly share code, notes, and snippets.

@jsanz
Forked from ernesmb/index.html
Last active April 3, 2016 12:10
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 jsanz/78d004e805ea4dbf8397814edc477a89 to your computer and use it in GitHub Desktop.
Save jsanz/78d004e805ea4dbf8397814edc477a89 to your computer and use it in GitHub Desktop.
Training: createVis()
<!DOCTYPE html>
<html>
<head>
<title>Training | createVis | CartoDB</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://jsanzacademy1.cartodb.com/api/v2/viz/5bbeb132-f8f4-11e5-8bbe-0e787de82d45/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