My fusion table map contains about 5000 markers. I want to generate lists of selected markers. The simplest way to do this would seem te be to click on the relevant markers, and then write the IDs of these markers to a logfile. I think I should be able to use a variation on this blob/upload technique, but I can't see exactly how.
Asked
Active
Viewed 46 times
1 Answers
0
Upon further consideration, I decided that the simplest answer is to accumulate the IDs in an empty DIV:
google.maps.event.addListener(layer, 'click', function(e) {
newValue=document.getElementById('album').innerHTML + ':' + e.row['Bestand'].value;
document.getElementById('album').innerHTML=newValue;
});
This is just what I needed (called for help too soon?).

Peter Beresford
- 63
- 1
- 8