Skip to content

Commit

Permalink
Fusiontables example correction
Browse files Browse the repository at this point in the history
  • Loading branch information
probins authored and tschaub committed Mar 29, 2012
1 parent bb09ff3 commit 4c0d85e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/fusiontables.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit 4c0d85e

Please sign in to comment.