On Jun 3, 1:31 pm, fenacol <[email protected]> wrote: > > 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"
plaats is a Javascript variable in the client browser. Just because your php script also calls the value passed to it "plaats" doesn't make it the same thing. I'm sure you can work out whether your Javascript variable needs to be global (if only by trying it and seeing what happens). > Second problem is, there out to be about 220 markers via camping.php . > It works onhttp://www.zeelandwijzer.nl/camping.html. > Are there known issues between Clusterer2.js and extInfoWindow? > Because i only see 1 marker, andhttp://zeelandwijzer.nl/ajaxtest.html > is a copy of > http://www.zeelandwijzer.nl/camping.htmlwith the only diference > being extinfowindow.js. These two lines (68-69): var marker = createMarker(point, Naam, Adres, Postcode, Plaats, Telefoon, Webpagina); clusterer.AddMarker(marker, Naam); are an issue. Firefox runs the createMarker function which immediately follows them -- do you have another one somewhere? Every function needs to have a unique name. The function it runs doesn't return anything, so "marker" in line 69 is null. That causes the clusterer to crash. 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 -~----------~----~----~----~------~----~------~--~---
