Thank you, it worked. But it has brought 2 new problems :-)
Error console says "plaats" is not defined. Is this the same issue as with the "map" (local instead of global). I allready have a php script"evenementen2.php" that wil process "plaats" Second problem is, there out to be about 220 markers via camping.php . It works on http://www.zeelandwijzer.nl/camping.html. Are there known issues between Clusterer2.js and extInfoWindow? Because i only see 1 marker, and http://zeelandwijzer.nl/ajaxtest.html is a copy of http://www.zeelandwijzer.nl/camping.html with the only diference being extinfowindow.js. Starting to feel guilty for asking somany followup questions, but if i get this to work, i am going to be seriesly drunk :-) Looking forward in cracking this thing :-) Erwin On 3 jun, 13:14, Andrew Leach <[email protected]> wrote: > On Jun 3, 12:05 pm, fenacol <[email protected]> wrote: > > > > > Toucht that de "map" was defined at line 31 > > It is, but it is defined as local to your "load" function. That means > that it can't be referenced outside that function. Once the "load" > function has run to completion, the variable no longer exists. (It > doesn't destroy your map as well, it just means you can't interact > with it) > > Put > var map; > in global scope, outside any function, and change line 31 to read > map = new GMap2(...); > so that it uses the global variable instead of creating a local > variable. > > Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps 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-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
