Contact Us
"); $(document).ready(function() { makeMap(); }); var map; function makeMap() { if (GBrowserIsCompatible()) { var m = document.getElementById("gmap"); m.style.height = "450px"; m.style.width = "450px"; map = new GMap(document.getElementById("gmap")); map.addControl(new GLargeMapControl()); map.centerAndZoom(new GLatLng(53.261012341972275, -1.3495910167694092), 4); var point = new GLatLng(53.261012341972275, -1.3495910167694092); var mhtml = '
THE SPIDERLIFT COMPANY
Adelphi Way
Staveley
Chesterfield
Derbyshire
S43 3LS
Tel: (+44) 0870 225 5554
Fax: (+44) 0207 900 2229
' + mhtml + '
';
var marker = createMarker(point,mhtml);
map.addOverlay(marker);
marker.openInfoWindowHtml(mhtml);
}
}
function createMarker(point,html)
{
var marker = new GMarker(point);
GEvent.addListener(marker, "click", function()
{
marker.openInfoWindowHtml(html);
});
return marker;
}