I've built this android app to collect longitude,latitude, and phone signals for my class project. My objective is to port this info to a simple heatmap webpage. My question is what's the best way to update my heatmap data variable in this example:
https://google-developers.appspot.com/maps/documentation/javascript/examples/layer-heatmap
This variable in particular:
var taxiData = [
new google.maps.LatLng(37.782551, -122.445368),
new google.maps.LatLng(37.782745, -122.444586), ...
];
I'm open to all suggestions, I'm pretty much a novice with web development.