Please help resolve this issue.
the clear marker is working in FF & IE but not chrome?
function addMarker(lati, longi, id, name) {
$('#dispatcher').gmap3(
{ action: 'addMarker',
lat: lati,
lng: longi,
tag: name,
options: {
icon: new google.maps.MarkerImage('img/pin.png')
}
}
);
}
function clearMarker(name) {
$('#dispatcher').gmap3({
action: 'clear',
tag: name
});
}
Thanks
Cleared the cache in chrome – fixed.. sorry