Windshaft-cartodb/lib/cartodb/backends/layer-stats/torque-layer-stats.js
2017-05-17 20:16:43 +02:00

17 lines
344 B
JavaScript

function TorqueLayerStats() {
this._types = {
torque: true
};
}
TorqueLayerStats.prototype.is = function (type) {
return this._types[type] ? this._types[type] : false;
};
TorqueLayerStats.prototype.getStats =
function (layer, dbConnection, callback) {
return callback(null, {});
};
module.exports = TorqueLayerStats;