Ok, the CSV file is on my web server. I was able to get this code snippet from a friend. -
$.ajax("http://my.domain.com/mycsvfile.csv", {
success: function(data) {
var jsonobject = csvjson.csv2json(data);
// Now use jsonobject to do some charting...
},
error: function() {
// Show some error message, couldn't get the CSV file
}
});
My question here, is (assuming i put this inside the map widjet), on the first line, that is the direct link to my csv file, right? Basically i am trying to simply reference the CSV file, that way it is the ONLY entity I have to update. Please help, I appreciate it.