Hi I had a page on a client's web site correctly displaying two separate maps:
http://www.lloydscaravans.co.uk/finding-us-static-caravans-snowdonia-north-wales-coast/ In the last week the first map has ceased to display, the page itself however has not been changed at all. Have tried searching this group but can't find any clues. Code looks like: //<![CDATA[ function load() { if (GBrowserIsCompatible()) { var map1 = new GMap2(document.getElementById("map1")); map1.setCenter(new GLatLng(53.294041,-3.583657), 13);map1.addControl(new GMapTypeControl());map1.addControl(new GSmallMapControl());var point1=new GLatLng(53.294041,-3.583657);var infoTabs1=[new GInfoWindowTab("Address","Lloyds Caravan Sales<br/ >Pensarn<br/>Abergele<br/>Conwy<br/>LL22 7SF"),new GInfoWindowTab("Telephone","Telephone: 01745 832050<br/>Facsimile: 01745 832012<br/>")];var marker1=new GMarker(point1);GEvent.addListener(marker1,"click",function() {marker1.openInfoWindowTabsHtml(infoTabs1);});map1.addOverlay(marker1);marker1.openInfoWindowTabsHtml(infoTabs1); var map2 = new GMap2(document.getElementById("map2")); map2.setCenter(new GLatLng(53.350833,-3.319545), 13);map2.addControl(new GMapTypeControl());map2.addControl(new GSmallMapControl());var point2=new GLatLng(53.350833,-3.319545);var infoTabs2=[new GInfoWindowTab("Address","Lloyds Caravan Sales<br/>Main Coast Road<br/>Talacre<br/>Flintshire<br/>CH8 9JZ"),new GInfoWindowTab("Telephone","Telephone: 01745 560224<br/>Facsimile: 01745 560391<br/>")];var marker2=new GMarker(point2);GEvent.addListener(marker2,"click",function() {marker2.openInfoWindowTabsHtml(infoTabs2);});map2.addOverlay(marker2);marker2.openInfoWindowTabsHtml(infoTabs2);}}//]]> And the maps are displayed with: <div id="map1" class="clsMap"></div> <div id="map2" class="clsMap"></div> Thanks, Simon --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
