Google MAP APi issues..

Associate
Joined
18 May 2006
Posts
785
Problem with the markers solved - thanks for the offer Dave :)
It was due to a blank line in the xml file of all things!

all fixed now thanks
 
Last edited:
Checking the console indicates you are adding the maps api multiple times which can cause an issue.

This is probably what is happening as when I step through the relocator function if doesn't attempt to run the inner function of

if (status == google.maps.GeocoderStatus.OK) {
var location = results[0].geometry.location;
clearControlsOnMap(markers);
clearControlsOnMap(windows);
if(markerCluster != null ) {
markerCluster.clearMarkers();
}
map.setCenter(location);
map.setZoom(12);
getData(feedUrl);
}

i've done a fair amount of work with the maps api for my websites so would be glad to help as much as i can.
 
Back
Top Bottom