if (GBrowserIsCompatible()) { var baseIcon = new GIcon(); baseIcon.iconSize = new GSize(28,28); baseIcon.shadowSize = new GSize(40,28); baseIcon.iconAnchor = new GPoint(16,32); baseIcon.infoWindowAnchor = new GPoint(16,0); var attraction = new GIcon(baseIcon, "http://www.manchester.gov.uk/site/images/info.png", null, "http://www.manchester.gov.uk/site/images/sign_shadow.png"); var station = new GIcon(baseIcon, "http://www.manchester.gov.uk/site/images/railway.png", null, "http://www.manchester.gov.uk/site/images/sign_shadow.png"); var tram = new GIcon(baseIcon, "http://www.manchester.gov.uk/site/images/metro.png", null, "http://www.manchester.gov.uk/site/images/sign_shadow.png"); var council = new GIcon(baseIcon, "http://www.manchester.gov.uk/site/images/manchester.png", null, "http://www.manchester.gov.uk/site/images/sign_shadow.png"); var service = new GIcon(baseIcon, "http://www.manchester.gov.uk/site/images/manchester.png", null, "http://www.manchester.gov.uk/site/images/sign_shadow.png"); function createMarker(point,html,icon) { var marker = new GMarker(point,icon); GEvent.addListener(marker, "click", function() { marker.openInfoWindowHtml(html); }); return marker; } // ------- var map = new GMap2(document.getElementById("map")); map.addControl(new GLargeMapControl()); map.setCenter(new GLatLng(53.477952,-2.240653), 15, G_NORMAL_MAP); // town hall with location.php details var point = new GLatLng(53.479159,-2.244172); var marker = createMarker(point,'
Manchester Town Hall

Manchester City Council

Town Hall Albert Square MANCHESTER M60 2LA (for satellite navigation systems use M2 5DB)

Telephone: 0161 234 5000

', council); map.addOverlay(marker); // Customer Service Centre with location.php details var point = new GLatLng(53.472671,-2.246575); var marker = createMarker(point,'

Number One First Street

Customer Service Centre
Monday to Friday between 8am-5pm

For satellite navigation systems, please use M1 5DE

Getting to Number One First Street

', service); map.addOverlay(marker); // manchester library var point = new GLatLng(53.477944,-2.244590); var marker = createMarker(point,'
library

Manchester Central Library

Telephone: 0161 234 1900

', attraction); map.addOverlay(marker); // bridgewater hall var point = new GLatLng(53.4758,-2.246822); var marker = createMarker(point,'
bridgewater

Bridgewater Hall

Telephone: 0161 950 0000

More information

', attraction); map.addOverlay(marker); // midland hotel var point = new GLatLng(53.477179,-2.245052); var marker = createMarker(point,'
midland

Midland Hotel

Telephone: 0161 236 3333

More information

', attraction); map.addOverlay(marker); // GMEX - manchester central var point = new GLatLng(53.476439,-2.245889); var marker = createMarker(point,'
gmex

Manchester Central

Telephone: 0161 834 2700

More information

', attraction); map.addOverlay(marker); // Manchester Art Gallery var point = new GLatLng(53.47884,-2.24146); var marker = createMarker(point,'
art gallery

Manchester Art Gallery

Telephone: 0161 235 8888

More information

', attraction); map.addOverlay(marker); // manchester victoria station var point = new GLatLng(53.487675,-2.243164); var marker = createMarker(point,'
victoria station

Manchester Victoria

Telephone: 0845 0000 125

More information

', station); map.addOverlay(marker); // manchester piccadilly station var point = new GLatLng(53.476426,-2.22868); var marker = createMarker(point,'
picadilly station

Manchester Piccadilly

Telephone: 08450 0000 33

More information

', station); map.addOverlay(marker); // st peters tram stop var point = new GLatLng(53.477888,-2.243603); var marker = createMarker(point,'

St Peters Square Tram Stop

Frequency: Monday - Friday, every 6 minutes between 0715 and 1830.

Station Information

Tram Departure and Arrival Times

', tram); map.addOverlay(marker); // manchester registry office var point = new GLatLng(53.479376,-2.246404); var marker = createMarker(point,'

Manchester Register Office

Telephone: 0161 234 5555

All Contact Information

', attraction); map.addOverlay(marker); // manchester childrens services var point = new GLatLng(53.478099,-2.249987); var marker = createMarker(point,'

Manchester Children's Services

Overseas House, Quay St, M3 3BB

Getting to Overseas House

', attraction); map.addOverlay(marker); } else { alert("Sorry, the Google Maps API is not compatible with this browser"); }