adds isolines css to examples

This commit is contained in:
Francisco Dans 2015-08-19 20:34:22 +02:00
parent 3bde296476
commit c1aeee38d6

View File

@ -16,42 +16,33 @@
// define the torque layer style using cartocss // define the torque layer style using cartocss
var CARTOCSS = [ var CARTOCSS = [
'Map {', 'Map {',
'-torque-time-attribute: "date";', '-torque-time-attribute: "cartodb_id";',
'-torque-aggregation-function: "count(cartodb_id)";', '-torque-aggregation-function: "count(cartodb_id)";',
'-torque-frame-count: 760;', '-torque-frame-count: 1;',
'-torque-animation-duration: 15;', '-torque-animation-duration: 1;',
'-torque-resolution: 2', '-torque-resolution: 16',
'}', '}',
'#layer {', '#layer {',
' marker-width: 3;', '-isoline-line-ramp: colorize-alpha(blue, cyan, lightgreen, yellow , orange, red);',
' marker-fill-opacity: 0.8;', '-isoline-line-width: 0.4;',
' marker-fill: #FEE391; ', '-isoline-line-opacity: 0.5',
' comp-op: "lighten";',
' [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: 10; marker-fill-opacity: 0.05;}',
' [frame-offset = 2] { marker-width: 15; marker-fill-opacity: 0.02;}',
'}' '}'
].join('\n'); ].join('\n');
var map = new L.Map('map', { var map = new L.Map('map', {
zoomControl: true, zoomControl: true,
center: [40, 0], center: [41.36031866306708, -73.388671875],
zoom: 3 zoom: 4
}); });
L.tileLayer('http://{s}.api.cartocdn.com/base-dark/{z}/{x}/{y}.png', { L.tileLayer('http://{s}.api.cartocdn.com/base-light/{z}/{x}/{y}.png', {
attribution: 'CartoDB' attribution: 'CartoDB'
}).addTo(map); }).addTo(map);
var torqueLayer = new L.TorqueLayer({ var torqueLayer = new L.TorqueLayer({
user : 'viz2', user : 'fdansv',
table : 'ow', table : 'twitter_roosterteeth_roosterteeth_lege',
cartocss: CARTOCSS cartocss: CARTOCSS
}); });
torqueLayer.error(function(err){ torqueLayer.error(function(err){