I'm working on an application that needs to display a lot of markers. I'm talking about numbers with 5 or 6 digits. The application is a webinterface for a software that manages traffic counts. Currently i'm trying to display about 11000 detectors that count the cars on the streets of Oregon. Each detector is represented by one marker.
I'm clustering the markers, but at certain zoom-levels i want to show all markers. That means, that i have to use some kind of MarkerManager like the one that has been purged from gwt-google-apis: http://code.google.com/p/gwt-google-apis/issues/detail?id=117&can=1&q=markermanager Is someone working on this? Someone implemented it in Java and it works, but why reimplementing it when the functionality is there? It's a 1:1 copy of the JS-Code. AFAIK the Java code will end up as JavaScript anyways, right? http://www.ebessette.com/d/software/GWTMarkerManager My Workaround for now: I used the code from the old MarkerManager (gwt-google-apis, svn r302) to wrap the new MarkerManager (gmaps-utity-library) by changing the constructor in MarkerManagerImpl.java from $wnd.GMarkerManager to $wnd.MarkerManager. Don't forget to add a script tag referencing the markermanager.js from gmaps-utility-library to your *.gwt.xml file! It works just fine in web mode when using the basic functions, but i have problems starting my application in hosted mode. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" 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-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
