Last active
June 6, 2016 15:07
-
-
Save ramiroaznar/1f3b5db4984bad7dc58f0e8b995dfebf to your computer and use it in GitHub Desktop.
Deep-Insights.js | createCartoDBLayer
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Deep-Insights.js | createCartoDBLayer</title> | |
<link rel="shortcut icon" href="http://cartodb.com/assets/favicon.ico" /> | |
<meta name=viewport content="width=device-width initial-scale=1"> | |
<link rel="stylesheet" href="http://libs.cartocdn.com/di.js/v0/themes/css/deep-insights.css" /> | |
<script src=" http://libs.cartocdn.com/di.js/v0/deep-insights.uncompressed.js"></script> | |
<style type="text/css"> | |
html, body { | |
position:relative; | |
height: 100%; | |
padding: 0; | |
margin: 0; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="dashboard"></div> | |
| |
<script> | |
window.onload = function() { | |
// set vizJson | |
var vizJSON = "https://team.cartodb.com/u/ramirocartodb/api/v3/viz/3b3cb8be-273e-11e6-9f49-0ea31932ec1d/viz.json"; | |
// create dashboard | |
cartodb.deepInsights.createDashboard('#dashboard', vizJSON, { | |
no_cdn: false, | |
cartodb_logo: false | |
},function(err,dashboard){ | |
// get map object | |
var map = dashboard.getMap(); | |
// add populated layer | |
vis.map.createCartoDBLayer({ | |
"type": "CartoDB", | |
"cartocss": "#populated_places{marker-fill-opacity: 0.9;marker-line-width: 0;marker-line-opacity: 1;marker-placement: point;marker-type: ellipse;marker-width: 2;marker-fill: #FFFFFF;marker-allow-overlap: true;}", | |
"sql": "select * from populated_places" | |
}); | |
// set widget parameters | |
var country = { | |
"type": "category", | |
"title": "Country Borders Category", | |
"column": "name" | |
}; | |
var sum = { | |
"type": "formula", | |
"title": "Total Population", | |
"column": "pop_max", | |
"operation": "sum" | |
}; | |
var avg = { | |
"type": "formula", | |
"title": "Average Population", | |
"column": "pop_max", | |
"operation": "avg" | |
}; | |
var histo = { | |
"type": "histogram", | |
"title": "Population Histogram", | |
"column": "pop_max", | |
"bins": 10 | |
}; | |
var city = { | |
"type": "category", | |
"title": "City Category", | |
"column": "name" | |
}; | |
// add widgets to the dashboard | |
// layer 2 - populated places | |
dashboard.createFormulaWidget(sum,map.getLayer(2)); | |
dashboard.createFormulaWidget(avg,map.getLayer(2)); | |
dashboard.createHistogramWidget(histo,map.getLayer(2)); | |
dashboard.createCategoryWidget(city,map.getLayer(2)); | |
// layer 1 - world borders | |
dashboard.createCategoryWidget(country,map.getLayer(1)); | |
}); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment