93 lines
2.7 KiB
HTML
93 lines
2.7 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Light bright effect | 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/themes/css/cartodb.css" />
|
||
|
<!--[if lte IE 8]>
|
||
|
<link rel="stylesheet" href="http://libs.cartocdn.com/cartodb.js/v3/themes/css/cartodb.ie.css" />
|
||
|
<![endif]-->
|
||
|
<script type="sql/html" id="cartocss_template">
|
||
|
Map {
|
||
|
-torque-frame-count:32;
|
||
|
-torque-animation-duration:14;
|
||
|
-torque-time-attribute:"postedtime";
|
||
|
-torque-aggregation-function:"count(cartodb_id)";
|
||
|
-torque-resolution:16;
|
||
|
-torque-data-aggregation:linear;
|
||
|
}
|
||
|
|
||
|
#twitter_wowfakta{
|
||
|
comp-op: lighter;
|
||
|
marker-fill-opacity: 0.9;
|
||
|
marker-line-color: #FFF;
|
||
|
marker-line-width: 0;
|
||
|
marker-line-opacity: 1;
|
||
|
marker-type: ellipse;
|
||
|
marker-width: 1;
|
||
|
marker-fill: #F84F40;
|
||
|
}
|
||
|
#twitter_wowfakta[value>1] {
|
||
|
marker-width:2;
|
||
|
}
|
||
|
#twitter_wowfakta[value>2] {
|
||
|
marker-width:3;
|
||
|
}
|
||
|
#twitter_wowfakta[value>4] {
|
||
|
marker-width:5;
|
||
|
}
|
||
|
#twitter_wowfakta[value>8] {
|
||
|
marker-width:7;
|
||
|
}
|
||
|
#twitter_wowfakta[value>16] {
|
||
|
marker-width:9;
|
||
|
}
|
||
|
#twitter_wowfakta[value>32] {
|
||
|
marker-width:8;
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="map"></div>
|
||
|
|
||
|
<!-- include cartodb.js library -->
|
||
|
<script src="http://libs.cartocdn.com/cartodb.js/v3/cartodb.js"></script>
|
||
|
|
||
|
<script>
|
||
|
function main() {
|
||
|
var map = new L.Map('map', {
|
||
|
zoomControl: false,
|
||
|
center: [-6.964483, 107.634506],
|
||
|
zoom: 7
|
||
|
});
|
||
|
var layer = L.tileLayer('http://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png',{
|
||
|
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, © <a href="http://cartodb.com/attributions">CartoDB</a>'
|
||
|
}).addTo(map);
|
||
|
|
||
|
cartodb.createLayer(map, {
|
||
|
type: "torque",
|
||
|
order: 1,
|
||
|
options: {
|
||
|
table_name: "twitter_wowfakta",
|
||
|
user_name: "andrew",
|
||
|
tile_style: $('#cartocss_template').html()
|
||
|
}
|
||
|
}).done(function(layer) {
|
||
|
map.addLayer(layer);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// you could use $(window).load(main);
|
||
|
window.onload = main;
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|