Hi guys,
I've got a mapView which I'm throwing multiple annotations at, which works great.
I'm trying to get the map to show the info bubbles for each marker, I can only seem to display 1, which is the last 1 from my database query.
Is it possible to show all of the bubbles at once?
Here is my event listener:
// on load we need to display the right annotation thisWindow.addEventListener('open', function(e) { // show the right one mapview.selectAnnotation(positionID + '. ' + speciesName, true); });Any ideas?
Simon