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">
|
2013-09-30 21:18:13 +08:00
|
|
|
<link rel="stylesheet" href="examples/vendor/codemirror.css">
|
2013-09-28 00:55:57 +08:00
|
|
|
<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;
|
|
|
|
}
|
2013-09-30 21:18:13 +08:00
|
|
|
|
|
|
|
.CodeMirror {
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
position:absolute;
|
|
|
|
height: auto;
|
|
|
|
width: 380;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
color: rgba(0,0,0,0.9);
|
|
|
|
background-color:rgba(255,255,255,0.92);
|
|
|
|
position: absolute;
|
|
|
|
left: 10px;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
font-family: monospace;
|
|
|
|
font-size: 14px;
|
|
|
|
width: 350px;
|
|
|
|
border: 0;
|
|
|
|
outline: none;
|
|
|
|
padding: 40px;
|
|
|
|
}
|
2013-09-28 00:55:57 +08:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="map_canvas"></div>
|
2013-09-30 21:18:13 +08:00
|
|
|
<textarea id="code"></textarea>
|
2013-09-28 00:55:57 +08:00
|
|
|
<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>
|
|
|
|
|
2013-09-30 21:18:13 +08:00
|
|
|
<script id="default-style" type="text/torque-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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
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>
|
2013-09-30 21:18:13 +08:00
|
|
|
<script src="examples/vendor/codemirror.js"></script>
|
|
|
|
<script src="examples/vendor/css.js"></script>
|
|
|
|
|
2013-09-28 00:55:57 +08:00
|
|
|
<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;
|
2013-09-30 21:18:13 +08:00
|
|
|
var editor;
|
2013-09-30 22:55:31 +08:00
|
|
|
var state = location.hash ? JSON.parse(atob(location.hash.substring(1))): {};
|
|
|
|
var DEFAULT_CARTOCSS = state.cartocss || $('#default-style').html();
|
|
|
|
|
|
|
|
function saveState() {
|
|
|
|
location.hash = btoa(JSON.stringify({
|
|
|
|
cartocss: editor.getValue(),
|
|
|
|
options: _.pick(torqueLayer.options,
|
|
|
|
'user',
|
|
|
|
'table',
|
|
|
|
'column',
|
|
|
|
'is_time',
|
|
|
|
'countby',
|
|
|
|
'resolution',
|
|
|
|
'steps',
|
|
|
|
'animationDuration'
|
|
|
|
)
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2013-09-28 00:55:57 +08:00
|
|
|
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
|
|
|
|
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-30 21:18:13 +08:00
|
|
|
function toggle_editor() {
|
|
|
|
$(editor.getWrapperElement()).toggle()
|
|
|
|
}
|
|
|
|
|
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();
|
2013-09-30 22:39:44 +08:00
|
|
|
ui.remember(TorqueOptions);
|
2013-09-28 00:55:57 +08:00
|
|
|
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-30 22:39:44 +08:00
|
|
|
ui.add(TorqueOptions, 'countby')
|
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);
|
2013-09-30 21:18:13 +08:00
|
|
|
ui.add({ cartocss_editor: toggle_editor }, 'cartocss_editor');
|
2013-09-30 22:39:44 +08:00
|
|
|
//ui.remember(TorqueOptions);
|
2013-09-28 00:55:57 +08:00
|
|
|
//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);
|
2013-09-30 22:55:31 +08:00
|
|
|
saveState();
|
2013-09-28 00:55:57 +08:00
|
|
|
}
|
|
|
|
}, 'update');
|
2013-09-30 21:18:13 +08:00
|
|
|
|
|
|
|
if (!editor) {
|
|
|
|
var textarea = document.getElementById('code')
|
|
|
|
textarea.value = DEFAULT_CARTOCSS;
|
|
|
|
editor = CodeMirror.fromTextArea(textarea, { mode: "text/css" });
|
|
|
|
editor.on('change', _.debounce(function() {
|
2013-09-30 22:39:44 +08:00
|
|
|
window.torqueLayer.setCartoCSS(editor.getValue());
|
2013-09-30 22:55:31 +08:00
|
|
|
saveState();
|
|
|
|
}, 500))
|
2013-09-30 21:18:13 +08:00
|
|
|
}
|
|
|
|
editor
|
|
|
|
|
2013-09-28 00:55:57 +08:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 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-30 22:55:31 +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-30 22:55:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
init_torque(map, state.options);
|
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>
|
2013-05-15 00:13:24 +08:00
|
|
|
</html>
|