torque/index.html

210 lines
7.0 KiB
HTML
Raw Normal View History

2012-05-17 07:33:56 +08:00
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
2012-09-27 07:20:08 +08:00
<title>CartoDB + Time</title>
2012-05-17 07:33:56 +08:00
<link rel="shortcut icon" href="http://cartodb.com/favicon/favicon_32x32.ico" />
<link href="http://code.google.com/apis/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
2013-09-28 00:55:57 +08:00
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<style>
#torque-slider {
position:absolute;
bottom:18px;
right:25px;
width:300px;
}
#torque-pause {
position:absolute;
bottom:12px;
right:345px;
width:28px;
height: 26px;
padding: 1px 2px 2px 2px;
z-index: 1000;
border-radius: 3px;
cursor: pointer;
background-color: white;
background-image: url(../img/play.png);
background-repeat:no-repeat;
background-position:center;
}
#torque-pause.playing {
2013-09-30 19:31:21 +08:00
background-color: white; background-image: url(img/pause.png); background-repeat:no-repeat; background-position:center;
2013-09-28 00:55:57 +08:00
}
#torque-time {
position: absolute;
top: 100px;
left: 50%;
color: white;
font-size: 31px;
font-family: Georgia, serif;
}
</style>
</head>
<body>
<div id="map_canvas"></div>
<div id="torque-slider"></div>
<a id="torque-pause" class="playing"></a>
<div id="torque-time"></div>
<a class="cartodb_logo" href="http://www.cartodb.com" target="_blank">CartoDB</a>
2012-09-27 07:20:08 +08:00
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
2013-09-28 00:55:57 +08:00
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
2012-05-17 07:33:56 +08:00
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
2013-09-28 00:55:57 +08:00
<script src="vendor/leaflet.js"></script>
<script src="vendor/underscore.js"></script>
<script src="vendor/carto.js"></script>
<script src="dist/torque.uncompressed.js"></script>
2012-10-01 07:41:39 +08:00
2013-09-28 00:55:57 +08:00
<script type="text/javascript" src="examples/vendor/dat.gui.min.js"></script>
2012-10-01 07:33:17 +08:00
2013-09-28 00:55:57 +08:00
<script type="text/javascript">
var torqueLayer;
var ui;
function init_torque(map, options) {
// init torque layer
torqueLayer = new torque.GMapsTorqueLayer(_.extend({
2013-09-30 19:31:21 +08:00
user : 'viz2',
table : 'ow',
column : 'date',
2013-09-28 00:55:57 +08:00
countby : 'count(cartodb_id)',
resolution: 1,
2013-09-30 19:31:21 +08:00
is_time: true,
2013-09-28 00:55:57 +08:00
steps: 800,
blendmode : 'lighter',
2013-09-30 19:31:21 +08:00
animationDuration: 30,
2013-09-28 00:55:57 +08:00
map: map
}, options));
2012-10-01 07:33:17 +08:00
2013-09-28 00:55:57 +08:00
var DEFAULT_CARTOCSS = [
'#layer {',
" marker-width: 3; ",
' marker-fill: #FEE391; ',
' [value > 2] { marker-fill: #FEC44F; }',
' [value > 3] { marker-fill: #FE9929; }',
' [value > 4] { marker-fill: #EC7014; }',
' [value > 5] { marker-fill: #CC4C02; }',
' [value > 6] { marker-fill: #993404; }',
' [value > 7] { marker-fill: #662506; }',
' [frame-offset = 1] { marker-width: 8;marker-fill-opacity: 0.05;}',
' [frame-offset = 2] { marker-width: 20;marker-fill-opacity: 0.02;}',
//' [frame-offset = 1] { marker-width: 25;marker-fill-opacity: 0.01;}',
'}'
].join('\n');
2012-09-27 07:20:08 +08:00
2013-09-28 00:55:57 +08:00
torqueLayer.setMap(map);
torqueLayer.setCartoCSS(DEFAULT_CARTOCSS);
2012-05-17 07:33:56 +08:00
2013-09-28 00:55:57 +08:00
init_slider(torqueLayer);
init_ui(map, torqueLayer);
2013-09-30 19:31:21 +08:00
torqueLayer.on('change:bounds', function(changes) {
var bounds = changes.bounds;
var b = new google.maps.LatLngBounds(
new google.maps.LatLng(
bounds[0][0],
bounds[0][1]
),
new google.maps.LatLng(
bounds[1][0],
bounds[1][1]
)
)
map.fitBounds(b);
});
2013-09-28 00:55:57 +08:00
torqueLayer.play();
2012-10-01 07:33:17 +08:00
}
2013-09-28 00:55:57 +08:00
function init_ui(map, torqueLayer) {
var TorqueOptions = _.clone(torqueLayer.options);
dat.GUI.DEFAULT_WIDTH = 300;
if (ui) {
ui.destroy();
ui = null;
}
ui = new dat.GUI();
ui.add(TorqueOptions, 'user')
ui.add(TorqueOptions, 'table')
ui.add(TorqueOptions, 'column')
2013-09-30 19:31:21 +08:00
ui.add(TorqueOptions, 'is_time')
2013-09-28 00:55:57 +08:00
ui.add(TorqueOptions, 'resolution', [1, 2, 4, 8, 16, 32])
ui.add(TorqueOptions, 'steps', 10, 1024).listen()
ui.add(TorqueOptions, 'animationDuration', 5, 120);
//ui.add(TorqueOptions, 'blendmode', blend_modes);
ui.add({
update: function() {
if (torqueLayer) {
torqueLayer.setMap(null);
torqueLayer.off('change:time');
2013-09-30 19:31:21 +08:00
torqueLayer.off('change:bounds');
2013-09-28 00:55:57 +08:00
torqueLayer = null;
}
init_torque(map, TorqueOptions);
}
}, 'update');
}
/**
* inits slider and a small play/pause button
*/
function init_slider(torqueLayer) {
var torqueTime = $('#torque-time');
$("#torque-slider").slider({
min: 0,
max: torqueLayer.options.steps,
value: 0,
step: 1,
slide: function(event, ui){
var step = ui.value;
torqueLayer.setStep(step);
}
});
// each time time changes, move the slider
torqueLayer.on('change:time', function(changes) {
$("#torque-slider" ).slider({ value: changes.step });
var month_year = changes.time.toString().substr(4).split(' ');
torqueTime.text(month_year[0] + " - " + month_year[2]);
2012-10-01 07:41:39 +08:00
});
2013-09-28 00:55:57 +08:00
// play-pause toggle
$("#torque-pause").click(function(){
torqueLayer.toggle();
$(this).toggleClass('playing');
});
};
2012-10-01 07:41:39 +08:00
2013-09-28 00:55:57 +08:00
function initialize() {
2012-10-01 07:41:39 +08:00
2013-09-28 00:55:57 +08:00
// initialise the google map
var map = new google.maps.Map(document.getElementById('map_canvas'), {
center: new google.maps.LatLng(37.82070064677705, -122.42739200592041),
zoom: 13,
mapTypeId: google.maps.MapTypeId.SATELLITE,
mapTypeControl: false,
2013-09-30 19:31:21 +08:00
minZoom: 2
2013-09-28 00:55:57 +08:00
});
2012-10-01 07:41:39 +08:00
2013-09-28 00:55:57 +08:00
// dark map style
var gmaps_style = [{ stylers:[ { invert_lightness: true }, { weight:1 }, { saturation:-100 }, { lightness:-40 } ]
}, {
elementType:"labels",
stylers:[ { visibility:"simplified" } ]
2012-10-01 07:33:17 +08:00
}
2013-09-28 00:55:57 +08:00
];
map.setMapTypeId(google.maps.MapTypeId.ROADMAP);
map.setOptions({ styles: gmaps_style });
2012-10-01 07:41:39 +08:00
2013-09-28 00:55:57 +08:00
init_torque(map);
2012-10-01 07:41:39 +08:00
2012-10-01 07:33:17 +08:00
}
2013-09-28 00:55:57 +08:00
window.onload = initialize;
2012-05-17 07:33:56 +08:00
</script>
2013-09-28 00:55:57 +08:00
</body>
</html>