On Oct 12, 4:58 pm, Steven Grant <[email protected]> wrote: > OK, here's my issue. Onhttp://duncanstreetbaptistchurch.co.uk/the > map in the footer shows brilliantly. Works as expected. However > onhttp://duncanstreetbaptistchurch.co.uk/index.php/find_us/which has a > directions widget, the widget works but the footer doesn't.
You're loading the maps API twice, once in the conventional way and once with the AJAX loader. Once will do. There are two maps, with the same javascript object 'map'; this seems unwise and may cause conflicts later. You might want to review what setUIToDefault() does and if yo need/ want to put other controls on the larger map - map.addControl(new GLargeMapControl()); map.addControl(new GScaleControl()); map.addControl(new GOverviewMapControl()); map.addControl(new GMapTypeControl()); map.setUIToDefault(); I don't know whose directions gadget you are using, but I suspect it makes a third map which is mostly hidden (and may clash with either of yours) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
