From 73ed8bdfd7a05829086fa668bf6a7e55674b4020 Mon Sep 17 00:00:00 2001 From: Stuart Lynn Date: Wed, 9 Sep 2015 11:06:26 -0400 Subject: [PATCH] mutli variable scaling function example --- examples/leaflet_with_scaling_functions.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/leaflet_with_scaling_functions.html b/examples/leaflet_with_scaling_functions.html index d98969e..778e7a6 100644 --- a/examples/leaflet_with_scaling_functions.html +++ b/examples/leaflet_with_scaling_functions.html @@ -16,7 +16,6 @@
-
Average temperature collected by Britain's Royal Navy (1913-1925)
@@ -32,16 +31,16 @@ var CARTOCSS = [ 'Map {', '-torque-time-attribute: "time";', - '-torque-aggregation-function: "avg(abs(depth))";', + '-torque-aggregation-function: "avg(abs(depth));avg(mag)";', '-torque-frame-count: 200;', '-torque-animation-duration: 20;', '-torque-resolution: 1', '}', '#all_month_3 {', - ' marker-width: "scale_sqrt(value,0,5,0,10)";', + ' marker-width: "scale_lin(value0,0.0,10,0,5)";', ' marker-fill-opacity: "scale_sqrt(frame-offset,0,9,1,0)";', ' marker-type: ellipse;', - ' marker-fill: "scale_log(value,0.1,255,red,blue,green)";', + ' marker-fill: "scale_lin(value1,0.1,5,blue,red)";', '}', '#all_month_3[frame-offset=1]{}', '#all_month_3[frame-offset=2]{}', @@ -68,6 +67,7 @@ var torqueLayer = new L.TorqueLayer({ user : 'eschbacher', table : 'all_month_3', + provider : 'sql_api', cartocss: CARTOCSS }); torqueLayer.addTo(map);