Stuart Eve
unread,Sep 6, 2009, 1:37:10 PM9/6/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Timemap.js Development
Hi there
Was just trying this out and I noticed a bug (or maybe its a feature?)
with the google_spreadsheet loader. Using version 1.5 it won't display
date ranges as it only picks up the 'start' column and not the 'end'
column (even if its specified in the TimeMap.loaders.gss.map array).
A quick insert on line 90 of google_spreadsheet.js sorts it out:
var item = {
title: getField("title"),
start: getField("start"),
>>> end: getField("end"),
point: {
lat: getField("lat"),
lon: getField("lon")
},
options: {
description: getField("description")
}
};
Looks absolutely great!
Stu