If you've got 1000s of markers, its (probably) not going to work. But if you've got 1000s of markers, you're going to need some kind of marker manager (a map with 1000+ markers all concurrently visible isnt going to be usable).
So presumably you have some idea of which ones are "active" (ie that the user could actually click on). In that case, you could just try to keep the most likely candidates preloaded. Most of the time you're fine. Sometimes theres a delay. Alternatively, just keep a single div with the visualization set up in it, and change the data on demand. Now its just the data load time you've got to worry about. Mark On Feb 27, 11:39 am, p00kie <[email protected]> wrote: > Have you had the chance to try that Mark? > > Imagine 1000 markers on a map with hidden tables. :) > > On Feb 24, 2:07 pm, Markw65 <[email protected]> wrote: > > > Couldnt you just keep the charts in hidden divs, and then use > > marker.openInfoWindow(hiddenDiv) to show the info window, and trap the > > infowindowonbeforeclose event to "rescue" the div before it gets > > destroyed? > > > Mark > > > On Feb 24, 9:52 am, p00kie <[email protected]> wrote: > > > > Lucy, > > > > Thanks for the info. > > > > I think that's what I figured might happen. That's unfortunate :( > > > > On Feb 24, 8:20 am, "LH." <[email protected]> wrote: > > > > > I've done something like this (line charts in each marker's info > > > > window), but ended up needing to use the ImageLineChart, because of > > > > load time/draw time/etc issues. I hope this helps. > > > > > Best, > > > > Lucy > > > > > On Feb 23, 3:13 pm, p00kie <[email protected]> wrote: > > > > > > Hi! > > > > > > I have been working with viz and map apis for a bit now and was > > > > > wondering if something like this was possible: > > > > > > 1. One large map with multiple markers > > > > > 2. Each marker would have it's own scatterplot and/or table showing in > > > > > the info window. > > > > > > I would like to use this to display multiple pieces of information per > > > > > point. > > > > > > Best, > > > > > > Dan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en -~----------~----~----~----~------~----~------~--~---
