> The initLightbox() is there to prevent a conflict with <body > onload="initialize();"> as far as I understand. It comes from this FAQ on > the Lightbox2 site:
But that's only relevant if you are using Lightbox2 > Missing infoboxes: redhouseInfobox, thecorporationInfobox, passageInfobox, > prisonInfobox, noparkingInfobox, rubbishMarker When debugging a page of this complexity, you really ought to get yourself some helpful tool like Firebug. I get a javascript error "anchor.getPosition is not a function" in infobox.js, it's been passed something it doesn't like. It's rooted in this code - var five = new InfoBox(pickupInfobox); five.open(theMap, pickupMarker); // this works var six = new InfoBox(passageInfobox); six.open(theMap, passageInfobox); // this breaks See if you can spot the problem. Then look down the code to see which other infoboxes would have been opened afterwards, if your code hadn't broken and stopped at passageInfobox. > Missing markers: noparkingMarker, rubbishMarker Firebug reports these images that you specified are missing from your server http://www.layersoflondon.org/images/project-images/no-parking-thumb.png http://www.layersoflondon.org/images/project-images/rubbish-thumb.png -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
