fixed renderer

This commit is contained in:
javi 2015-12-03 12:40:07 +01:00
parent 75bdbbfb80
commit 2bc79e183f

View File

@ -186,7 +186,7 @@ var Filters = require('./torque_filters');
//
// renders all the layers (and frames for each layer) from cartocss
//
renderTile: function(tile, key, renderFlags, callback) {
renderTile: function(tile, key, callback) {
if (this._iconsToLoad > 0) {
this.on('allIconsLoaded', function() {
this.renderTile.apply(this, [tile, key, callback]);
@ -267,7 +267,7 @@ var Filters = require('./torque_filters');
key = tile.maxDate;
}
var tileMax = this.options.resolution * (this.TILE_SIZE/this.options.resolution - 1)
var activePixels = tile.x.length;
var activePixels = tile.timeCount[key];
var anchor = this.options.resolution/2;
if (activePixels) {
var pixelIndex = tile.timeIndex[key];