From 4c0d85ee671af2c071816dd9de229d3427e7100f Mon Sep 17 00:00:00 2001 From: Peter Robins Date: Tue, 27 Mar 2012 11:09:29 +0100 Subject: [PATCH] Fusiontables example correction --- examples/fusiontables.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fusiontables.js b/examples/fusiontables.js index 0c9ed71764..aec2d86612 100644 --- a/examples/fusiontables.js +++ b/examples/fusiontables.js @@ -17,7 +17,7 @@ var map = new OpenLayers.Map({ row = json.table.rows[i]; feature = new OpenLayers.Feature.Vector(); atts = {}; - for (var j = 1; j < row.length; j++) { + for (var j = 0; j < row.length; j++) { // 'location's are json objects, other types are strings if (typeof row[j] === "object") { feature.geometry = this.parseGeometry(row[j]);