tags:

views:

17

answers:

1

Hi,

How can I add a marker to the Google Map instance created via the Unirgy Store Locator in Magento.

Thanks

A: 

added this within the load:function

var point = new GLatLng(xx,yy);
map.setCenter(point, 14); //set centre and zoom
var marker = new GMarker(point);
map.addOverlay(marker); //add marker

and it seems to have fixed the missing marker.

pixeltocode