torque/doc/torque_api.md
Carlos Matallín 31920d0d73 split files
2015-12-14 20:16:52 +01:00

6.7 KiB

Torque API Methods

Torque API methods can be applied when creating a visualization using the CartoDB.js API methods.

L.TorqueLayer(options)

One of two core classes for the Torque library - it is used to create an animated torque layer with custom settings.

Arguments

Provider options
Name Description
provider A string object, where is the data coming from. Default value is sql_api
options
|_ sql_api
|_ url_template
|_ windshaft

{% comment %}writer note_csobier: for consistency, describe options above and add ### Returns section.{% endcomment %}

Example

// initialize a torque layer that uses the CartoDB account details and SQL API to pull in data
var torqueLayer = new L.TorqueLayer({
  user: 'viz2',
  table: 'ow',
  cartocss: CARTOCSS
});
CartoDB Data Options (SQL API Provider)
Name Description
user_name A string object, your CartoDB account name. Default value is null
table_name A string object, the CartoDB table name where data is found (also known as a dataset.) Default value is null
query A string object, the SQL query to be performed to fetch the data. Default value is null.

You must use this param or table, but not at the same time
cartocss A string object, the CartoCSS style for the map. Default value is null
loop A boolean object that defines the animation loop. Default value is true. If false, the animation is paused when it reaches the last frame

Tip: For a Torque category layer that is created dynamically with cartodb.createLayer, the SQL query must explicitly include how to build the torque_category column. You must include both the sql and table_name parameters. See this createLayer with torque category layer example.

{% comment %}writer note_csobier: for consistency, add ### Returns section and ### Example. Note that the following table show some returns that do not make much sense to me, I did not edit the tables below, except to remove blank options columns.{% endcomment %}

Time Methods

Method Options Returns Description
setStep(step) time numeric this the value must be between 0 and the total number of steps in the animation
play() this starts the animation
stop() this stops the animation and set time to step 0
pause() this stops the animation but keep the current time (play enables the animation again)
toggle() this toggles (pause/play) the animation
getStep() current animation step (integer) gets the current animation step. A step is considered an animation frame
getTime() current animation time (Date) gets the real animation time
isRunning() true/false describes whether the Torque layer is playing or is stopped

Note: Torque.js interprets the beginning and ending date/time from your "Time Column" as one block, then divides that up into Steps, depending on the number you set. It does not necessarily draw one frame for each row.

Layer Control Methods

Method Options Returns Description
hide() none this hides the Torque layer
show() none this shows the Torque layer

Style Methods

Method Options Returns Description
setCartoCSS(cartocss) cartocss string this style the map rendering using client-side cartocss (not available with named maps)

The full CartoCSS spec is not supported by Torque but instead only a limited subset with some additions related to torque rendering. To see the full list of supported parameters, read the Torque CartoCSS documentation. value and zoom variables can be used. value is the value of aggregation (see countby constructor option). zoom is the current zoom being rendered.

TorqueLayer currently expects marker styling.

Example

This CartoCSS example should be string encoded in Javascript.

#layer {
  marker-fill: #662506;
  marker-width: 20;
  [value > 1] { 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: 20; marker-fill-opacity: 0.05;}' // renders the previous frame
  [frame-offset = 2] {  marker-fill: red; marker-width: 30; marker-fill-opacity: 0.02;}' // renders two frames ago from the current being rendered
}

Data Methods

Method Options Returns Description
setSQL(sql statement) SQL string this Change the SQL on the data table (not available with named maps)
error(callback) callback function with a list of errors as argument this specifies a callback function to run if there are query errors

Example

SQL Example to limit the data used in the Torque map.

torqueLayer.setSQL("SELECT * FROM table LIMIT 100");

Events

Note: You can only run events after the required libraries are loaded. Otherwise, the interaction methods will not work.

Events in Torque follow the format:

torqueLayer.on('event-type', function([callback_obj]) {
  // do something
});
Events Callback Object Description
change:steps current step When a map changes steps, this event is triggered
change:time current time, step number When a map changes time, this event is triggered
play none Triggered when the Torque layer is played
pause none Triggered when the Torque layer is paused
stop none Triggered when the Torque layer is stopped
load none Triggered when the Torque layer is loaded

Example

An event example to print the current step to the console log.

torqueLayer.on('change:steps', function(step) {
  // do something with step
  console.log('Current step is ' + step);
});

Google Maps Layers

GMapsTorqueLayer(options)

This class does exactly the same as L.TorqueLayer but using Google Maps instead. The main difference is that this class is not a layer but is an overlay, so in order to add it to the a map use, layer.setMap instead of overlayMapTypes. See the Overlay View reference in Google Maps API doc.

Options

Name Description
map A google.maps.Map instance