//F.L.I. Environmental,
Six Cross Roads Business Park,
Carriganard, Waterford, Ireland
Tel: +353 (0) 51 353190,
'+
'Fax: +353 (0) 51 353177,
'+
'Email: info@fli.ie
'; if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); this._map=map; var directionsPanel = document.getElementById("route"); var directions = new GDirections(map, directionsPanel); this._directions=directions; _geocoder = new GClientGeocoder(); map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl()); map.setCenter(new GLatLng(lat,lng ), 13); addPoint(map); } function addPoint(map) { var point = new GLatLng(lat, lng); var street=new GMarker(point); map.addOverlay(street); GEvent.addListener(street, "click", function() { map.openInfoWindow(point, description); }); map.openInfoWindow(point, description); } } function showDirections(from, to) { if (!to) { _geocoder.getLocations(new GLatLng(lat, lng), function(response) { if (response.Status.code == 200) { place = response.Placemark[0]; address = place.address; _directions.load(from + " to " + address); } else { } }); } else { _directions.load(from + " to " + to); } } function goBack() { _directions.clear(); load(); } //]]>