// raduis of the image for a place, // the image should be square, and radius should be half of the image width // (so for 16x16 image this should be 8) var iRad = 8; // enable new look google.maps.visualRefresh = true; // define map properties var map_prop = { center: new google.maps.LatLng(54.8, -2.6), mapTypeId: google.maps.MapTypeId.ROADMAP, scaleControl: true, zoom: 5 }; // create map var map = new google.maps.Map(document.getElementById('m'), map_prop); //////////////////////////////////////////////////////////////////////////////// // add places //////////////////////////////////////////////////////////////////////////////// // // markers // // place 1: Heathrow Airport, TW6 1EW var a1=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.471500, -0.453164), title: 'Heathrow Airport (TW6 1EW)', zIndex: 1 }); // place 2: Brighton, BN1 2TA var a2=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.823707, -0.143594), title: 'Brighton (BN1 2TA)', zIndex: 1 }); // place 3: Sussex University, BN1 9SA var a3=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.871224, -0.087282), title: 'Sussex University (BN1 9SA)', zIndex: 1 }); // place 4: Victoria Coach Station, SW1W 9TP var a4=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.492493, -0.148241), title: 'Victoria Coach Station (SW1W 9TP)', zIndex: 1 }); // place 5: Oxford, OX1 3LU var a5=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.753762, -1.254148), title: 'Oxford (OX1 3LU)', zIndex: 1 }); // place 6: Cambridge, CB2 1TN var a6=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.204240, 0.114093), title: 'Cambridge (CB2 1TN)', zIndex: 1 }); // place 7: Brighton Pier, BN2 1TW var a7=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.815232, -0.137045), title: 'Brighton Pier (BN2 1TW)', zIndex: 1 }); // place 8: Hove, BN3 2JQ var a8=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.826500, -0.163399), title: 'Hove (BN3 2JQ)', zIndex: 1 }); // place 9: Royal Pavilion, BN1 1EE var a9=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.822449, -0.137977), title: 'Royal Pavilion (BN1 1EE)', zIndex: 1 }); // place 10: Brighton Marina Village, BN2 5WA var a10=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.811377, -0.101442), title: 'Brighton Marina Village (BN2 5WA)', zIndex: 1 }); // place 11: Big Ben - Clock Tower, SW1A 0AA var a11=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.500710, -0.124569), title: 'Big Ben - Clock Tower (SW1A 0AA)', zIndex: 1 }); // place 12: Westminster Bridge, SE1 7GL var a12=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.500954, -0.121770), title: 'Westminster Bridge (SE1 7GL)', zIndex: 1 }); // place 13: Jubilee Gardens, SE1 7PG var a13=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.504427, -0.118868), title: 'Jubilee Gardens (SE1 7PG)', zIndex: 1 }); // place 14: Golden Jubilee Bridge, SE1 8NZ var a14=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.506400, -0.120032), title: 'Golden Jubilee Bridge (SE1 8NZ)', zIndex: 1 }); // place 15: Trafalgar Square, WC2N 5DN var a15=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.507832, -0.128119), title: 'Trafalgar Square (WC2N 5DN)', zIndex: 1 }); // place 16: Whitehall, SW1A 2NP var a16=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.504298, -0.126410), title: 'Whitehall (SW1A 2NP)', zIndex: 1 }); // place 17: Horse Guards Parade, SW1A 2AX var a17=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.504855, -0.126896), title: 'Horse Guards Parade (SW1A 2AX)', zIndex: 1 }); // place 18: View over Downing Street, SW1A 2AL var a18=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.503183, -0.126318), title: 'View over Downing Street (SW1A 2AL)', zIndex: 1 }); // place 19: View over Palace of Westminster, SW1A 0AA var a19=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.498365, -0.125840), title: 'View over Palace of Westminster (SW1A 0AA)', zIndex: 1 }); // place 20: Westminster Abbey, SW1P 3JX var a20=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.499759, -0.127246), title: 'Westminster Abbey (SW1P 3JX)', zIndex: 1 }); // place 21: The National Gallery, WC2N 5DN var a21=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.508972, -0.128447), title: 'The National Gallery (WC2N 5DN)', zIndex: 1 }); // place 22: The Mall, SW1A 2BJ var a22=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.503940, -0.135907), title: 'The Mall (SW1A 2BJ)', zIndex: 1 }); // place 23: St James`s Park, SW1A 2BJ var a23=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.502354, -0.135233), title: 'St James`s Park (SW1A 2BJ)', zIndex: 1 }); // place 24: Buckingham Palace, SW1A 1AA var a24=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.501754, -0.140840), title: 'Buckingham Palace (SW1A 1AA)', zIndex: 1 }); // place 25: Green Park, SW1A 1BW var a25=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.503049, -0.141839), title: 'Green Park (SW1A 1BW)', zIndex: 1 }); // place 26: Horse Guards Square, SW1A 2AX var a26=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.504645, -0.128319), title: 'Horse Guards Square (SW1A 2AX)', zIndex: 1 }); // place 27: Wellington Arch, W1J 7JZ var a27=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.502557, -0.151033), title: 'Wellington Arch (W1J 7JZ)', zIndex: 1 }); // place 28: Marble Arch, W1H 7DX var a28=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.512930, -0.158807), title: 'Marble Arch (W1H 7DX)', zIndex: 1 }); // place 29: Hyde Park, W2 2UH var a29=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.505927, -0.163126), title: 'Hyde Park (W2 2UH)', zIndex: 1 }); // place 30: The Albert Memorial, W2 2UH var a30=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.502194, -0.177644), title: 'The Albert Memorial (W2 2UH)', zIndex: 1 }); // place 31: Science Museum, SW7 2DD var a31=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.497399, -0.174678), title: 'Science Museum (SW7 2DD)', zIndex: 1 }); // place 32: Natural History Museum, SW7 5BD var a32=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.496206, -0.176426), title: 'Natural History Museum (SW7 5BD)', zIndex: 1 }); // place 33: Victoria and Albert Museum, SW7 2RL var a33=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.496283, -0.172038), title: 'Victoria and Albert Museum (SW7 2RL)', zIndex: 1 }); // place 34: The Regent`s Park, NW1 4NR var a34=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.526429, -0.154006), title: 'The Regent`s Park (NW1 4NR)', zIndex: 1 }); // place 35: Oxford Circus, W1C 2DD var a35=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.515288, -0.142000), title: 'Oxford Circus (W1C 2DD)', zIndex: 1 }); // place 36: Piccadilly Circus, W1J 9HW var a36=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.509889, -0.134484), title: 'Piccadilly Circus (W1J 9HW)', zIndex: 1 }); // place 37: Leicester Square, WC2H 7LU var a37=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.510358, -0.129958), title: 'Leicester Square (WC2H 7LU)', zIndex: 1 }); // place 38: Covent Garden, WC2E 8RF var a38=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.512277, -0.122078), title: 'Covent Garden (WC2E 8RF)', zIndex: 1 }); // place 39: Waterloo Bridge, WC2R 2PP var a39=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.508669, -0.116864), title: 'Waterloo Bridge (WC2R 2PP)', zIndex: 1 }); // place 40: Millennium Bridge, SE1 9JE var a40=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.509564, -0.098545), title: 'Millennium Bridge (SE1 9JE)', zIndex: 1 }); // place 41: Tate Modern, SE1 9TG var a41=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.507911, -0.099326), title: 'Tate Modern (SE1 9TG)', zIndex: 1 }); // place 42: London Bridge, EC4R 9HA var a42=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.508070, -0.087463), title: 'London Bridge (EC4R 9HA)', zIndex: 1 }); // place 43: The Navigators Steampunk Statue, SE1 2HD var a43=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.506069, -0.083352), title: 'The Navigators Steampunk Statue (SE1 2HD)', zIndex: 1 }); // place 44: The Queens Walk, SE1 2AA var a44=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.505323, -0.079006), title: 'The Queens Walk (SE1 2AA)', zIndex: 1 }); // place 45: Tower Bridge, E1W 1UN var a45=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.505527, -0.075369), title: 'Tower Bridge (E1W 1UN)', zIndex: 1 }); // place 46: The Minories, EC3N 1LA var a46=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.510859, -0.074747), title: 'The Minories (EC3N 1LA)', zIndex: 1 }); // place 47: The Dickens Inn, E1W 1UH var a47=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.510859, -0.074747), title: 'The Dickens Inn (E1W 1UH)', zIndex: 1 }); // place 48: Bath, BA1 1LT var a48=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.381531, -2.358663), title: 'Bath (BA1 1LT)', zIndex: 1 }); // place 49: Royal Crescent, Bath, BA1 2LR var a49=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.386700, -2.368484), title: 'Royal Crescent, Bath (BA1 2LR)', zIndex: 1 }); // place 50: Preston Park, Brighton, BN1 6SD var a50=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.840316, -0.147057), title: 'Preston Park, Brighton (BN1 6SD)', zIndex: 1 }); // place 51: Stonehenge, SP4 7DE var a51=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.178881, -1.826214), title: 'Stonehenge (SP4 7DE)', zIndex: 1 }); // place 52: Salisbury Cathedral, SP1 2EJ var a52=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.065662, -1.798256), title: 'Salisbury Cathedral (SP1 2EJ)', zIndex: 1 }); // place 53: Devils Dyke, BN1 8YL var a53=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.885467, -0.212604), title: 'Devils Dyke (BN1 8YL)', zIndex: 1 }); // place 54: Lewes Castle, BN7 1YU var a54=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.872880, 0.007420), title: 'Lewes Castle (BN7 1YU)', zIndex: 1 }); // place 55: Long Man of Wilmington, BN26 5SW var a55=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.816351, 0.190206), title: 'Long Man of Wilmington (BN26 5SW)', zIndex: 1 }); // place 56: Hastings, TN34 3DW var a56=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.856189, 0.594788), title: 'Hastings (TN34 3DW)', zIndex: 1 }); // place 57: Staines, TW18 1AT var a57=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.433800, -0.512002), title: 'Staines (TW18 1AT)', zIndex: 1 }); // place 58: Egham, TW20 9HN var a58=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.431961, -0.546584), title: 'Egham (TW20 9HN)', zIndex: 1 }); // place 59: Royal Holloway, University of London, TW20 0EX var a59=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.426129, -0.564177), title: 'Royal Holloway, University of London (TW20 0EX)', zIndex: 1 }); // place 60: Hounslow Civic Centre, TW3 4DN var a60=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.474313, -0.367792), title: 'Hounslow Civic Centre (TW3 4DN)', zIndex: 1 }); // place 61: Windsor Castle, SL4 1NJ var a61=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.484405, -0.604338), title: 'Windsor Castle (SL4 1NJ)', zIndex: 1 }); // place 62: Eton, SL4 6DB var a62=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.490425, -0.609372), title: 'Eton (SL4 6DB)', zIndex: 1 }); // place 63: Englefield Green, TW20 0PW var a63=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.429039, -0.579942), title: 'Englefield Green (TW20 0PW)', zIndex: 1 }); // place 64: Reading, RG1 2BH var a64=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.455618, -0.972185), title: 'Reading (RG1 2BH)', zIndex: 1 }); // place 65: Tower of London, EC3N 4AB var a65=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.507894, -0.075554), title: 'Tower of London (EC3N 4AB)', zIndex: 1 }); // place 66: Harrods, SW1X 7XL var a66=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.499427, -0.163323), title: 'Harrods (SW1X 7XL)', zIndex: 1 }); // place 67: Tenby, SA70 7HA var a67=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.673986, -4.702060), title: 'Tenby (SA70 7HA)', zIndex: 1 }); // place 68: Rotherhithe, SE16 5HD var a68=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.500428, -0.032340), title: 'Rotherhithe (SE16 5HD)', zIndex: 1 }); // place 69: Carmarthen, SA31 3BN var a69=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.856417, -4.308690), title: 'Carmarthen (SA31 3BN)', zIndex: 1 }); // place 70: Manchester, M1 1RG var a70=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.481114, -2.237089), title: 'Manchester (M1 1RG)', zIndex: 1 }); // place 71: One Central Park, M40 5BP var a71=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.502808, -2.202628), title: 'One Central Park (M40 5BP)', zIndex: 1 }); // place 72: Openshaw, M11 2WH var a72=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.473209, -2.187928), title: 'Openshaw (M11 2WH)', zIndex: 1 }); // place 73: Burnage, M19 1FG var a73=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.427683, -2.202266), title: 'Burnage (M19 1FG)', zIndex: 1 }); // place 74: London Euston Station, NW1 2DU var a74=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.528139, -0.133435), title: 'London Euston Station (NW1 2DU)', zIndex: 1 }); // place 75: Manchester Airport, M90 1QX var a75=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.366583, -2.280168), title: 'Manchester Airport (M90 1QX)', zIndex: 1 }); // place 76: Birmingham, B5 4BU var a76=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.477463, -1.893814), title: 'Birmingham (B5 4BU)', zIndex: 1 }); // place 77: Alton Towers Theme Park, ST10 4DB var a77=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.985847, -1.882407), title: 'Alton Towers Theme Park (ST10 4DB)', zIndex: 1 }); // place 78: Thorpe Park Theme Park, KT16 8PN var a78=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.403585, -0.515347), title: 'Thorpe Park Theme Park (KT16 8PN)', zIndex: 1 }); // place 79: Trafford Shopping Centre, M17 8AA var a79=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.465914, -2.348030), title: 'Trafford Shopping Centre (M17 8AA)', zIndex: 1 }); // place 80: Marple Aqueduct, SK6 5DT var a80=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.407265, -2.068880), title: 'Marple Aqueduct (SK6 5DT)', zIndex: 1 }); // place 81: Rochdale, OL16 1LW var a81=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.616525, -2.158318), title: 'Rochdale (OL16 1LW)', zIndex: 1 }); // place 82: Luton Airport, LU2 9LY var a82=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.880230, -0.375047), title: 'Luton Airport (LU2 9LY)', zIndex: 1 }); // place 83: Lake District, Bowness-on-Windermere, LA23 3HQ var a83=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.363027, -2.922720), title: 'Lake District, Bowness-on-Windermere (LA23 3HQ)', zIndex: 1 }); // place 84: Lake District, Kirkstone Pass A592, LA23 1PN var a84=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.438688, -2.902226), title: 'Lake District, Kirkstone Pass A592 (LA23 1PN)', zIndex: 1 }); // place 85: Lake District, Ullswater near Glenridding, CA11 0NQ var a85=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.561511, -2.949649), title: 'Lake District, Ullswater near Glenridding (CA11 0NQ)', zIndex: 1 }); // place 86: Lake District, Ullswater, CA11 0JS var a86=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.576853, -2.895402), title: 'Lake District, Ullswater (CA11 0JS)', zIndex: 1 }); // place 87: Lake District, Pooley Bridge, CA10 2NP var a87=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.612333, -2.821079), title: 'Lake District, Pooley Bridge (CA10 2NP)', zIndex: 1 }); // place 88: Lake District, Keswick, CA12 5JR var a88=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.601535, -3.138574), title: 'Lake District, Keswick (CA12 5JR)', zIndex: 1 }); // place 89: Lake District, Castlerigg Stone Circle, CA12 4RN var a89=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.602820, -3.098378), title: 'Lake District, Castlerigg Stone Circle (CA12 4RN)', zIndex: 1 }); // place 90: Lake District, Keswick, Isthmus Bay, CA12 5DJ var a90=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.594084, -3.140599), title: 'Lake District, Keswick, Isthmus Bay (CA12 5DJ)', zIndex: 1 }); // place 91: Lake District, Derwent Water, CA12 5UR var a91=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.578225, -3.132722), title: 'Lake District, Derwent Water (CA12 5UR)', zIndex: 1 }); // place 92: Lake District, Honister Pass, CA12 5XW var a92=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.514695, -3.178169), title: 'Lake District, Honister Pass (CA12 5XW)', zIndex: 1 }); // place 93: Lake District, Crummock Water, CA13 9UZ var a93=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.548151, -3.289003), title: 'Lake District, Crummock Water (CA13 9UZ)', zIndex: 1 }); // place 94: Lake District, Whinlatter Pass, CA12 5TW var a94=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.609477, -3.205028), title: 'Lake District, Whinlatter Pass (CA12 5TW)', zIndex: 1 }); // place 95: Lake District, Broughton-in-Furness, LA20 6JF var a95=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.277783, -3.211599), title: 'Lake District, Broughton-in-Furness (LA20 6JF)', zIndex: 1 }); // place 96: Lake District, Ambleside, LA22 9AN var a96=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.433053, -2.963462), title: 'Lake District, Ambleside (LA22 9AN)', zIndex: 1 }); // place 97: Lake District, Fell Foot Park, LA12 8NN var a97=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.275073, -2.952239), title: 'Lake District, Fell Foot Park (LA12 8NN)', zIndex: 1 }); // place 98: Kensington, SW5 9QN var a98=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.494284, -0.198821), title: 'Kensington (SW5 9QN)', zIndex: 1 }); // place 99: Barbican Centre, EC2Y 8DS var a99=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.519907, -0.093078), title: 'Barbican Centre (EC2Y 8DS)', zIndex: 1 }); // place 100: Morecambe, LA4 4NJ var a100=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.075443, -2.879514), title: 'Morecambe (LA4 4NJ)', zIndex: 1 }); // place 101: Southport, PR8 1SA var a101=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.651096, -3.009633), title: 'Southport (PR8 1SA)', zIndex: 1 }); // place 102: New Cross, SE8 4BP var a102=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.476656, -0.028907), title: 'New Cross (SE8 4BP)', zIndex: 1 }); // place 103: Leeds, LS1 8TL var a103=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.800055, -1.545943), title: 'Leeds (LS1 8TL)', zIndex: 1 }); // place 104: London Eye, SE1 7PB var a104=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.503363, -0.119688), title: 'London Eye (SE1 7PB)', zIndex: 1 }); // place 105: Leicester, LE2 1RF var a105=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.622795, -1.112785), title: 'Leicester (LE2 1RF)', zIndex: 1 }); // place 106: Longtown Castle, HR2 0LE var a106=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.956948, -2.989781), title: 'Longtown Castle (HR2 0LE)', zIndex: 1 }); // place 107: Glossop, SK13 8AP var a107=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.443431, -1.949950), title: 'Glossop (SK13 8AP)', zIndex: 1 }); // place 108: Snake Pass, S33 0BJ var a108=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.431632, -1.846457), title: 'Snake Pass (S33 0BJ)', zIndex: 1 }); // place 109: Peak District, Castleton, S33 8WN var a109=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.343251, -1.777434), title: 'Peak District, Castleton (S33 8WN)', zIndex: 1 }); // place 110: Peak District, Winnats Pass, S33 8WP var a110=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.339962, -1.796946), title: 'Peak District, Winnats Pass (S33 8WP)', zIndex: 1 }); // place 111: Chinley, SK23 6DT var a111=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.337847, -1.922099), title: 'Chinley (SK23 6DT)', zIndex: 1 }); // place 112: Buxton, SK17 6RY var a112=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.259423, -1.916270), title: 'Buxton (SK17 6RY)', zIndex: 1 }); // place 113: Hove Kingsway, BN3 4QD var a113=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.829026, -0.204316), title: 'Hove Kingsway (BN3 4QD)', zIndex: 1 }); // place 114: View over river Adur, BN43 6RE var a114=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.831886, -0.267169), title: 'View over river Adur (BN43 6RE)', zIndex: 1 }); // place 115: Bluewater Shopping Centre, DA9 9ST var a115=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.439806, 0.271344), title: 'Bluewater Shopping Centre (DA9 9ST)', zIndex: 1 }); // place 116: Kingston upon Hull, HU12 8AX var a116=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.707462, -0.214792), title: 'Kingston upon Hull (HU12 8AX)', zIndex: 1 }); // place 117: Peak District, Woodhead Reservoir, SK13 1JA var a117=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.490782, -1.878054), title: 'Peak District, Woodhead Reservoir (SK13 1JA)', zIndex: 1 }); // place 118: Worcester, WR1 2JF var a118=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.190292, -2.223279), title: 'Worcester (WR1 2JF)', zIndex: 1 }); // place 119: Rhayader, LD6 5AP var a119=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.298505, -3.514343), title: 'Rhayader (LD6 5AP)', zIndex: 1 }); // place 120: Aberystwyth, SY23 2DH var a120=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.416453, -4.085595), title: 'Aberystwyth (SY23 2DH)', zIndex: 1 }); // place 121: Aberystwyth Castle, SY23 2AU var a121=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.413303, -4.089916), title: 'Aberystwyth Castle (SY23 2AU)', zIndex: 1 }); // place 122: View over Aberystwyth, SY23 2DH var a122=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.423501, -4.085555), title: 'View over Aberystwyth (SY23 2DH)', zIndex: 1 }); // place 123: Bournemouth, BH2 5AA var a123=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.713611, -1.874535), title: 'Bournemouth (BH2 5AA)', zIndex: 1 }); // place 124: Tottenham Hale, N17 9HE var a124=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.591364, -0.064652), title: 'Tottenham Hale (N17 9HE)', zIndex: 1 }); // place 125: National Media Museum, BD1 1NQ var a125=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.790828, -1.756005), title: 'National Media Museum (BD1 1NQ)', zIndex: 1 }); // place 126: The Manchester College - Northenden, M23 0DD var a126=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.409886, -2.271106), title: 'The Manchester College - Northenden (M23 0DD)', zIndex: 1 }); // place 127: DVLA Test Centre, BL3 2AW var a127=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.564794, -2.426940), title: 'DVLA Test Centre (BL3 2AW)', zIndex: 1 }); // place 128: Southend-on-Sea, SS1 2EJ var a128=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.532695, 0.718949), title: 'Southend-on-Sea (SS1 2EJ)', zIndex: 1 }); // place 129: Blackley, M9 8DX var a129=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.523118, -2.218088), title: 'Blackley (M9 8DX)', zIndex: 1 }); // place 130: Birchington, CT7 9QQ var a130=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.381098, 1.286258), title: 'Birchington (CT7 9QQ)', zIndex: 1 }); // place 131: Westgate-on-Sea, CT8 8QG var a131=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.382940, 1.332694), title: 'Westgate-on-Sea (CT8 8QG)', zIndex: 1 }); // place 132: Sunken Garden, CT9 5EJ var a132=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.385980, 1.352077), title: 'Sunken Garden (CT9 5EJ)', zIndex: 1 }); // place 133: Deal, CT14 7AH var a133=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.223755, 1.408824), title: 'Deal (CT14 7AH)', zIndex: 1 }); // place 134: Rye Castle Museum, TN31 7HH var a134=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.949681, 0.735769), title: 'Rye Castle Museum (TN31 7HH)', zIndex: 1 }); // place 135: Eastbourne Pier, BN21 3EL var a135=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.766628, 0.293809), title: 'Eastbourne Pier (BN21 3EL)', zIndex: 1 }); // place 136: Eastbourne, BN21 4EE var a136=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.760792, 0.285323), title: 'Eastbourne (BN21 4EE)', zIndex: 1 }); // place 137: Seven Sisters, BN20 0AE var a137=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.736998, 0.221701), title: 'Seven Sisters (BN20 0AE)', zIndex: 1 }); // place 138: Orrell, WN5 7AZ var a138=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.527788, -2.709608), title: 'Orrell (WN5 7AZ)', zIndex: 1 }); // place 139: Llandudno, LL30 1BZ var a139=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.331847, -3.824702), title: 'Llandudno (LL30 1BZ)', zIndex: 1 }); // place 140: Llandudno panorama, LL30 2JP var a140=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.327962, -3.844550), title: 'Llandudno panorama (LL30 2JP)', zIndex: 1 }); // place 141: Great Orme, LL30 2XF var a141=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.332540, -3.852219), title: 'Great Orme (LL30 2XF)', zIndex: 1 }); // place 142: Menai Suspension Bridge, LL57 2HZ var a142=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.219943, -4.162994), title: 'Menai Suspension Bridge (LL57 2HZ)', zIndex: 1 }); // place 143: View over Bangor Pier, Anglesey, LL59 5PE var a143=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.248647, -4.119752), title: 'View over Bangor Pier, Anglesey (LL59 5PE)', zIndex: 1 }); // place 144: Bull Bay, Anglesey, LL68 9RY var a144=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.416555, -4.363785), title: 'Bull Bay, Anglesey (LL68 9RY)', zIndex: 1 }); // place 145: Anglezarke Viewpoint, PR6 9DW var a145=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.642890, -2.576474), title: 'Anglezarke Viewpoint (PR6 9DW)', zIndex: 1 }); // place 146: Yarrow Reservoir, PR6 9HD var a146=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.639375, -2.570432), title: 'Yarrow Reservoir (PR6 9HD)', zIndex: 1 }); // place 147: Alance Bridge, BL6 7SJ var a147=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.638989, -2.564805), title: 'Alance Bridge (BL6 7SJ)', zIndex: 1 }); // place 148: Lower Rivington Reservoir, BL6 7SE var a148=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.623682, -2.567765), title: 'Lower Rivington Reservoir (BL6 7SE)', zIndex: 1 }); // place 149: Boggart Hole Clough, M9 7BR var a149=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.519435, -2.197170), title: 'Boggart Hole Clough (M9 7BR)', zIndex: 1 }); // place 150: Rhuddlan Castle, LL18 5AD var a150=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.289167, -3.464639), title: 'Rhuddlan Castle (LL18 5AD)', zIndex: 1 }); // place 151: Rhyl, LL18 1HD var a151=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.322322, -3.492081), title: 'Rhyl (LL18 1HD)', zIndex: 1 }); // place 152: Colwyn Bay, LL28 4BY var a152=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.302209, -3.735390), title: 'Colwyn Bay (LL28 4BY)', zIndex: 1 }); // place 153: Southport Beach, PR8 2QA var a153=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.607989, -3.062258), title: 'Southport Beach (PR8 2QA)', zIndex: 1 }); // place 154: Lake District, Hardknott Roman Fort, CA19 1TH var a154=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.403058, -3.205972), title: 'Lake District, Hardknott Roman Fort (CA19 1TH)', zIndex: 1 }); // place 155: Lake District, Wast Water, CA20 1ET var a155=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.436363, -3.309604), title: 'Lake District, Wast Water (CA20 1ET)', zIndex: 1 }); // place 156: Albert Dock, L3 4AD var a156=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.400328, -2.992607), title: 'Albert Dock (L3 4AD)', zIndex: 1 }); // place 157: Dartmouth - Kingswear (Lower Ferry), TQ6 0AA var a157=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.348634, -3.574999), title: 'Dartmouth - Kingswear (Lower Ferry) (TQ6 0AA)', zIndex: 1 }); // place 158: Dartmouth Castle, TQ6 0JN var a158=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.342374, -3.565913), title: 'Dartmouth Castle (TQ6 0JN)', zIndex: 1 }); // place 159: Buckfast Abbey, TQ11 0EE var a159=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.492671, -3.778734), title: 'Buckfast Abbey (TQ11 0EE)', zIndex: 1 }); // place 160: Teignmouth, TQ14 8BB var a160=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.543901, -3.492117), title: 'Teignmouth (TQ14 8BB)', zIndex: 1 }); // place 161: Exeter, EX4 3HP var a161=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.722756, -3.530788), title: 'Exeter (EX4 3HP)', zIndex: 1 }); // place 162: Bicton Park Botanical Gardens, EX9 7BJ var a162=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.666162, -3.313618), title: 'Bicton Park Botanical Gardens (EX9 7BJ)', zIndex: 1 }); // place 163: Sidmouth, EX10 8BE var a163=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.678567, -3.235222), title: 'Sidmouth (EX10 8BE)', zIndex: 1 }); // place 164: Seaton Tramway (start), EX12 2TB var a164=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.705127, -3.067815), title: 'Seaton Tramway (start) (EX12 2TB)', zIndex: 1 }); // place 165: Seaton Tramway (end), EX24 6HA var a165=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.741476, -3.062024), title: 'Seaton Tramway (end) (EX24 6HA)', zIndex: 1 }); // place 166: Portland, DT5 2EN var a166=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.556971, -2.439137), title: 'Portland (DT5 2EN)', zIndex: 1 }); // place 167: Bennetts Water Gardens, DT3 4AF var a167=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.616826, -2.496242), title: 'Bennetts Water Gardens (DT3 4AF)', zIndex: 1 }); // place 168: Poole, BH15 1HJ var a168=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.712107, -1.988391), title: 'Poole (BH15 1HJ)', zIndex: 1 }); // place 169: Jedburgh, TD8 6BJ var a169=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.477609, -2.555397), title: 'Jedburgh (TD8 6BJ)', zIndex: 1 }); // place 170: Portobello Beach, EH15 2ER var a170=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.950672, -3.099895), title: 'Portobello Beach (EH15 2ER)', zIndex: 1 }); // place 171: National Galleries of Scotland - Modern Two, EH4 3DS var a171=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.951834, -3.223563), title: 'National Galleries of Scotland - Modern Two (EH4 3DS)', zIndex: 1 }); // place 172: View from Edinburgh Castle, EH1 2NG var a172=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.948683, -3.197506), title: 'View from Edinburgh Castle (EH1 2NG)', zIndex: 1 }); // place 173: Camera Obscura, EH1 2ND var a173=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.949076, -3.195617), title: 'Camera Obscura (EH1 2ND)', zIndex: 1 }); // place 174: Waverley Bridge, EH1 1BQ var a174=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.952957, -3.190745), title: 'Waverley Bridge (EH1 1BQ)', zIndex: 1 }); // place 175: Dreaming Spires, EH1 3AA var a175=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.956250, -3.186442), title: 'Dreaming Spires (EH1 3AA)', zIndex: 1 }); // place 176: Calton Hill, EH7 5BL var a176=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.956243, -3.182495), title: 'Calton Hill (EH7 5BL)', zIndex: 1 }); // place 177: A82 bridge, PH33 6SB var a177=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.689253, -5.179858), title: 'A82 bridge (PH33 6SB)', zIndex: 1 }); // place 178: Gallery in the Wood, PH49 4JD var a178=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.685194, -5.195590), title: 'Gallery in the Wood (PH49 4JD)', zIndex: 1 }); // place 179: Oban, PA34 5QD var a179=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.414400, -5.474456), title: 'Oban (PA34 5QD)', zIndex: 1 }); // place 180: Glasgow, G2 1DY var a180=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.861018, -4.250154), title: 'Glasgow (G2 1DY)', zIndex: 1 }); // place 181: Sandymoor Community Hall, WA7 1XU var a181=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.344450, -2.658042), title: 'Sandymoor Community Hall (WA7 1XU)', zIndex: 1 }); // place 182: Village Hotels Warrington, WA1 1QA var a182=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.383186, -2.595389), title: 'Village Hotels Warrington (WA1 1QA)', zIndex: 1 }); // place 183: Westbrook Centre, WA5 8UD var a183=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.407025, -2.633125), title: 'Westbrook Centre (WA5 8UD)', zIndex: 1 }); // place 184: Warrington, WA1 1RH var a184=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.388688, -2.599490), title: 'Warrington (WA1 1RH)', zIndex: 1 }); // place 185: Stockton Heath, WA4 6LG var a185=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.369865, -2.580490), title: 'Stockton Heath (WA4 6LG)', zIndex: 1 }); // place 186: Lymm, WA13 0HU var a186=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.381081, -2.477460), title: 'Lymm (WA13 0HU)', zIndex: 1 }); // place 187: Lymm Dam, WA13 0AS var a187=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.374895, -2.482776), title: 'Lymm Dam (WA13 0AS)', zIndex: 1 }); // place 188: Newton-le-Willows, WA12 8EF var a188=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.447056, -2.611734), title: 'Newton-le-Willows (WA12 8EF)', zIndex: 1 }); // place 189: Sychnant Pass, Conwy Mountains, LL32 8BJ var a189=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.275335, -3.876468), title: 'Sychnant Pass, Conwy Mountains (LL32 8BJ)', zIndex: 1 }); // place 190: Gatwick Airport, RH6 0PH var a190=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.161930, -0.172438), title: 'Gatwick Airport (RH6 0PH)', zIndex: 1 }); // place 191: Cheshire Oaks Designer Outlet, CH65 9JJ var a191=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.265826, -2.881980), title: 'Cheshire Oaks Designer Outlet (CH65 9JJ)', zIndex: 1 }); // place 192: Manchester Cathedral, M3 1SX var a192=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.485245, -2.244288), title: 'Manchester Cathedral (M3 1SX)', zIndex: 1 }); // place 193: Chester Zoo, CH2 1EU var a193=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.226554, -2.888906), title: 'Chester Zoo (CH2 1EU)', zIndex: 1 }); // place 194: Bala Lake, Snowdonia, LL23 7YE var a194=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.905961, -3.605359), title: 'Bala Lake, Snowdonia (LL23 7YE)', zIndex: 1 }); // place 195: Nolton Haven, SA62 3NH var a195=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.824997, -5.107678), title: 'Nolton Haven (SA62 3NH)', zIndex: 1 }); // place 196: Nolton Stables, SA62 3NW var a196=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.820384, -5.092041), title: 'Nolton Stables (SA62 3NW)', zIndex: 1 }); // place 197: Burton Ferry near Cleddau Bridge, SA73 1NY var a197=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.707165, -4.927041), title: 'Burton Ferry near Cleddau Bridge (SA73 1NY)', zIndex: 1 }); // place 198: Pembroke Dock, SA72 6TR var a198=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.699762, -4.942290), title: 'Pembroke Dock (SA72 6TR)', zIndex: 1 }); // place 199: Carew Castle, SA70 8SN var a199=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.698551, -4.830624), title: 'Carew Castle (SA70 8SN)', zIndex: 1 }); // place 200: Tresaith, SA43 2JL var a200=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.135166, -4.517275), title: 'Tresaith (SA43 2JL)', zIndex: 1 }); // place 201: Warwick Castle, CV34 4QU var a201=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.279654, -1.585199), title: 'Warwick Castle (CV34 4QU)', zIndex: 1 }); // place 202: Woolston, Warrington, WA1 4RW var a202=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.407037, -2.534727), title: 'Woolston, Warrington (WA1 4RW)', zIndex: 1 }); // place 203: Tatton Park, WA16 6QN var a203=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.330386, -2.386878), title: 'Tatton Park (WA16 6QN)', zIndex: 1 }); // place 204: Guildford, GU1 3SA var a204=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.236694, -0.566401), title: 'Guildford (GU1 3SA)', zIndex: 1 }); // place 205: Bourne, PE10 9LB var a205=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.766008, -0.368355), title: 'Bourne (PE10 9LB)', zIndex: 1 }); // place 206: Spalding, PE12 6EU var a206=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.797676, -0.128167), title: 'Spalding (PE12 6EU)', zIndex: 1 }); // place 207: Stratford-upon-Avon, CV37 6QW var a207=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.194031, -1.708541), title: 'Stratford-upon-Avon (CV37 6QW)', zIndex: 1 }); // place 208: Silverstone, NN12 8TN var a208=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.078782, -1.015453), title: 'Silverstone (NN12 8TN)', zIndex: 1 }); // place 209: Aldershot, GU11 3JP var a209=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.245719, -0.772027), title: 'Aldershot (GU11 3JP)', zIndex: 1 }); // place 210: Camberley, GU15 3PT var a210=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.337136, -0.748586), title: 'Camberley (GU15 3PT)', zIndex: 1 }); // place 211: Heaton Park, M25 2SW var a211=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.535981, -2.252817), title: 'Heaton Park (M25 2SW)', zIndex: 1 }); // place 212: Marford, LL12 8TA var a212=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.099872, -2.958871), title: 'Marford (LL12 8TA)', zIndex: 1 }); // place 213: Chester, CH1 1ES var a213=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.190660, -2.889682), title: 'Chester (CH1 1ES)', zIndex: 1 }); // place 214: Bridge over Dart, Dartmoor National Park, TQ13 7NT var a214=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.523369, -3.819223), title: 'Bridge over Dart, Dartmoor National Park (TQ13 7NT)', zIndex: 1 }); // place 215: Tamar Bridge, PL5 1LP var a215=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.408053, -4.202449), title: 'Tamar Bridge (PL5 1LP)', zIndex: 1 }); // place 216: Seaview Caravan Park, PL13 2JE var a216=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.345177, -4.509805), title: 'Seaview Caravan Park (PL13 2JE)', zIndex: 1 }); // place 217: Polperro, PL13 2QZ var a217=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.329984, -4.516165), title: 'Polperro (PL13 2QZ)', zIndex: 1 }); // place 218: St Michael`s Mount, TR17 0HS var a218=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.116628, -5.478922), title: 'St Michael`s Mount (TR17 0HS)', zIndex: 1 }); // place 219: Eden Project, PL24 2SG var a219=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.362704, -4.745269), title: 'Eden Project (PL24 2SG)', zIndex: 1 }); // place 220: Fowey, PL23 1JH var a220=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.329335, -4.644994), title: 'Fowey (PL23 1JH)', zIndex: 1 }); // place 221: St Catherine`s Castle, PL23 1JH var a221=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.328252, -4.644401), title: 'St Catherine`s Castle (PL23 1JH)', zIndex: 1 }); // place 222: River Tamar near Cotehele, PL12 6TA var a222=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.491518, -4.223318), title: 'River Tamar near Cotehele (PL12 6TA)', zIndex: 1 }); // place 223: Cotehele, PL12 6TA var a223=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.495709, -4.225560), title: 'Cotehele (PL12 6TA)', zIndex: 1 }); // place 224: Buckland Abbey, PL20 6EY var a224=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.480934, -4.133768), title: 'Buckland Abbey (PL20 6EY)', zIndex: 1 }); // place 225: Looe, PL13 1HH var a225=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.356220, -4.455973), title: 'Looe (PL13 1HH)', zIndex: 1 }); // place 226: Lanhydrock, PL30 5AD var a226=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.441441, -4.695835), title: 'Lanhydrock (PL30 5AD)', zIndex: 1 }); // place 227: York, YO1 7EJ var a227=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.962212, -1.083367), title: 'York (YO1 7EJ)', zIndex: 1 }); // place 228: Lyme Park, SK12 2NR var a228=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.337047, -2.054138), title: 'Lyme Park (SK12 2NR)', zIndex: 1 }); // place 229: Newtown, SY16 1LP var a229=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.506688, -3.336291), title: 'Newtown (SY16 1LP)', zIndex: 1 }); // place 230: Arrochar, G83 7AU var a230=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.199560, -4.747135), title: 'Arrochar (G83 7AU)', zIndex: 1 }); // place 231: West Highland Way, PA36 4AE var a231=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.517937, -4.770588), title: 'West Highland Way (PA36 4AE)', zIndex: 1 }); // place 232: Fort William, PH33 6DY var a232=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.816368, -5.113908), title: 'Fort William (PH33 6DY)', zIndex: 1 }); // place 233: Castle Stalker View, PA38 4BL var a233=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.574896, -5.380284), title: 'Castle Stalker View (PA38 4BL)', zIndex: 1 }); // place 234: Lochgilphead, PA31 8JP var a234=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.034542, -5.429061), title: 'Lochgilphead (PA31 8JP)', zIndex: 1 }); // place 235: Inveraray, PA32 8XB var a235=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.231914, -5.073890), title: 'Inveraray (PA32 8XB)', zIndex: 1 }); // place 236: Helensburgh, G84 7PA var a236=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.001012, -4.737602), title: 'Helensburgh (G84 7PA)', zIndex: 1 }); // place 237: Dumbarton Castle, G82 1JJ var a237=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.935873, -4.562583), title: 'Dumbarton Castle (G82 1JJ)', zIndex: 1 }); // place 238: The Wallace Collection, W1U 3BN var a238=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.517164, -0.152894), title: 'The Wallace Collection (W1U 3BN)', zIndex: 1 }); // place 239: Royal Albert Hall, SW7 2AP var a239=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.501049, -0.177414), title: 'Royal Albert Hall (SW7 2AP)', zIndex: 1 }); // place 240: Kew Gardens, TW9 3AF var a240=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.477013, -0.299620), title: 'Kew Gardens (TW9 3AF)', zIndex: 1 }); // place 241: Newcastle upon Tyne, NE1 1RQ var a241=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.968615, -1.610379), title: 'Newcastle upon Tyne (NE1 1RQ)', zIndex: 1 }); // place 242: Whitley Bay, NE26 1AW var a242=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.044863, -1.441773), title: 'Whitley Bay (NE26 1AW)', zIndex: 1 }); // place 243: Lincoln, LN5 7DH var a243=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.228569, -0.543193), title: 'Lincoln (LN5 7DH)', zIndex: 1 }); // place 244: Skegness, PE25 3HH var a244=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.140676, 0.345284), title: 'Skegness (PE25 3HH)', zIndex: 1 }); // place 245: Walton Gardens, WA4 6SN var a245=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.359644, -2.600361), title: 'Walton Gardens (WA4 6SN)', zIndex: 1 }); // place 246: Barnsley, S70 1RR var a246=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.552026, -1.479488), title: 'Barnsley (S70 1RR)', zIndex: 1 }); // place 247: Holmfirth, HD9 2TT var a247=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.565483, -1.803383), title: 'Holmfirth (HD9 2TT)', zIndex: 1 }); // place 248: Royal Academy of Arts, W1J 0BD var a248=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.509074, -0.139551), title: 'Royal Academy of Arts (W1J 0BD)', zIndex: 1 }); // place 249: Primrose Hill, NW3 3AX var a249=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.539525, -0.160724), title: 'Primrose Hill (NW3 3AX)', zIndex: 1 }); // place 250: St Winefride`s Well, Holywell, CH8 7PN var a250=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.277229, -3.223640), title: 'St Winefride`s Well, Holywell (CH8 7PN)', zIndex: 1 }); // place 251: Mompesson House, SP1 2EL var a251=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.066755, -1.798478), title: 'Mompesson House (SP1 2EL)', zIndex: 1 }); // place 252: Bicester Village Designer Outlet, OX26 6WD var a252=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.891785, -1.155920), title: 'Bicester Village Designer Outlet (OX26 6WD)', zIndex: 1 }); // place 253: Ingleton Waterfalls Trail, LA6 3ES var a253=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.172738, -2.469132), title: 'Ingleton Waterfalls Trail (LA6 3ES)', zIndex: 1 }); // place 254: Beaumaris Castle, LL85 8AP var a254=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.264807, -4.089717), title: 'Beaumaris Castle (LL85 8AP)', zIndex: 1 }); // place 255: Blackburn, BB1 3HR var a255=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.753774, -2.445778), title: 'Blackburn (BB1 3HR)', zIndex: 1 }); // place 256: Sandford-on-Thames, Oxford, OX4 4YD var a256=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.708040, -1.232935), title: 'Sandford-on-Thames, Oxford (OX4 4YD)', zIndex: 1 }); // place 257: Ozone Leisure Park, OX4 4XP var a257=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.717474, -1.210503), title: 'Ozone Leisure Park (OX4 4XP)', zIndex: 1 }); // place 258: Waddesdon Manor, HP18 0JH var a258=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.842599, -0.937964), title: 'Waddesdon Manor (HP18 0JH)', zIndex: 1 }); // place 259: Lake District, Skiddaw, CA12 4PH var a259=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.651344, -3.147817), title: 'Lake District, Skiddaw (CA12 4PH)', zIndex: 1 }); // place 260: Snake Pass, Ladybower Reservoir, S33 0AX var a260=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.374996, -1.693754), title: 'Snake Pass, Ladybower Reservoir (S33 0AX)', zIndex: 1 }); // place 261: Snake Pass, Sheffield border, S6 6GL var a261=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.386253, -1.659614), title: 'Snake Pass, Sheffield border (S6 6GL)', zIndex: 1 }); // place 262: Snake Pass, view over Sheffield, S10 5PU var a262=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.379784, -1.547455), title: 'Snake Pass, view over Sheffield (S10 5PU)', zIndex: 1 }); // place 263: Lydgate Lane, Sheffield, S10 5FP var a263=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.380776, -1.510774), title: 'Lydgate Lane, Sheffield (S10 5FP)', zIndex: 1 }); // place 264: Wentworth Castle Gardens, S75 3EN var a264=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.523459, -1.518814), title: 'Wentworth Castle Gardens (S75 3EN)', zIndex: 1 }); // place 265: Formby Beach, L37 1LJ var a265=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.565842, -3.099489), title: 'Formby Beach (L37 1LJ)', zIndex: 1 }); // place 266: Manchester Town Hall, M2 5DB var a266=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.479286, -2.244518), title: 'Manchester Town Hall (M2 5DB)', zIndex: 1 }); // place 267: Meadowhall Shopping Centre, S9 1EP var a267=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.413983, -1.413150), title: 'Meadowhall Shopping Centre (S9 1EP)', zIndex: 1 }); // place 268: Dunham Massey, WA14 4SJ var a268=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.383233, -2.400721), title: 'Dunham Massey (WA14 4SJ)', zIndex: 1 }); // place 269: Yorkshire Sculpture Park, WF4 4JX var a269=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.613814, -1.571378), title: 'Yorkshire Sculpture Park (WF4 4JX)', zIndex: 1 }); // place 270: Chatsworth, DE45 1PP var a270=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.224047, -1.612085), title: 'Chatsworth (DE45 1PP)', zIndex: 1 }); // place 271: Blackpool, FY4 1BA var a271=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.810864, -3.057484), title: 'Blackpool (FY4 1BA)', zIndex: 1 }); // place 272: Pontcysyllte Aqueduct, LL20 7RH var a272=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.970447, -3.087797), title: 'Pontcysyllte Aqueduct (LL20 7RH)', zIndex: 1 }); // place 273: Lowry and MediaCityUK, M50 2EQ var a273=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.473129, -2.297251), title: 'Lowry and MediaCityUK (M50 2EQ)', zIndex: 1 }); // place 274: Hideaway Lodges, EH49 7RJ var a274=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.990048, -3.658732), title: 'Hideaway Lodges (EH49 7RJ)', zIndex: 1 }); // place 275: Falkirk Wheel, FK1 4RS var a275=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.001454, -3.840521), title: 'Falkirk Wheel (FK1 4RS)', zIndex: 1 }); // place 276: Linlithgow Palace, EH49 7AL var a276=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.978613, -3.600320), title: 'Linlithgow Palace (EH49 7AL)', zIndex: 1 }); // place 277: Comrie, PH6 2EB var a277=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.373634, -3.987243), title: 'Comrie (PH6 2EB)', zIndex: 1 }); // place 278: Loch Earn, PH6 2NG var a278=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.394532, -4.123006), title: 'Loch Earn (PH6 2NG)', zIndex: 1 }); // place 279: Clan Macnab Burial Ground, Killin, FK21 8SL var a279=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.462717, -4.319832), title: 'Clan Macnab Burial Ground, Killin (FK21 8SL)', zIndex: 1 }); // place 280: Loch Rannoch, PH16 5PR var a280=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.699989, -4.193779), title: 'Loch Rannoch (PH16 5PR)', zIndex: 1 }); // place 281: Aberlady, EH32 0QB var a281=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.014667, -2.849861), title: 'Aberlady (EH32 0QB)', zIndex: 1 }); // place 282: North Berwick, EH39 4AB var a282=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.059022, -2.722220), title: 'North Berwick (EH39 4AB)', zIndex: 1 }); // place 283: Dunbar Harbour, EH42 1AD var a283=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.006105, -2.512890), title: 'Dunbar Harbour (EH42 1AD)', zIndex: 1 }); // place 284: Berwick-upon-Tweed, TD15 2AA var a284=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.767429, -2.009590), title: 'Berwick-upon-Tweed (TD15 2AA)', zIndex: 1 }); // place 285: Lindisfarne Castle, TD15 2SE var a285=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.669001, -1.785021), title: 'Lindisfarne Castle (TD15 2SE)', zIndex: 1 }); // place 286: Partington, M31 4NZ var a286=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.419777, -2.424995), title: 'Partington (M31 4NZ)', zIndex: 1 }); // place 287: Telford, TF3 4DE var a287=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.673792, -2.447458), title: 'Telford (TF3 4DE)', zIndex: 1 }); // place 288: Ironbridge, TF8 7JP var a288=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.627362, -2.485427), title: 'Ironbridge (TF8 7JP)', zIndex: 1 }); // place 289: North Waltham, Basingstoke, RG25 2BE var a289=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.211514, -1.195723), title: 'North Waltham, Basingstoke (RG25 2BE)', zIndex: 1 }); // place 290: Powis Castle, SY21 8RF var a290=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.649773, -3.161045), title: 'Powis Castle (SY21 8RF)', zIndex: 1 }); // place 291: Chirk Castle, LL14 5AF var a291=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.935174, -3.089713), title: 'Chirk Castle (LL14 5AF)', zIndex: 1 }); // place 292: University of Glasgow, G12 8QQ var a292=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.871459, -4.288554), title: 'University of Glasgow (G12 8QQ)', zIndex: 1 }); // place 293: Lancaster Castle, LA1 1YJ var a293=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.049733, -2.805173), title: 'Lancaster Castle (LA1 1YJ)', zIndex: 1 }); // place 294: Sheffield Botanical Gardens, S10 2LN var a294=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.371628, -1.499397), title: 'Sheffield Botanical Gardens (S10 2LN)', zIndex: 1 }); // place 295: Hampton Court Palace, KT8 9AU var a295=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.403563, -0.339415), title: 'Hampton Court Palace (KT8 9AU)', zIndex: 1 }); // place 296: Manchester United Stadium, M16 0RA var a296=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.463564, -2.294108), title: 'Manchester United Stadium (M16 0RA)', zIndex: 1 }); // place 297: Turton and Entwistle Reservoir, BL7 0NF var a297=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.651634, -2.420187), title: 'Turton and Entwistle Reservoir (BL7 0NF)', zIndex: 1 }); // place 298: Alderley Edge, SK9 7JT var a298=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.301747, -2.235939), title: 'Alderley Edge (SK9 7JT)', zIndex: 1 }); // place 299: Caernarfon Castle, LL55 2AY var a299=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.139159, -4.278132), title: 'Caernarfon Castle (LL55 2AY)', zIndex: 1 }); // place 300: Kingston, KT1 1UJ var a300=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.412539, -0.301267), title: 'Kingston (KT1 1UJ)', zIndex: 1 }); // place 301: New Malden, KT3 3HB var a301=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.401030, -0.265286), title: 'New Malden (KT3 3HB)', zIndex: 1 }); // place 302: Kenilworth Castle, CV8 1NE var a302=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.347796, -1.592755), title: 'Kenilworth Castle (CV8 1NE)', zIndex: 1 }); // place 303: Paignton, TQ4 6BW var a303=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.441279, -3.558978), title: 'Paignton (TQ4 6BW)', zIndex: 1 }); // place 304: Dartmouth - Kingswear (Higher Ferry), TQ6 9PQ var a304=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.358389, -3.574824), title: 'Dartmouth - Kingswear (Higher Ferry) (TQ6 9PQ)', zIndex: 1 }); // place 305: Dartmouth, TQ6 9PW var a305=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.354406, -3.576737), title: 'Dartmouth (TQ6 9PW)', zIndex: 1 }); // place 306: Totnes Castle, TQ9 5NU var a306=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.432024, -3.690634), title: 'Totnes Castle (TQ9 5NU)', zIndex: 1 }); // place 307: Berry Pomeroy Castle, TQ9 6LJ var a307=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.448977, -3.636529), title: 'Berry Pomeroy Castle (TQ9 6LJ)', zIndex: 1 }); // place 308: Torquay Beach, TQ1 2HX var a308=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.459471, -3.504748), title: 'Torquay Beach (TQ1 2HX)', zIndex: 1 }); // place 309: Thatcher Point, TQ1 2HA var a309=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.458278, -3.491286), title: 'Thatcher Point (TQ1 2HA)', zIndex: 1 }); // place 310: Torquay, TQ2 5JG var a310=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.460960, -3.524542), title: 'Torquay (TQ2 5JG)', zIndex: 1 }); // place 311: Blackpool Beach near Dartmouth, TQ6 0RG var a311=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.318758, -3.611574), title: 'Blackpool Beach near Dartmouth (TQ6 0RG)', zIndex: 1 }); // place 312: Strete Gate Beach near Dartmouth, TQ6 0RR var a312=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.299264, -3.635620), title: 'Strete Gate Beach near Dartmouth (TQ6 0RR)', zIndex: 1 }); // place 313: Kingsbridge, TQ7 1LN var a313=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.280091, -3.775494), title: 'Kingsbridge (TQ7 1LN)', zIndex: 1 }); // place 314: Plymouth, PL1 3DE var a314=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.364314, -4.146046), title: 'Plymouth (PL1 3DE)', zIndex: 1 }); // place 315: Bristol, BS1 5UH var a315=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.450145, -2.598089), title: 'Bristol (BS1 5UH)', zIndex: 1 }); // place 316: Clifton Suspension Bridge, BS8 3PJ var a316=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.454916, -2.627948), title: 'Clifton Suspension Bridge (BS8 3PJ)', zIndex: 1 }); // place 317: Leeds Castle, ME17 1PB var a317=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.249442, 0.630600), title: 'Leeds Castle (ME17 1PB)', zIndex: 1 }); // place 318: St Margaret`s at Cliffe, CT15 6DY var a318=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.150428, 1.384907), title: 'St Margaret`s at Cliffe (CT15 6DY)', zIndex: 1 }); // place 319: Margate, CT9 5AQ var a319=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.387999, 1.373652), title: 'Margate (CT9 5AQ)', zIndex: 1 }); // place 320: Dover Castle, CT16 1HU var a320=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.129551, 1.321210), title: 'Dover Castle (CT16 1HU)', zIndex: 1 }); // place 321: White Cliffs of Dover, CT16 1HJ var a321=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.132412, 1.345532), title: 'White Cliffs of Dover (CT16 1HJ)', zIndex: 1 }); // place 322: Deal Castle, CT14 7BA var a322=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.219424, 1.403556), title: 'Deal Castle (CT14 7BA)', zIndex: 1 }); // place 323: Canterbury Cathedral, CT1 2EH var a323=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.279777, 1.082913), title: 'Canterbury Cathedral (CT1 2EH)', zIndex: 1 }); // place 324: Rossendale Snowboarding, BB4 8RT var a324=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.704657, -2.301261), title: 'Rossendale Snowboarding (BB4 8RT)', zIndex: 1 }); // place 325: Scunthorpe, DN16 1AG var a325=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.585974, -0.641370), title: 'Scunthorpe (DN16 1AG)', zIndex: 1 }); // place 326: Pontefract Racecourse, WF8 4QD var a326=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.695916, -1.330205), title: 'Pontefract Racecourse (WF8 4QD)', zIndex: 1 }); // place 327: Brodsworth Hall, DN5 7XJ var a327=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.557147, -1.239297), title: 'Brodsworth Hall (DN5 7XJ)', zIndex: 1 }); // place 328: Wallasey, CH45 4NW var a328=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.419536, -3.047393), title: 'Wallasey (CH45 4NW)', zIndex: 1 }); // place 329: Jacob`s Ladder, EH1 3DG var a329=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.953093, -3.182048), title: 'Jacob`s Ladder (EH1 3DG)', zIndex: 1 }); // place 330: View over Waverly Bridge, EH2 2EL var a330=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.951173, -3.195349), title: 'View over Waverly Bridge (EH2 2EL)', zIndex: 1 }); // place 331: Lake District, Waterfall Walk, CA13 9XA var a331=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.547191, -3.249215), title: 'Lake District, Waterfall Walk (CA13 9XA)', zIndex: 1 }); // place 332: Shrewsbury Castle, SY1 2AD var a332=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.710709, -2.749088), title: 'Shrewsbury Castle (SY1 2AD)', zIndex: 1 }); // place 333: Willowgrove Caravan Park, FY6 0RS var a333=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.923759, -2.963600), title: 'Willowgrove Caravan Park (FY6 0RS)', zIndex: 1 }); // place 334: Fleetwood, FY7 7HU var a334=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.924460, -3.029311), title: 'Fleetwood (FY7 7HU)', zIndex: 1 }); // place 335: Blackpool Tower, FY1 4BJ var a335=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.815754, -3.055220), title: 'Blackpool Tower (FY1 4BJ)', zIndex: 1 }); // place 336: Manchester Museum, M13 9PL var a336=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.466085, -2.234039), title: 'Manchester Museum (M13 9PL)', zIndex: 1 }); // place 337: Peak District, Sterndale Moor, SK17 9QG var a337=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.205642, -1.831838), title: 'Peak District, Sterndale Moor (SK17 9QG)', zIndex: 1 }); // place 338: Peak District, near Newhaven, DE45 1JQ var a338=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.176863, -1.788198), title: 'Peak District, near Newhaven (DE45 1JQ)', zIndex: 1 }); // place 339: Manchester City Etihad Stadium, M11 3FF var a339=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.482942, -2.202508), title: 'Manchester City Etihad Stadium (M11 3FF)', zIndex: 1 }); // place 340: Gorton Monastery, M12 5WF var a340=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.468645, -2.187200), title: 'Gorton Monastery (M12 5WF)', zIndex: 1 }); // place 341: Earnsdale Reservoir, BB3 1JX var a341=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.695787, -2.500742), title: 'Earnsdale Reservoir (BB3 1JX)', zIndex: 1 }); // place 342: Scarborough, YO12 7HY var a342=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.288677, -0.402474), title: 'Scarborough (YO12 7HY)', zIndex: 1 }); // place 343: Cleethorpes, Grimsby, DN35 8SJ var a343=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.562647, -0.029066), title: 'Cleethorpes, Grimsby (DN35 8SJ)', zIndex: 1 }); // place 344: Northampton, NN3 9EX var a344=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.242549, -0.811669), title: 'Northampton (NN3 9EX)', zIndex: 1 }); // place 345: Maidstone, ME15 9QB var a345=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.253599, 0.527810), title: 'Maidstone (ME15 9QB)', zIndex: 1 }); // place 346: Portmeirion, LL48 6ER var a346=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.913528, -4.098689), title: 'Portmeirion (LL48 6ER)', zIndex: 1 }); // place 347: Knightshayes, EX16 7RQ var a347=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.926269, -3.480935), title: 'Knightshayes (EX16 7RQ)', zIndex: 1 }); // place 348: Holywell Bay Holiday Park, TR8 5PR var a348=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.382127, -5.136283), title: 'Holywell Bay Holiday Park (TR8 5PR)', zIndex: 1 }); // place 349: St Ives, TR26 1HB var a349=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.214917, -5.479410), title: 'St Ives (TR26 1HB)', zIndex: 1 }); // place 350: Lands End, TR19 7AA var a350=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.062912, -5.714479), title: 'Lands End (TR19 7AA)', zIndex: 1 }); // place 351: Minack Theatre, TR19 6JU var a351=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.040830, -5.651141), title: 'Minack Theatre (TR19 6JU)', zIndex: 1 }); // place 352: Kynance Cove, TR12 7PJ var a352=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(49.974986, -5.230708), title: 'Kynance Cove (TR12 7PJ)', zIndex: 1 }); // place 353: Lizard Point, TR12 7NT var a353=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(49.958936, -5.206200), title: 'Lizard Point (TR12 7NT)', zIndex: 1 }); // place 354: Chapel Porth, TR5 0NS var a354=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.304919, -5.233202), title: 'Chapel Porth (TR5 0NS)', zIndex: 1 }); // place 355: Godrevy, TR27 5ED var a355=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.240335, -5.394459), title: 'Godrevy (TR27 5ED)', zIndex: 1 }); // place 356: Zennor Head, TR26 3BY var a356=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.197919, -5.576919), title: 'Zennor Head (TR26 3BY)', zIndex: 1 }); // place 357: Levant Mine and Beam Engine, TR19 7SX var a357=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.152053, -5.685651), title: 'Levant Mine and Beam Engine (TR19 7SX)', zIndex: 1 }); // place 358: Glendurgan Garden, TR11 5JZ var a358=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.107076, -5.117368), title: 'Glendurgan Garden (TR11 5JZ)', zIndex: 1 }); // place 359: Helford Passage, TR11 5LB var a359=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.100021, -5.129030), title: 'Helford Passage (TR11 5LB)', zIndex: 1 }); // place 360: Holywell Bay, TR8 5PG var a360=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.389987, -5.144912), title: 'Holywell Bay (TR8 5PG)', zIndex: 1 }); // place 361: Trerice, TR8 4PG var a361=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.386401, -5.037715), title: 'Trerice (TR8 4PG)', zIndex: 1 }); // place 362: Carnewas and Bedruthan Steps, PL27 7UW var a362=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.484857, -5.033337), title: 'Carnewas and Bedruthan Steps (PL27 7UW)', zIndex: 1 }); // place 363: Newquay, TR7 1HF var a363=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.417792, -5.087891), title: 'Newquay (TR7 1HF)', zIndex: 1 }); // place 364: Boscastle Harbour, PL35 0HE var a364=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.689617, -4.704359), title: 'Boscastle Harbour (PL35 0HE)', zIndex: 1 }); // place 365: Port Isaac, PL29 3SB var a365=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.592210, -4.832084), title: 'Port Isaac (PL29 3SB)', zIndex: 1 }); // place 366: Jamaica Inn, PL15 7TS var a366=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.562250, -4.566629), title: 'Jamaica Inn (PL15 7TS)', zIndex: 1 }); // place 367: Blenheim Palace, OX20 1PP var a367=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.844635, -1.364290), title: 'Blenheim Palace (OX20 1PP)', zIndex: 1 }); // place 368: Midhurst, GU29 9PE var a368=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.983944, -0.737901), title: 'Midhurst (GU29 9PE)', zIndex: 1 }); // place 369: Chichester, PO19 1HD var a369=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.835820, -0.779630), title: 'Chichester (PO19 1HD)', zIndex: 1 }); // place 370: Chigwell School, IG7 6QF var a370=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.625109, 0.080629), title: 'Chigwell School (IG7 6QF)', zIndex: 1 }); // place 371: Chigwell Hall, IG7 6BD var a371=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.625206, 0.075413), title: 'Chigwell Hall (IG7 6BD)', zIndex: 1 }); // place 372: Stratford Shopping Centre, E15 1NG var a372=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.541564, 0.000015), title: 'Stratford Shopping Centre (E15 1NG)', zIndex: 1 }); // place 373: Rochester Castle, ME1 1SW var a373=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.389298, 0.501545), title: 'Rochester Castle (ME1 1SW)', zIndex: 1 }); // place 374: Bushy Park, KT8 9DD var a374=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.414342, -0.340896), title: 'Bushy Park (KT8 9DD)', zIndex: 1 }); // place 375: Whitstable, CT5 1AB var a375=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.364494, 1.025115), title: 'Whitstable (CT5 1AB)', zIndex: 1 }); // place 376: Garsons Farm, KT10 8LS var a376=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.364485, -0.388476), title: 'Garsons Farm (KT10 8LS)', zIndex: 1 }); // place 377: Hampton Pool, TW12 2ST var a377=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.418252, -0.358016), title: 'Hampton Pool (TW12 2ST)', zIndex: 1 }); // place 378: Castlefield, M3 4LZ var a378=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.474501, -2.253509), title: 'Castlefield (M3 4LZ)', zIndex: 1 }); // place 379: Hilbre Island, CH48 8BW var a379=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.380802, -3.225840), title: 'Hilbre Island (CH48 8BW)', zIndex: 1 }); // place 380: Grappenhal, WA4 3EP var a380=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.372015, -2.544515), title: 'Grappenhal (WA4 3EP)', zIndex: 1 }); // place 381: E13, London, E13 9PA var a381=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.525471, 0.034609), title: 'E13, London (E13 9PA)', zIndex: 1 }); // place 382: Sheerness, ME12 1AB var a382=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.440374, 0.764000), title: 'Sheerness (ME12 1AB)', zIndex: 1 }); // place 383: Tan Rallt Holiday Home Park, LL22 8EE var a383=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.268053, -3.627864), title: 'Tan Rallt Holiday Home Park (LL22 8EE)', zIndex: 1 }); // place 384: Betws-y-Coed, LL24 0BA var a384=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.093851, -3.806037), title: 'Betws-y-Coed (LL24 0BA)', zIndex: 1 }); // place 385: Llynnau Mymbyr, Snowdonia, LL24 0ET var a385=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.102229, -3.920278), title: 'Llynnau Mymbyr, Snowdonia (LL24 0ET)', zIndex: 1 }); // place 386: A4086, Snowdonia, LL55 4UL var a386=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.090714, -4.053116), title: 'A4086, Snowdonia (LL55 4UL)', zIndex: 1 }); // place 387: Llyn Padarn, Snowdonia, LL55 4EL var a387=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.126253, -4.132389), title: 'Llyn Padarn, Snowdonia (LL55 4EL)', zIndex: 1 }); // place 388: Conwy Suspension Bridge, LL32 8LD var a388=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.280449, -3.823786), title: 'Conwy Suspension Bridge (LL32 8LD)', zIndex: 1 }); // place 389: Conwy Town Walls, LL32 8LD var a389=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.280273, -3.833256), title: 'Conwy Town Walls (LL32 8LD)', zIndex: 1 }); // place 390: Bodnant Garden, LL28 5RE var a390=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.234118, -3.800783), title: 'Bodnant Garden (LL28 5RE)', zIndex: 1 }); // place 391: Llanrwst, LL26 0PL var a391=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.136903, -3.797611), title: 'Llanrwst (LL26 0PL)', zIndex: 1 }); // place 392: Swallow Falls, LL24 0DW var a392=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.102780, -3.845856), title: 'Swallow Falls (LL24 0DW)', zIndex: 1 }); // place 393: Derby, DE24 8XL var a393=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.911413, -1.450747), title: 'Derby (DE24 8XL)', zIndex: 1 }); // place 394: Congleton, CW12 3DE var a394=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.157083, -2.192752), title: 'Congleton (CW12 3DE)', zIndex: 1 }); // place 395: Village Hotel Bury, BL9 7BQ var a395=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.590886, -2.275770), title: 'Village Hotel Bury (BL9 7BQ)', zIndex: 1 }); // place 396: Etruria near Stoke-on-Trent, ST1 5SN var a396=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.025188, -2.193134), title: 'Etruria near Stoke-on-Trent (ST1 5SN)', zIndex: 1 }); // place 397: Peak District, near Wincle, SK11 0QL var a397=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.203902, -2.089303), title: 'Peak District, near Wincle (SK11 0QL)', zIndex: 1 }); // place 398: Leek, ST13 6AB var a398=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.106595, -2.026450), title: 'Leek (ST13 6AB)', zIndex: 1 }); // place 399: Old Street London, N1 6DR var a399=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.527430, -0.087559), title: 'Old Street London (N1 6DR)', zIndex: 1 }); // place 400: University of Ulster, Rosebery Avenue, EC1R 4TF var a400=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.522517, -0.111449), title: 'University of Ulster, Rosebery Avenue (EC1R 4TF)', zIndex: 1 }); // place 401: Nottingham Castle Marina, NG7 1GX var a401=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.944753, -1.164416), title: 'Nottingham Castle Marina (NG7 1GX)', zIndex: 1 }); // place 402: Nottingham, NG1 4DB var a402=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.955005, -1.150868), title: 'Nottingham (NG1 4DB)', zIndex: 1 }); // place 403: Slough, SL1 1SG var a403=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.508730, -0.580548), title: 'Slough (SL1 1SG)', zIndex: 1 }); // place 404: Forest Hill, SE23 3UJ var a404=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.438431, -0.059640), title: 'Forest Hill (SE23 3UJ)', zIndex: 1 }); // place 405: Blackfriars, EC4Y 8EN var a405=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.512940, -0.105177), title: 'Blackfriars (EC4Y 8EN)', zIndex: 1 }); // place 406: Greenwich Foot Tunnel, SE10 9HT var a406=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.484979, -0.009751), title: 'Greenwich Foot Tunnel (SE10 9HT)', zIndex: 1 }); // place 407: Greenwich, SE10 8XJ var a407=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.477917, -0.001365), title: 'Greenwich (SE10 8XJ)', zIndex: 1 }); // place 408: St Paul`s Cathedral, EC4M 8AD var a408=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.513778, -0.098317), title: 'St Paul`s Cathedral (EC4M 8AD)', zIndex: 1 }); // place 409: Everyman Cinema Walton, KT12 1DN var a409=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.383871, -0.416722), title: 'Everyman Cinema Walton (KT12 1DN)', zIndex: 1 }); // place 410: Liverpool Cathedral, L1 7AZ var a410=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397519, -2.973204), title: 'Liverpool Cathedral (L1 7AZ)', zIndex: 1 }); // place 411: Penrhyn Castle, LL57 4HN var a411=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.225688, -4.094141), title: 'Penrhyn Castle (LL57 4HN)', zIndex: 1 }); // place 412: Rhos on Sea, LL28 4NG var a412=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.311387, -3.739248), title: 'Rhos on Sea (LL28 4NG)', zIndex: 1 }); // place 413: Benthall Hall, TF12 5RX var a413=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.620194, -2.506534), title: 'Benthall Hall (TF12 5RX)', zIndex: 1 }); // place 414: Bridgnorth, WV15 6BB var a414=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.533936, -2.417982), title: 'Bridgnorth (WV15 6BB)', zIndex: 1 }); // place 415: St Mary`s Church, WV15 6BB var a415=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.532593, -2.418721), title: 'St Mary`s Church (WV15 6BB)', zIndex: 1 }); // place 416: Shropshire Hills, SY6 6JG var a416=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.543259, -2.823001), title: 'Shropshire Hills (SY6 6JG)', zIndex: 1 }); // place 417: Shugborough Estate, ST17 0XB var a417=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.800434, -2.014066), title: 'Shugborough Estate (ST17 0XB)', zIndex: 1 }); // place 418: Four Mile Bridge, Anglesey, LL65 3HB var a418=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.274438, -4.580644), title: 'Four Mile Bridge, Anglesey (LL65 3HB)', zIndex: 1 }); // place 419: Trearddur Bay, Holyhead, LL65 2YR var a419=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.279124, -4.617032), title: 'Trearddur Bay, Holyhead (LL65 2YR)', zIndex: 1 }); // place 420: Porth dafarch, Holyhead, LL65 2LS var a420=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.287225, -4.650102), title: 'Porth dafarch, Holyhead (LL65 2LS)', zIndex: 1 }); // place 421: Ellins Tower, LL65 1YH var a421=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.304336, -4.693156), title: 'Ellins Tower (LL65 1YH)', zIndex: 1 }); // place 422: South Stack Lighthouse, LL65 1YH var a422=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.306893, -4.695377), title: 'South Stack Lighthouse (LL65 1YH)', zIndex: 1 }); // place 423: Holyhead, LL65 1UD var a423=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.310083, -4.632218), title: 'Holyhead (LL65 1UD)', zIndex: 1 }); // place 424: Amlwch Port, Anglesey, LL68 9DB var a424=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.415387, -4.333050), title: 'Amlwch Port, Anglesey (LL68 9DB)', zIndex: 1 }); // place 425: Lligwy Beach, Anglesey, LL72 8NN var a425=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.359734, -4.261370), title: 'Lligwy Beach, Anglesey (LL72 8NN)', zIndex: 1 }); // place 426: Wilmslow, SK9 1HY var a426=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.325403, -2.232704), title: 'Wilmslow (SK9 1HY)', zIndex: 1 }); // place 427: Lake District, Kirkstone Pass, LA22 9ET var a427=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.442869, -2.944239), title: 'Lake District, Kirkstone Pass (LA22 9ET)', zIndex: 1 }); // place 428: Lake District, Aira Force, CA11 0JS var a428=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.576327, -2.930969), title: 'Lake District, Aira Force (CA11 0JS)', zIndex: 1 }); // place 429: Robin Hood Airport, DN9 3RH var a429=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.481456, -1.011695), title: 'Robin Hood Airport (DN9 3RH)', zIndex: 1 }); // place 430: St Kew, PL30 3HB var a430=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.559313, -4.792932), title: 'St Kew (PL30 3HB)', zIndex: 1 }); // place 431: Polruan, PL23 1PZ var a431=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.327054, -4.636118), title: 'Polruan (PL23 1PZ)', zIndex: 1 }); // place 432: Secret Valley and Cave Dale, S33 8WQ var a432=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.336616, -1.778530), title: 'Secret Valley and Cave Dale (S33 8WQ)', zIndex: 1 }); // place 433: The Dream, Sutton Manor Woodland, WA9 4BB var a433=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.410207, -2.722198), title: 'The Dream, Sutton Manor Woodland (WA9 4BB)', zIndex: 1 }); // place 434: Surbiton, KT6 4PE var a434=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.392972, -0.304375), title: 'Surbiton (KT6 4PE)', zIndex: 1 }); // place 435: Nant-y-dugoed, Snowdonia, SY20 9HR var a435=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.703749, -3.611394), title: 'Nant-y-dugoed, Snowdonia (SY20 9HR)', zIndex: 1 }); // place 436: Machynlleth Bridge, Snowdonia, SY20 9JP var a436=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.600747, -3.856217), title: 'Machynlleth Bridge, Snowdonia (SY20 9JP)', zIndex: 1 }); // place 437: Aberdovey, LL35 0LL var a437=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.544252, -4.041377), title: 'Aberdovey (LL35 0LL)', zIndex: 1 }); // place 438: Tywyn, LL36 0DE var a438=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.580582, -4.099021), title: 'Tywyn (LL36 0DE)', zIndex: 1 }); // place 439: Llangelynin near Rhoslefain, Snowdonia, LL36 9ND var a439=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.642060, -4.112431), title: 'Llangelynin near Rhoslefain, Snowdonia (LL36 9ND)', zIndex: 1 }); // place 440: Penmaenpool Bridge, Snowdonia, LL40 1YD var a440=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.748821, -3.935413), title: 'Penmaenpool Bridge, Snowdonia (LL40 1YD)', zIndex: 1 }); // place 441: Knutsford, WA16 6EP var a441=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.306061, -2.374123), title: 'Knutsford (WA16 6EP)', zIndex: 1 }); // place 442: Maidenhead, SL6 1NT var a442=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.520360, -0.720987), title: 'Maidenhead (SL6 1NT)', zIndex: 1 }); // place 443: Loch Tulla Viewpoint, PA36 4AG var a443=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.567902, -4.754190), title: 'Loch Tulla Viewpoint (PA36 4AG)', zIndex: 1 }); // place 444: Glencoe Visitor Centre, PH49 4LA var a444=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.671102, -5.081623), title: 'Glencoe Visitor Centre (PH49 4LA)', zIndex: 1 }); // place 445: Glengarry Lodges, Great Glen Water Park, PH34 4EA var a445=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.026510, -4.830967), title: 'Glengarry Lodges, Great Glen Water Park (PH34 4EA)', zIndex: 1 }); // place 446: Eagle The Inn On The Water, PH34 4EA var a446=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.026903, -4.824549), title: 'Eagle The Inn On The Water (PH34 4EA)', zIndex: 1 }); // place 447: Inverness, IV2 3EG var a447=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.476365, -4.225921), title: 'Inverness (IV2 3EG)', zIndex: 1 }); // place 448: Aviemore, PH22 1PD var a448=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.189637, -3.829355), title: 'Aviemore (PH22 1PD)', zIndex: 1 }); // place 449: Laggan Dam, PH31 4AR var a449=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.890608, -4.674114), title: 'Laggan Dam (PH31 4AR)', zIndex: 1 }); // place 450: Commando Monument, Scotland, PH34 4EG var a450=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.898063, -4.944919), title: 'Commando Monument, Scotland (PH34 4EG)', zIndex: 1 }); // place 451: Loch Glascarnoch, IV23 2PQ var a451=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.700427, -4.811174), title: 'Loch Glascarnoch (IV23 2PQ)', zIndex: 1 }); // place 452: Ullapool, IV26 2UR var a452=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.894502, -5.162368), title: 'Ullapool (IV26 2UR)', zIndex: 1 }); // place 453: Ardmair, IV26 2TN var a453=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.930903, -5.196632), title: 'Ardmair (IV26 2TN)', zIndex: 1 }); // place 454: Ardvreck Castle, IV27 4HN var a454=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.169186, -4.994386), title: 'Ardvreck Castle (IV27 4HN)', zIndex: 1 }); // place 455: Achmelvich Beach, IV27 4JB var a455=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.170113, -5.306048), title: 'Achmelvich Beach (IV27 4JB)', zIndex: 1 }); // place 456: Loch Assynt, IV27 4HB var a456=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.186295, -5.060399), title: 'Loch Assynt (IV27 4HB)', zIndex: 1 }); // place 457: Kylesku Bridge, IV27 4HW var a457=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.257601, -5.026765), title: 'Kylesku Bridge (IV27 4HW)', zIndex: 1 }); // place 458: Scourie, IV27 4SX var a458=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.352312, -5.148540), title: 'Scourie (IV27 4SX)', zIndex: 1 }); // place 459: Kyle of Tongue, IV27 4XW var a459=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.496234, -4.409634), title: 'Kyle of Tongue (IV27 4XW)', zIndex: 1 }); // place 460: Loch Taebhaidh, IV27 4SL var a460=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.455069, -4.928888), title: 'Loch Taebhaidh (IV27 4SL)', zIndex: 1 }); // place 461: Dunnet Head, KW14 8XS var a461=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.670972, -3.377370), title: 'Dunnet Head (KW14 8XS)', zIndex: 1 }); // place 462: John o` Groats, KW1 4YR var a462=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(58.644006, -3.069982), title: 'John o` Groats (KW1 4YR)', zIndex: 1 }); // place 463: Loch Cluanie, IV63 7YW var a463=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.144082, -5.088177), title: 'Loch Cluanie (IV63 7YW)', zIndex: 1 }); // place 464: A87 near Shiel Bridge, IV40 8HU var a464=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.166412, -5.343195), title: 'A87 near Shiel Bridge (IV40 8HU)', zIndex: 1 }); // place 465: Eilean Donan Castle, IV40 8DX var a465=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.274330, -5.513774), title: 'Eilean Donan Castle (IV40 8DX)', zIndex: 1 }); // place 466: Corry, Isle fo Skye, IV49 9AW var a466=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.247939, -5.907473), title: 'Corry, Isle fo Skye (IV49 9AW)', zIndex: 1 }); // place 467: A87 near Blackhill, IV49 9AN var a467=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.264649, -6.090786), title: 'A87 near Blackhill (IV49 9AN)', zIndex: 1 }); // place 468: A863 near Ose, IV56 8FJ var a468=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.390422, -6.481073), title: 'A863 near Ose (IV56 8FJ)', zIndex: 1 }); // place 469: Dunvegan, IV55 8WA var a469=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.434583, -6.578981), title: 'Dunvegan (IV55 8WA)', zIndex: 1 }); // place 470: Dunvegan Castle, IV55 8WE var a470=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.450346, -6.592096), title: 'Dunvegan Castle (IV55 8WE)', zIndex: 1 }); // place 471: Drumnadrochit, IV63 6TU var a471=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.337659, -4.480351), title: 'Drumnadrochit (IV63 6TU)', zIndex: 1 }); // place 472: Loch Ness, IV63 6XR var a472=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.330837, -4.432356), title: 'Loch Ness (IV63 6XR)', zIndex: 1 }); // place 473: Fort Augustus, PH32 4DJ var a473=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(57.146673, -4.674774), title: 'Fort Augustus (PH32 4DJ)', zIndex: 1 }); // place 474: Stirling Castle, FK8 1EJ var a474=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(56.123323, -3.946955), title: 'Stirling Castle (FK8 1EJ)', zIndex: 1 }); // place 475: Mersey Vale Nature Park, SK4 2AP var a475=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.406696, -2.200441), title: 'Mersey Vale Nature Park (SK4 2AP)', zIndex: 1 }); // place 476: Brookvale Park Lake, B23 7SE var a476=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.517165, -1.864033), title: 'Brookvale Park Lake (B23 7SE)', zIndex: 1 }); // place 477: Tabernacle Street, EC2A 4DT var a477=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.523421, -0.086011), title: 'Tabernacle Street (EC2A 4DT)', zIndex: 1 }); // place 478: Speke Hall, L24 1XD var a478=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.337046, -2.873955), title: 'Speke Hall (L24 1XD)', zIndex: 1 }); // place 479: The Cherry Tree at Blackrod, BL6 5LA var a479=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.601778, -2.593541), title: 'The Cherry Tree at Blackrod (BL6 5LA)', zIndex: 1 }); // place 480: Longford Park, M21 9TA var a480=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.446555, -2.291873), title: 'Longford Park (M21 9TA)', zIndex: 1 }); // place 481: Chorlton Green, M21 9HS var a481=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.438658, -2.282691), title: 'Chorlton Green (M21 9HS)', zIndex: 1 }); // place 482: Fairholmes Visitor Centre, S33 0AQ var a482=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.400818, -1.741935), title: 'Fairholmes Visitor Centre (S33 0AQ)', zIndex: 1 }); // place 483: Upper Derwent Reservoir Viewpoint, S33 0AQ var a483=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.417092, -1.735968), title: 'Upper Derwent Reservoir Viewpoint (S33 0AQ)', zIndex: 1 }); // place 484: Salt Cellar, S33 0AQ var a484=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.399814, -1.706999), title: 'Salt Cellar (S33 0AQ)', zIndex: 1 }); // place 485: Wellington, Telford, TF1 1LU var a485=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.700553, -2.516995), title: 'Wellington, Telford (TF1 1LU)', zIndex: 1 }); // place 486: Wigan, WN2 1DA var a486=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.557141, -2.609182), title: 'Wigan (WN2 1DA)', zIndex: 1 }); // place 487: Haigh Hall, WN2 1PE var a487=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.571470, -2.609641), title: 'Haigh Hall (WN2 1PE)', zIndex: 1 }); // place 488: View over Clifton Suspension Bridge, BS8 3LT var a488=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.457019, -2.627747), title: 'View over Clifton Suspension Bridge (BS8 3LT)', zIndex: 1 }); // place 489: Gloucester, GL1 2EX var a489=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.862758, -2.250233), title: 'Gloucester (GL1 2EX)', zIndex: 1 }); // place 490: Wheatstone Inn, Gloucester, GL4 3HR var a490=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.868854, -2.197356), title: 'Wheatstone Inn, Gloucester (GL4 3HR)', zIndex: 1 }); // place 491: Hughenden Manor, HP14 4LA var a491=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.650618, -0.756797), title: 'Hughenden Manor (HP14 4LA)', zIndex: 1 }); // place 492: Cliveden, SL6 0JA var a492=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.561762, -0.687374), title: 'Cliveden (SL6 0JA)', zIndex: 1 }); // place 493: Russian Orthodox Church, W4 4ED var a493=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.489719, -0.275925), title: 'Russian Orthodox Church (W4 4ED)', zIndex: 1 }); // place 494: Galerie Bartoux, W1S 1SU var a494=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.513616, -0.146008), title: 'Galerie Bartoux (W1S 1SU)', zIndex: 1 }); // place 495: Embassy of the Republic of Austria, SW1X 8HU var a495=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.498558, -0.154532), title: 'Embassy of the Republic of Austria (SW1X 8HU)', zIndex: 1 }); // place 496: Lakeside Retail Park, RM20 2ZN var a496=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.487103, 0.281130), title: 'Lakeside Retail Park (RM20 2ZN)', zIndex: 1 }); // place 497: Grays, RM17 6EX var a497=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.476166, 0.340557), title: 'Grays (RM17 6EX)', zIndex: 1 }); // place 498: Sarah Bonnell School, E15 4LP var a498=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.543652, 0.008344), title: 'Sarah Bonnell School (E15 4LP)', zIndex: 1 }); // place 499: Mam Tor, SK23 0QT var a499=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.349244, -1.809643), title: 'Mam Tor (SK23 0QT)', zIndex: 1 }); // place 500: Winnersh Triangle, RG41 5TS var a500=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.437470, -0.889607), title: 'Winnersh Triangle (RG41 5TS)', zIndex: 1 }); // place 501: Malham Cove, BD23 4DA var a501=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.072900, -2.158322), title: 'Malham Cove (BD23 4DA)', zIndex: 1 }); // place 502: Gateshead Millennium Bridge, NE8 3BA var a502=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.969785, -1.599168), title: 'Gateshead Millennium Bridge (NE8 3BA)', zIndex: 1 }); // place 503: Durham, DH1 3AG var a503=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.775976, -1.573373), title: 'Durham (DH1 3AG)', zIndex: 1 }); // place 504: Durham Cathedral, DH1 3ES var a504=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.773559, -1.576870), title: 'Durham Cathedral (DH1 3ES)', zIndex: 1 }); // place 505: Angel of the North, NE9 7UA var a505=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.914095, -1.589421), title: 'Angel of the North (NE9 7UA)', zIndex: 1 }); // place 506: A66, Cumbria border, DL12 9RH var a506=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.506346, -2.163180), title: 'A66, Cumbria border (DL12 9RH)', zIndex: 1 }); // place 507: Buckatree Hall Hotel, TF6 5AL var a507=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.684252, -2.533686), title: 'Buckatree Hall Hotel (TF6 5AL)', zIndex: 1 }); // place 508: Tewkesbury Abbey, GL20 5SR var a508=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.990345, -2.160367), title: 'Tewkesbury Abbey (GL20 5SR)', zIndex: 1 }); // place 509: Stowe, MK18 5EQ var a509=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.030885, -1.018065), title: 'Stowe (MK18 5EQ)', zIndex: 1 }); // place 510: Liverpool John Lennon Airport, L24 1YD var a510=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.338151, -2.856025), title: 'Liverpool John Lennon Airport (L24 1YD)', zIndex: 1 }); // place 511: Eton Wick, SL4 6NW var a511=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.500545, -0.640407), title: 'Eton Wick (SL4 6NW)', zIndex: 1 }); // place 512: Battersea Park, SW11 4NJ var a512=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.481867, -0.158952), title: 'Battersea Park (SW11 4NJ)', zIndex: 1 }); // place 513: Bedroom Bar, EC2A 3AY var a513=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.526204, -0.079518), title: 'Bedroom Bar (EC2A 3AY)', zIndex: 1 }); // place 514: St James Church, Fletcher Moss Park, M20 2RQ var a514=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.409982, -2.232118), title: 'St James Church, Fletcher Moss Park (M20 2RQ)', zIndex: 1 }); // place 515: Fletcher Moss Park, M20 2RQ var a515=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.409153, -2.230001), title: 'Fletcher Moss Park (M20 2RQ)', zIndex: 1 }); // place 516: Prestatyn, LL19 7EY var a516=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.342443, -3.412388), title: 'Prestatyn (LL19 7EY)', zIndex: 1 }); // place 517: Dorney Lake, SL4 6QF var a517=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.487687, -0.653552), title: 'Dorney Lake (SL4 6QF)', zIndex: 1 }); // place 518: Greys Court, RG9 4PG var a518=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.545036, -0.956065), title: 'Greys Court (RG9 4PG)', zIndex: 1 }); // place 519: Nuffield Place, RG9 5RY var a519=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.585710, -1.021093), title: 'Nuffield Place (RG9 5RY)', zIndex: 1 }); // place 520: Hever Castle, TN8 7NG var a520=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.187164, 0.118881), title: 'Hever Castle (TN8 7NG)', zIndex: 1 }); // place 521: Canary Wharf, E14 5AJ var a521=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.504264, -0.019738), title: 'Canary Wharf (E14 5AJ)', zIndex: 1 }); // place 522: Gawthorpe Hall, BB12 8UA var a522=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.803038, -2.295148), title: 'Gawthorpe Hall (BB12 8UA)', zIndex: 1 }); // place 523: Parbold Hill Viewpoint, WN8 7TG var a523=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.590614, -2.744207), title: 'Parbold Hill Viewpoint (WN8 7TG)', zIndex: 1 }); // place 524: Rufford Old Hall, L40 1SG var a524=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.637635, -2.813401), title: 'Rufford Old Hall (L40 1SG)', zIndex: 1 }); // place 525: Folkestone, CT20 1TX var a525=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.078522, 1.186533), title: 'Folkestone (CT20 1TX)', zIndex: 1 }); // place 526: Saint Anselm`s Catholic School, CT1 3EN var a526=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.261933, 1.099250), title: 'Saint Anselm`s Catholic School (CT1 3EN)', zIndex: 1 }); // place 527: Gerrards Cross, SL9 7LP var a527=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.574198, -0.565862), title: 'Gerrards Cross (SL9 7LP)', zIndex: 1 }); // place 528: Chalfont St Giles, HP8 4UT var a528=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.640861, -0.561162), title: 'Chalfont St Giles (HP8 4UT)', zIndex: 1 }); // place 529: Stansted Airport, CM24 1PZ var a529=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.876960, 0.251787), title: 'Stansted Airport (CM24 1PZ)', zIndex: 1 }); // place 530: Saltford, BS31 3ET var a530=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.415266, -2.451505), title: 'Saltford (BS31 3ET)', zIndex: 1 }); // place 531: Bostall Woods near Plumstead Cemetery, SE2 0PB var a531=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.478222, 0.112539), title: 'Bostall Woods near Plumstead Cemetery (SE2 0PB)', zIndex: 1 }); // place 532: Barrow Wake Viewpoint, GL4 8JX var a532=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.836802, -2.101419), title: 'Barrow Wake Viewpoint (GL4 8JX)', zIndex: 1 }); // place 533: Cholmondeley Castle Gardens, SY14 8AH var a533=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.055437, -2.692786), title: 'Cholmondeley Castle Gardens (SY14 8AH)', zIndex: 1 }); // place 534: Dovestone Reservoir, OL3 7NE var a534=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.528475, -1.974829), title: 'Dovestone Reservoir (OL3 7NE)', zIndex: 1 }); // place 535: Buckstones above the Road, HD3 3FT var a535=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.618512, -1.974065), title: 'Buckstones above the Road (HD3 3FT)', zIndex: 1 }); // place 536: Lake District, Bench near Coniston Water, LA21 8BW var a536=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.333243, -3.098395), title: 'Lake District, Bench near Coniston Water (LA21 8BW)', zIndex: 1 }); // place 537: Lake District, Wrynose Pass, View over Little Langdale Valley, LA22 9PE var a537=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.419233, -3.104868), title: 'Lake District, Wrynose Pass, View over Little Langdale Valley (LA22 9PE)', zIndex: 1 }); // place 538: Lake District, Hardknott Pass, CA19 1TH var a538=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.401734, -3.190265), title: 'Lake District, Hardknott Pass (CA19 1TH)', zIndex: 1 }); // place 539: Bromley Cross, BL7 9LY var a539=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.614401, -2.410710), title: 'Bromley Cross (BL7 9LY)', zIndex: 1 }); // place 540: Jumbles Reservoir, BL2 4JP var a540=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.629692, -2.400164), title: 'Jumbles Reservoir (BL2 4JP)', zIndex: 1 }); // place 541: Entwistle, BL7 0NG var a541=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.654755, -2.414266), title: 'Entwistle (BL7 0NG)', zIndex: 1 }); // place 542: Wayoh Reservior, BL7 0PA var a542=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.645441, -2.399855), title: 'Wayoh Reservior (BL7 0PA)', zIndex: 1 }); // place 543: Jumbles Country Park, BL2 4JP var a543=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.622227, -2.400247), title: 'Jumbles Country Park (BL2 4JP)', zIndex: 1 }); // place 544: International House and St Katharine Docks, E1W 1UN var a544=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.508247, -0.073197), title: 'International House and St Katharine Docks (E1W 1UN)', zIndex: 1 }); // place 545: Gisburn Forest, BB7 4TS var a545=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.008450, -2.415099), title: 'Gisburn Forest (BB7 4TS)', zIndex: 1 }); // place 546: Cheltenham, GL50 1DB var a546=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.901146, -2.074808), title: 'Cheltenham (GL50 1DB)', zIndex: 1 }); // place 547: Edinburgh Airport, EH12 9DN var a547=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.948573, -3.363548), title: 'Edinburgh Airport (EH12 9DN)', zIndex: 1 }); // place 548: Bridgend, Best Western Heronston, CF35 5AW var a548=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.492067, -3.577107), title: 'Bridgend, Best Western Heronston (CF35 5AW)', zIndex: 1 }); // place 549: Bridgend, Hughes Park, CF31 3UL var a549=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.495735, -3.560235), title: 'Bridgend, Hughes Park (CF31 3UL)', zIndex: 1 }); // place 550: Porthcawl, CF36 5TS var a550=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.478639, -3.698492), title: 'Porthcawl (CF36 5TS)', zIndex: 1 }); // place 551: Kenfig, CF33 4PR var a551=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.522139, -3.726252), title: 'Kenfig (CF33 4PR)', zIndex: 1 }); // place 552: Ogmore-by-Sea, CF32 0PB var a552=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.466343, -3.640559), title: 'Ogmore-by-Sea (CF32 0PB)', zIndex: 1 }); // place 553: Nash Point, CF61 1ZH var a553=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.403979, -3.559367), title: 'Nash Point (CF61 1ZH)', zIndex: 1 }); // place 554: Bridgend, CF31 1EF var a554=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.507249, -3.578306), title: 'Bridgend (CF31 1EF)', zIndex: 1 }); // place 555: Long Wittenham, OX14 4QH var a555=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.640966, -1.209809), title: 'Long Wittenham (OX14 4QH)', zIndex: 1 }); // place 556: Silver Blades Solihull, B92 8JN var a556=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.445535, -1.785489), title: 'Silver Blades Solihull (B92 8JN)', zIndex: 1 }); // place 557: Catford, SE6 4SP var a557=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.445193, -0.022766), title: 'Catford (SE6 4SP)', zIndex: 1 }); // place 558: Huntington, CH3 6BB var a558=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.171285, -2.861402), title: 'Huntington (CH3 6BB)', zIndex: 1 }); // place 559: Kirkstall, Leeds, LS4 2DG var a559=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.804558, -1.581681), title: 'Kirkstall, Leeds (LS4 2DG)', zIndex: 1 }); // place 560: Harrogate, HG1 2QU var a560=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.992848, -1.541957), title: 'Harrogate (HG1 2QU)', zIndex: 1 }); // place 561: Hardcastle Crags Parking, HX7 7AL var a561=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.759659, -2.019437), title: 'Hardcastle Crags Parking (HX7 7AL)', zIndex: 1 }); // place 562: Hebden Beck Steps, HX7 7AL var a562=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.764470, -2.041935), title: 'Hebden Beck Steps (HX7 7AL)', zIndex: 1 }); // place 563: Gibson Mill of Hardcastle Crags, HX7 7AL var a563=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.765548, -2.042962), title: 'Gibson Mill of Hardcastle Crags (HX7 7AL)', zIndex: 1 }); // place 564: Angel, The York, N1 8EQ var a564=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.533796, -0.104971), title: 'Angel, The York (N1 8EQ)', zIndex: 1 }); // place 565: Sutton, SM1 1DE var a565=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.358867, -0.191127), title: 'Sutton (SM1 1DE)', zIndex: 1 }); // place 566: Acton Town, W3 8BH var a566=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.501527, -0.274854), title: 'Acton Town (W3 8BH)', zIndex: 1 }); // place 567: Charlton, Greenwich, SE7 7UB var a567=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.484002, 0.024571), title: 'Charlton, Greenwich (SE7 7UB)', zIndex: 1 }); // place 568: The Princess Of Wales, Greenwich, SE3 0RL var a568=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.469379, 0.010427), title: 'The Princess Of Wales, Greenwich (SE3 0RL)', zIndex: 1 }); // place 569: Waterloo Lake, Roundhay Park, LS8 2JL var a569=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.834797, -1.493543), title: 'Waterloo Lake, Roundhay Park (LS8 2JL)', zIndex: 1 }); // place 570: Congleton Industrial Estate, CW12 1PH var a570=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.172184, -2.202443), title: 'Congleton Industrial Estate (CW12 1PH)', zIndex: 1 }); // place 571: Queens Park, NW6 6NH var a571=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.535492, -0.205070), title: 'Queens Park (NW6 6NH)', zIndex: 1 }); // place 572: Newlands Corner, GU4 8SE var a572=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.232043, -0.507706), title: 'Newlands Corner (GU4 8SE)', zIndex: 1 }); // place 573: Kirkstall Abbey, LS5 3EH var a573=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.820159, -1.606818), title: 'Kirkstall Abbey (LS5 3EH)', zIndex: 1 }); // place 574: Roaches Lock Inn, Oldham, OL5 9BB var a574=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.525038, -2.031953), title: 'Roaches Lock Inn, Oldham (OL5 9BB)', zIndex: 1 }); // place 575: Cardiff, CF10 1FL var a575=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.477568, -3.175910), title: 'Cardiff (CF10 1FL)', zIndex: 1 }); // place 576: Cardiff Bay, CF10 5BU var a576=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.461918, -3.165582), title: 'Cardiff Bay (CF10 5BU)', zIndex: 1 }); // place 577: Dunraven Bay, CF32 0RT var a577=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.445981, -3.605496), title: 'Dunraven Bay (CF32 0RT)', zIndex: 1 }); // place 578: Angle, SA71 5AP var a578=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.684040, -5.088186), title: 'Angle (SA71 5AP)', zIndex: 1 }); // place 579: View over Carew Castle, SA70 8SN var a579=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.700067, -4.830149), title: 'View over Carew Castle (SA70 8SN)', zIndex: 1 }); // place 580: Fishguard, SA65 9ND var a580=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.999333, -4.969962), title: 'Fishguard (SA65 9ND)', zIndex: 1 }); // place 581: Newport, Pembrokeshire, SA42 0TA var a581=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.015959, -4.834272), title: 'Newport, Pembrokeshire (SA42 0TA)', zIndex: 1 }); // place 582: View over Pembrokeshire Coast, SA42 0QY var a582=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.998975, -4.855667), title: 'View over Pembrokeshire Coast (SA42 0QY)', zIndex: 1 }); // place 583: Ceibwr Bay, SA43 3BU var a583=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.077384, -4.764195), title: 'Ceibwr Bay (SA43 3BU)', zIndex: 1 }); // place 584: Cardigan, SA43 1HR var a584=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.081274, -4.661277), title: 'Cardigan (SA43 1HR)', zIndex: 1 }); // place 585: New Quay, SA45 9NR var a585=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.215920, -4.357344), title: 'New Quay (SA45 9NR)', zIndex: 1 }); // place 586: View over Scammonden Reservoir, HX4 0EA var a586=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.636086, -1.940499), title: 'View over Scammonden Reservoir (HX4 0EA)', zIndex: 1 }); // place 587: Thame, OX9 3DP var a587=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.747982, -0.978973), title: 'Thame (OX9 3DP)', zIndex: 1 }); // place 588: Arenig Fell Race, LL23 7PB var a588=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.940868, -3.718963), title: 'Arenig Fell Race (LL23 7PB)', zIndex: 1 }); // place 589: Llyn Arenig Fawr, LL23 7PB var a589=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.925230, -3.712567), title: 'Llyn Arenig Fawr (LL23 7PB)', zIndex: 1 }); // place 590: Afon Tryweryn, LL23 7NU var a590=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.948846, -3.667615), title: 'Afon Tryweryn (LL23 7NU)', zIndex: 1 }); // place 591: Liverpool Metropolitan Catholic Church, L3 5TQ var a591=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.404734, -2.968729), title: 'Liverpool Metropolitan Catholic Church (L3 5TQ)', zIndex: 1 }); // place 592: View over Hebden Bridge, HX7 8LL var a592=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.746563, -2.010111), title: 'View over Hebden Bridge (HX7 8LL)', zIndex: 1 }); // place 593: Sowerby Bridge, HX6 2AE var a593=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.709582, -1.907700), title: 'Sowerby Bridge (HX6 2AE)', zIndex: 1 }); // place 594: The King William, Turton, BL7 9AN var a594=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.626757, -2.410155), title: 'The King William, Turton (BL7 9AN)', zIndex: 1 }); // place 595: Darwen Tower, BB3 1JX var a595=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.689658, -2.488005), title: 'Darwen Tower (BB3 1JX)', zIndex: 1 }); // place 596: Ellenbrook, East Lancs, M28 1ES var a596=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.508423, -2.410202), title: 'Ellenbrook, East Lancs (M28 1ES)', zIndex: 1 }); // place 597: Atherton, M46 0DR var a597=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.523795, -2.493060), title: 'Atherton (M46 0DR)', zIndex: 1 }); // place 598: Clumber Park, S80 3AZ var a598=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.263621, -1.061172), title: 'Clumber Park (S80 3AZ)', zIndex: 1 }); // place 599: The Turnpike, HX6 4RH var a599=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.643852, -1.961486), title: 'The Turnpike (HX6 4RH)', zIndex: 1 }); // place 600: View over M62, HX4 0EB var a600=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.647631, -1.931028), title: 'View over M62 (HX4 0EB)', zIndex: 1 }); // place 601: Moses Gate Country Park, BL4 7QS var a601=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.557816, -2.391968), title: 'Moses Gate Country Park (BL4 7QS)', zIndex: 1 }); // place 602: Windsor Great Park, Totem Pole, TW20 0HN var a602=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.416639, -0.592120), title: 'Windsor Great Park, Totem Pole (TW20 0HN)', zIndex: 1 }); // place 603: Windsor Great Park, Lake Visitor Center, TW20 0HN var a603=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.410423, -0.592956), title: 'Windsor Great Park, Lake Visitor Center (TW20 0HN)', zIndex: 1 }); // place 604: The Bailiwick, TW20 0HN var a604=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.419931, -0.588186), title: 'The Bailiwick (TW20 0HN)', zIndex: 1 }); // place 605: A40 near Talybont-on-Usk, LD3 7JQ var a605=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.896375, -3.267836), title: 'A40 near Talybont-on-Usk (LD3 7JQ)', zIndex: 1 }); // place 606: Talybont Reservoir, LD3 7YS var a606=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.875821, -3.302634), title: 'Talybont Reservoir (LD3 7YS)', zIndex: 1 }); // place 607: Pontsticill Reservoir, CF48 2UR var a607=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.807480, -3.372582), title: 'Pontsticill Reservoir (CF48 2UR)', zIndex: 1 }); // place 608: View over Pontsticill Reservoir, CF48 2UP var a608=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.797787, -3.363433), title: 'View over Pontsticill Reservoir (CF48 2UP)', zIndex: 1 }); // place 609: Brecon Mountain Railway, Pant Station, CF48 2DD var a609=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.778055, -3.364619), title: 'Brecon Mountain Railway, Pant Station (CF48 2DD)', zIndex: 1 }); // place 610: Brecon Mountain Railway, Pontsticill Station, CF48 2DD var a610=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.800255, -3.360782), title: 'Brecon Mountain Railway, Pontsticill Station (CF48 2DD)', zIndex: 1 }); // place 611: Brecon Mountain Railway, Torpantau Station, CF48 2DD var a611=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.839958, -3.380810), title: 'Brecon Mountain Railway, Torpantau Station (CF48 2DD)', zIndex: 1 }); // place 612: Port Talbot, Aberavon Beach, SA12 6QP var a612=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.594491, -3.818754), title: 'Port Talbot, Aberavon Beach (SA12 6QP)', zIndex: 1 }); // place 613: Ogmore Valley, CF32 7RD var a613=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.640983, -3.551985), title: 'Ogmore Valley (CF32 7RD)', zIndex: 1 }); // place 614: View over Cwm-parc, CF42 6LL var a614=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.640128, -3.533933), title: 'View over Cwm-parc (CF42 6LL)', zIndex: 1 }); // place 615: A4107, view over A4061, SA13 3YW var a615=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.644928, -3.547270), title: 'A4107, view over A4061 (SA13 3YW)', zIndex: 1 }); // place 616: A470 near Pont ar Daf, LD3 8NL var a616=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.877569, -3.494487), title: 'A470 near Pont ar Daf (LD3 8NL)', zIndex: 1 }); // place 617: A4059 vew over A470, LD3 8NL var a617=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.846395, -3.470828), title: 'A4059 vew over A470 (LD3 8NL)', zIndex: 1 }); // place 618: Rhigos Viewpoint Carpark, CF44 9UF var a618=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.716392, -3.554260), title: 'Rhigos Viewpoint Carpark (CF44 9UF)', zIndex: 1 }); // place 619: A4061 approaching Blaenrhondda, CF42 5RY var a619=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.697450, -3.550422), title: 'A4061 approaching Blaenrhondda (CF42 5RY)', zIndex: 1 }); // place 620: Speedwell Cavern, S33 8WP var a620=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.341296, -1.792077), title: 'Speedwell Cavern (S33 8WP)', zIndex: 1 }); // place 621: Peak Cavern, S33 8WS var a621=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.340116, -1.778107), title: 'Peak Cavern (S33 8WS)', zIndex: 1 }); // place 622: View over Winnats Pass, S33 8WP var a622=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.341356, -1.795419), title: 'View over Winnats Pass (S33 8WP)', zIndex: 1 }); // place 623: Isle of Dogs, E14 9UW var a623=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.492766, -0.016215), title: 'Isle of Dogs (E14 9UW)', zIndex: 1 }); // place 624: Sherlock Holmes Museum, NW1 6XE var a624=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.523776, -0.158499), title: 'Sherlock Holmes Museum (NW1 6XE)', zIndex: 1 }); // place 625: King`s Cross Station, N1C 4TB var a625=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.531016, -0.124675), title: 'King`s Cross Station (N1C 4TB)', zIndex: 1 }); // place 626: Novello Theatre, WC2B 4LD var a626=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.512288, -0.119170), title: 'Novello Theatre (WC2B 4LD)', zIndex: 1 }); // place 627: Lake District, Wrynose Pass, little bridge, LA22 9PE var a627=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.419084, -3.080227), title: 'Lake District, Wrynose Pass, little bridge (LA22 9PE)', zIndex: 1 }); // place 628: Brookfield Hall, Westhoughton, BL5 3SP var a628=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.553989, -2.527101), title: 'Brookfield Hall, Westhoughton (BL5 3SP)', zIndex: 1 }); // place 629: Redfield, Bristol, BS5 9EN var a629=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.460426, -2.551344), title: 'Redfield, Bristol (BS5 9EN)', zIndex: 1 }); // place 630: Swansea, SA1 1JW var a630=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.613967, -3.943342), title: 'Swansea (SA1 1JW)', zIndex: 1 }); // place 631: University of Bath, BA2 7PD var a631=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.379803, -2.324649), title: 'University of Bath (BA2 7PD)', zIndex: 1 }); // place 632: Bristol Balloon Fiesta, BS41 9JN var a632=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.441887, -2.642546), title: 'Bristol Balloon Fiesta (BS41 9JN)', zIndex: 1 }); // place 633: Donnington, TF2 8HH var a633=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.724652, -2.435566), title: 'Donnington (TF2 8HH)', zIndex: 1 }); // place 634: Lilleshall Hall National Sports Centre, TF10 9AT var a634=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.727125, -2.373689), title: 'Lilleshall Hall National Sports Centre (TF10 9AT)', zIndex: 1 }); // place 635: Aston Clinton, HP22 5ND var a635=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.795895, -0.712811), title: 'Aston Clinton (HP22 5ND)', zIndex: 1 }); // place 636: Chesham, HP5 1BX var a636=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.707161, -0.611574), title: 'Chesham (HP5 1BX)', zIndex: 1 }); // place 637: Little Missenden, HP7 0RF var a637=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.680674, -0.661712), title: 'Little Missenden (HP7 0RF)', zIndex: 1 }); // place 638: Morden, SM4 5NE var a638=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.395794, -0.193137), title: 'Morden (SM4 5NE)', zIndex: 1 }); // place 639: Chorleywood, WD3 5LN var a639=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.657252, -0.507413), title: 'Chorleywood (WD3 5LN)', zIndex: 1 }); // place 640: Botany Bay, CT10 3LG var a640=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.390266, 1.432616), title: 'Botany Bay (CT10 3LG)', zIndex: 1 }); // place 641: Richmond, TW9 1TH var a641=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.458791, -0.308380), title: 'Richmond (TW9 1TH)', zIndex: 1 }); // place 642: The Old Orchard, UB9 6HJ var a642=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.602820, -0.490718), title: 'The Old Orchard (UB9 6HJ)', zIndex: 1 }); // place 643: The Coy Carp, UB9 6HZ var a643=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.609620, -0.499460), title: 'The Coy Carp (UB9 6HZ)', zIndex: 1 }); // place 644: Liverpool Street Station, EC2M 2QA var a644=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.519861, -0.081691), title: 'Liverpool Street Station (EC2M 2QA)', zIndex: 1 }); // place 645: Bethnal Green, E2 0ET var a645=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.527088, -0.055072), title: 'Bethnal Green (E2 0ET)', zIndex: 1 }); // place 646: Royal Opera House, WC2E 9DD var a646=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.512911, -0.122361), title: 'Royal Opera House (WC2E 9DD)', zIndex: 1 }); // place 647: Parliament Hill Viewpoint, NW5 1QR var a647=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.559646, -0.159663), title: 'Parliament Hill Viewpoint (NW5 1QR)', zIndex: 1 }); // place 648: North Greenwich Pier, SE10 0DX var a648=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.502138, 0.009175), title: 'North Greenwich Pier (SE10 0DX)', zIndex: 1 }); // place 649: Crystal Palace Park, SE19 2BF var a649=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.418709, -0.072571), title: 'Crystal Palace Park (SE19 2BF)', zIndex: 1 }); // place 650: Dulwich Park, SE21 7BQ var a650=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.445580, -0.079078), title: 'Dulwich Park (SE21 7BQ)', zIndex: 1 }); // place 651: Spike Island, WA8 0DR var a651=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.352662, -2.730671), title: 'Spike Island (WA8 0DR)', zIndex: 1 }); // place 652: Amalthea Greek Cafe, LS16 6AA var a652=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.851443, -1.592683), title: 'Amalthea Greek Cafe (LS16 6AA)', zIndex: 1 }); // place 653: Cotswold Lodge Hotel, Oxford, OX2 6JP var a653=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.765329, -1.259931), title: 'Cotswold Lodge Hotel, Oxford (OX2 6JP)', zIndex: 1 }); // place 654: Penwortham, PR1 0PB var a654=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.740648, -2.739784), title: 'Penwortham (PR1 0PB)', zIndex: 1 }); // place 655: Ponteland, Newcastle upon Tyne, NE20 0DH var a655=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.076269, -1.798492), title: 'Ponteland, Newcastle upon Tyne (NE20 0DH)', zIndex: 1 }); // place 656: Planet Ice Widnes, WA8 0TA var a656=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.361618, -2.724263), title: 'Planet Ice Widnes (WA8 0TA)', zIndex: 1 }); // place 657: Booth Wood, view over damb, HX6 4RQ var a657=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.644901, -1.953331), title: 'Booth Wood, view over damb (HX6 4RQ)', zIndex: 1 }); // place 658: Chatham, ME1 1DU var a658=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.381346, 0.511377), title: 'Chatham (ME1 1DU)', zIndex: 1 }); // place 659: Durdle Door, BH20 5PU var a659=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.621999, -2.275829), title: 'Durdle Door (BH20 5PU)', zIndex: 1 }); // place 660: Bo Peep Farm, OX17 3NP var a660=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.009797, -1.300378), title: 'Bo Peep Farm (OX17 3NP)', zIndex: 1 }); // place 661: Tynemouth Pier Lighthouse, NE30 4BZ var a661=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.014629, -1.403086), title: 'Tynemouth Pier Lighthouse (NE30 4BZ)', zIndex: 1 }); // place 662: Riley`s Fish Shack, NE30 4EB var a662=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.018631, -1.420453), title: 'Riley`s Fish Shack (NE30 4EB)', zIndex: 1 }); // place 663: Yr Ocar, LL57 4DQ var a663=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.171865, -4.079778), title: 'Yr Ocar (LL57 4DQ)', zIndex: 1 }); // place 664: View over Penrhyn Quarry, LL57 4YS var a664=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.173019, -4.071224), title: 'View over Penrhyn Quarry (LL57 4YS)', zIndex: 1 }); // place 665: View over Llyn Idwal, LL57 3LZ var a665=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.110179, -4.027564), title: 'View over Llyn Idwal (LL57 3LZ)', zIndex: 1 }); // place 666: Llyn Idwal, LL57 3LZ var a666=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.111589, -4.028320), title: 'Llyn Idwal (LL57 3LZ)', zIndex: 1 }); // place 667: Slaithwaite, HD7 5HL var a667=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.616847, -1.880505), title: 'Slaithwaite (HD7 5HL)', zIndex: 1 }); // place 668: Lower Royal George Inn, HD3 3FW var a668=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.643167, -1.896245), title: 'Lower Royal George Inn (HD3 3FW)', zIndex: 1 }); // place 669: Blackburn Canal - Rishton, BB1 4EB var a669=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.771741, -2.422710), title: 'Blackburn Canal - Rishton (BB1 4EB)', zIndex: 1 }); // place 670: The Woolpack Inn, Hardknott Pass, CA19 1TH var a670=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.397965, -3.248511), title: 'The Woolpack Inn, Hardknott Pass (CA19 1TH)', zIndex: 1 }); // place 671: Seven Sisters Car Park, BN20 7YA var a671=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.741720, 0.253481), title: 'Seven Sisters Car Park (BN20 7YA)', zIndex: 1 }); // place 672: Willesden Green, NW2 4AA var a672=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.553367, -0.217781), title: 'Willesden Green (NW2 4AA)', zIndex: 1 }); // place 673: View over Kingsgate Bay, CT10 3LT var a673=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.386331, 1.441465), title: 'View over Kingsgate Bay (CT10 3LT)', zIndex: 1 }); // place 674: Amersham Station, HP7 0AD var a674=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.674222, -0.607329), title: 'Amersham Station (HP7 0AD)', zIndex: 1 }); // place 675: Nottingham Waterfront, NG1 7EH var a675=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.948035, -1.149048), title: 'Nottingham Waterfront (NG1 7EH)', zIndex: 1 }); // place 676: Belmont Reservoir, BL7 8BD var a676=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.644183, -2.496579), title: 'Belmont Reservoir (BL7 8BD)', zIndex: 1 }); // place 677: Crushing Cirlce, S33 8WA var a677=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.348091, -1.798819), title: 'Crushing Cirlce (S33 8WA)', zIndex: 1 }); // place 678: Bingley Three-Rise Locks, BD16 4BN var a678=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.851489, -1.838336), title: 'Bingley Three-Rise Locks (BD16 4BN)', zIndex: 1 }); // place 679: Bingley Five-Rise Locks, BD16 4DS var a679=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.856315, -1.838338), title: 'Bingley Five-Rise Locks (BD16 4DS)', zIndex: 1 }); // place 680: Bingley, BD16 2RH var a680=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.850667, -1.841373), title: 'Bingley (BD16 2RH)', zIndex: 1 }); // place 681: Porth Eirias, LL29 8HH var a681=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.295709, -3.716064), title: 'Porth Eirias (LL29 8HH)', zIndex: 1 }); // place 682: Cemaes - Traeth Mawr, LL67 0NH var a682=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.414172, -4.450085), title: 'Cemaes - Traeth Mawr (LL67 0NH)', zIndex: 1 }); // place 683: Burnley Canal, BB11 1JG var a683=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.786717, -2.246491), title: 'Burnley Canal (BB11 1JG)', zIndex: 1 }); // place 684: Wigan Pier, WN3 4EU var a684=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.541905, -2.639393), title: 'Wigan Pier (WN3 4EU)', zIndex: 1 }); // place 685: Peak Forest Canal - Romiley, SK6 4DX var a685=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.410498, -2.081918), title: 'Peak Forest Canal - Romiley (SK6 4DX)', zIndex: 1 }); // place 686: Brabyns Park, SK6 5EX var a686=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.402764, -2.056811), title: 'Brabyns Park (SK6 5EX)', zIndex: 1 }); // place 687: Aber Falls, LL33 0LP var a687=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.210884, -3.995819), title: 'Aber Falls (LL33 0LP)', zIndex: 1 }); // place 688: Llanfairfechan Promenade, LL33 0DA var a688=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.259233, -3.983339), title: 'Llanfairfechan Promenade (LL33 0DA)', zIndex: 1 }); // place 689: Penmaenmawr Beach Car Park, LL34 6ND var a689=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.268377, -3.936319), title: 'Penmaenmawr Beach Car Park (LL34 6ND)', zIndex: 1 }); // place 690: Otley, LS21 3AQ var a690=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.905433, -1.693494), title: 'Otley (LS21 3AQ)', zIndex: 1 }); // place 691: Chevin Forest Park, LS21 3DG var a691=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.893557, -1.692618), title: 'Chevin Forest Park (LS21 3DG)', zIndex: 1 }); // place 692: Harewood House, LS17 9LE var a692=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.896463, -1.527073), title: 'Harewood House (LS17 9LE)', zIndex: 1 }); // place 693: Danson House, DA6 8HL var a693=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.456401, 0.118499), title: 'Danson House (DA6 8HL)', zIndex: 1 }); // place 694: Slade Green, DA8 2BT var a694=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.472085, 0.190353), title: 'Slade Green (DA8 2BT)', zIndex: 1 }); // place 695: Trafalgar Tavern, SE10 9NW var a695=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.484566, -0.004457), title: 'Trafalgar Tavern (SE10 9NW)', zIndex: 1 }); // place 696: Bluewater Nature Trail, DA9 9SU var a696=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.441786, 0.265661), title: 'Bluewater Nature Trail (DA9 9SU)', zIndex: 1 }); // place 697: Bradwell, Hope Valley, S33 9HJ var a697=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.326062, -1.739663), title: 'Bradwell, Hope Valley (S33 9HJ)', zIndex: 1 }); // place 698: Parsonage Gardens, M20 2RQ var a698=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.410753, -2.232197), title: 'Parsonage Gardens (M20 2RQ)', zIndex: 1 }); // place 699: Simon`s Bridge, M20 2RQ var a699=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.412553, -2.242211), title: 'Simon`s Bridge (M20 2RQ)', zIndex: 1 }); // place 700: St Anns Bethesda, LL57 4BQ var a700=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.175448, -4.080267), title: 'St Anns Bethesda (LL57 4BQ)', zIndex: 1 }); // place 701: Carneddi Bethesda, LL57 3NG var a701=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.181514, -4.061219), title: 'Carneddi Bethesda (LL57 3NG)', zIndex: 1 }); // place 702: 20 Stories Restaurant, M3 3EB var a702=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.479153, -2.252247), title: '20 Stories Restaurant (M3 3EB)', zIndex: 1 }); // place 703: Ego at The Fox Cub, Little Hoole, PR4 5JT var a703=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.707755, -2.793902), title: 'Ego at The Fox Cub, Little Hoole (PR4 5JT)', zIndex: 1 }); // place 704: Singer Hall Coventry, CV1 5NS var a704=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.411262, -1.500146), title: 'Singer Hall Coventry (CV1 5NS)', zIndex: 1 }); // place 705: Castle Park, Bristol, BS1 3AF var a705=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.454856, -2.588982), title: 'Castle Park, Bristol (BS1 3AF)', zIndex: 1 }); // place 706: Dnipro, M8 8XB var a706=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.504375, -2.231204), title: 'Dnipro (M8 8XB)', zIndex: 1 }); // place 707: Minikin Paint a Pot, M33 7HF var a707=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.427517, -2.323529), title: 'Minikin Paint a Pot (M33 7HF)', zIndex: 1 }); // place 708: Altrincham Little Theatre, WA14 2ED var a708=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.383405, -2.351165), title: 'Altrincham Little Theatre (WA14 2ED)', zIndex: 1 }); // place 709: Atherton Community School, M46 0AY var a709=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.521544, -2.492576), title: 'Atherton Community School (M46 0AY)', zIndex: 1 }); // place 710: Cosmo Sheffield, S1 2PT var a710=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.379109, -1.468554), title: 'Cosmo Sheffield (S1 2PT)', zIndex: 1 }); // place 711: Sale Water Park, M33 2LX var a711=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.431701, -2.301064), title: 'Sale Water Park (M33 2LX)', zIndex: 1 }); // place 712: Glen Mary Car Park, LA21 8DP var a712=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.389794, -3.046540), title: 'Glen Mary Car Park (LA21 8DP)', zIndex: 1 }); // place 713: Holme Fell, LA21 8DP var a713=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.397348, -3.053586), title: 'Holme Fell (LA21 8DP)', zIndex: 1 }); // place 714: Hodge Close, LA21 8DJ var a714=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.407546, -3.053851), title: 'Hodge Close (LA21 8DJ)', zIndex: 1 }); // place 715: Cathedral Cave, LA22 9NT var a715=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.416333, -3.058580), title: 'Cathedral Cave (LA22 9NT)', zIndex: 1 }); // place 716: Black Crag, LA21 8DP var a716=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.404250, -3.019758), title: 'Black Crag (LA21 8DP)', zIndex: 1 }); // place 717: Iron Keld, LA21 8DP var a717=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.400586, -3.023220), title: 'Iron Keld (LA21 8DP)', zIndex: 1 }); // place 718: Tarn Hows, LA21 8DP var a718=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.388790, -3.037952), title: 'Tarn Hows (LA21 8DP)', zIndex: 1 }); // place 719: Great John Street Hotel, M3 4FD var a719=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.478377, -2.254267), title: 'Great John Street Hotel (M3 4FD)', zIndex: 1 }); // place 720: Newcastle Airport, NE13 8BZ var a720=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.038181, -1.710349), title: 'Newcastle Airport (NE13 8BZ)', zIndex: 1 }); // place 721: Peak District, Holme Moss, HD9 2QH var a721=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.531746, -1.853752), title: 'Peak District, Holme Moss (HD9 2QH)', zIndex: 1 }); // place 722: Infinity Pool, Snowdonia, LL55 4UL var a722=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.089207, -4.060500), title: 'Infinity Pool, Snowdonia (LL55 4UL)', zIndex: 1 }); // place 723: Porthmadog, LL49 9LP var a723=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.925304, -4.129403), title: 'Porthmadog (LL49 9LP)', zIndex: 1 }); // place 724: Conwy Castle, LL32 8LD var a724=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.280023, -3.825133), title: 'Conwy Castle (LL32 8LD)', zIndex: 1 }); // place 725: Delamere Forest, WA6 6NZ var a725=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.232675, -2.668527), title: 'Delamere Forest (WA6 6NZ)', zIndex: 1 }); // place 726: Vale Royal Abbey Arms, CW8 2HB var a726=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.212951, -2.655051), title: 'Vale Royal Abbey Arms (CW8 2HB)', zIndex: 1 }); // place 727: Morfa Nefyn, LL53 6DA var a727=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.936831, -4.549828), title: 'Morfa Nefyn (LL53 6DA)', zIndex: 1 }); // place 728: Nefyn, LL53 6DU var a728=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.935551, -4.520462), title: 'Nefyn (LL53 6DU)', zIndex: 1 }); // place 729: Criccieth, LL52 0HL var a729=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.918449, -4.230004), title: 'Criccieth (LL52 0HL)', zIndex: 1 }); // place 730: A498 near Beddgelert, LL55 4YE var a730=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.000283, -4.098360), title: 'A498 near Beddgelert (LL55 4YE)', zIndex: 1 }); // place 731: Beddgelert, LL55 4YB var a731=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.011843, -4.102729), title: 'Beddgelert (LL55 4YB)', zIndex: 1 }); // place 732: Ettiley Heath near Sandbach, CW11 3TU var a732=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.138737, -2.403158), title: 'Ettiley Heath near Sandbach (CW11 3TU)', zIndex: 1 }); // place 733: Moston Green near Sandbach, CW11 3PD var a733=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.143377, -2.405524), title: 'Moston Green near Sandbach (CW11 3PD)', zIndex: 1 }); // place 734: Saint James Mount and Gardens, L1 7AZ var a734=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397059, -2.972029), title: 'Saint James Mount and Gardens (L1 7AZ)', zIndex: 1 }); // place 735: Rickmansworth Aquadrome, WD3 1NB var a735=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.633912, -0.481471), title: 'Rickmansworth Aquadrome (WD3 1NB)', zIndex: 1 }); // place 736: Lowndes Park Chesham, HP5 1EP var a736=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.705245, -0.616284), title: 'Lowndes Park Chesham (HP5 1EP)', zIndex: 1 }); // place 737: Beaconsfield, HP9 2JH var a737=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.601867, -0.637315), title: 'Beaconsfield (HP9 2JH)', zIndex: 1 }); // place 738: Marston Field Chesham, HP5 2PR var a738=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.722203, -0.623096), title: 'Marston Field Chesham (HP5 2PR)', zIndex: 1 }); // place 739: Cranage, CW4 8HQ var a739=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.219815, -2.377784), title: 'Cranage (CW4 8HQ)', zIndex: 1 }); // place 740: Chirk, LL14 5HD var a740=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.931239, -3.054638), title: 'Chirk (LL14 5HD)', zIndex: 1 }); // place 741: Chirk Aqueduct, LL14 5DA var a741=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.928312, -3.062108), title: 'Chirk Aqueduct (LL14 5DA)', zIndex: 1 }); // place 742: Poachers Chirk, LL14 5DL var a742=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.924190, -3.045549), title: 'Poachers Chirk (LL14 5DL)', zIndex: 1 }); // place 743: Pistyll Waterfall, SY10 0BZ var a743=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.855003, -3.378449), title: 'Pistyll Waterfall (SY10 0BZ)', zIndex: 1 }); // place 744: Anderton Boat Lift, CW9 6FW var a744=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.273565, -2.530380), title: 'Anderton Boat Lift (CW9 6FW)', zIndex: 1 }); // place 745: Holland Park, W11 4DL var a745=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.509992, -0.214291), title: 'Holland Park (W11 4DL)', zIndex: 1 }); // place 746: Hemel Hempstead, HP1 1JQ var a746=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.748678, -0.474314), title: 'Hemel Hempstead (HP1 1JQ)', zIndex: 1 }); // place 747: Eastney Beach, Portsmouth, PO4 9NB var a747=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.783951, -1.051265), title: 'Eastney Beach, Portsmouth (PO4 9NB)', zIndex: 1 }); // place 748: Gunwharf Quays, Portsmouth, PO1 3TD var a748=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.795853, -1.108164), title: 'Gunwharf Quays, Portsmouth (PO1 3TD)', zIndex: 1 }); // place 749: Westcliff-on-Sea, SS0 8JH var a749=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.536616, 0.677200), title: 'Westcliff-on-Sea (SS0 8JH)', zIndex: 1 }); // place 750: Leigh-on-Sea, SS9 2EN var a750=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.540427, 0.648935), title: 'Leigh-on-Sea (SS9 2EN)', zIndex: 1 }); // place 751: The Chiltern Hospital, HP16 0EN var a751=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng( 51.690448, -0.694335), title: 'The Chiltern Hospital (HP16 0EN)', zIndex: 1 }); // place 752: Hinchley Wood, KT7 0EF var a752=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.380117, -0.340422), title: 'Hinchley Wood (KT7 0EF)', zIndex: 1 }); // place 753: Gerrards Cross, SL9 8PE var a753=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.587877, -0.553672), title: 'Gerrards Cross (SL9 8PE)', zIndex: 1 }); // place 754: Orassy, E14 8ED var a754=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.511147, -0.025634), title: 'Orassy (E14 8ED)', zIndex: 1 }); // place 755: Chesham Underground Station, HP5 1BP var a755=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.704897, -0.611115), title: 'Chesham Underground Station (HP5 1BP)', zIndex: 1 }); // place 756: Wetton, DE6 2AF var a756=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.093539, -1.838616), title: 'Wetton (DE6 2AF)', zIndex: 1 }); // place 757: Hinchley Wood Train Station, KT10 0SR var a757=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.375613, -0.340352), title: 'Hinchley Wood Train Station (KT10 0SR)', zIndex: 1 }); // place 758: Notting Hill, W10 6LA var a758=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.519520, -0.211370), title: 'Notting Hill (W10 6LA)', zIndex: 1 }); // place 759: Portobello, W11 2DZ var a759=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.514514, -0.204199), title: 'Portobello (W11 2DZ)', zIndex: 1 }); // place 760: Consulate of Ukraine, W11 2PL var a760=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.512245, -0.202350), title: 'Consulate of Ukraine (W11 2PL)', zIndex: 1 }); // place 761: Field near A40, UB9 4HB var a761=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.558427, -0.511007), title: 'Field near A40 (UB9 4HB)', zIndex: 1 }); // place 762: Classic Bridge at Chiswick Park, W4 3ER var a762=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.484724, -0.262642), title: 'Classic Bridge at Chiswick Park (W4 3ER)', zIndex: 1 }); // place 763: Best Western Mornington Hotel, W2 3LG var a763=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.512185, -0.178190), title: 'Best Western Mornington Hotel (W2 3LG)', zIndex: 1 }); // place 764: Owler Tor, S32 1DA var a764=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.316734, -1.620424), title: 'Owler Tor (S32 1DA)', zIndex: 1 }); // place 765: Lawrencefield, S32 1DA var a765=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.314810, -1.627734), title: 'Lawrencefield (S32 1DA)', zIndex: 1 }); // place 766: Richmond Park, TW10 5HR var a766=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.439418, -0.267725), title: 'Richmond Park (TW10 5HR)', zIndex: 1 }); // place 767: Herne Bay, CT6 5JP var a767=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.372256, 1.121760), title: 'Herne Bay (CT6 5JP)', zIndex: 1 }); // place 768: Castle Combe Car Park, SN14 7HH var a768=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.497804, -2.224149), title: 'Castle Combe Car Park (SN14 7HH)', zIndex: 1 }); // place 769: Castle Combe, Cotswolds, SN14 7HU var a769=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.493421, -2.228995), title: 'Castle Combe, Cotswolds (SN14 7HU)', zIndex: 1 }); // place 770: Castle Combe West Street, Cotswolds, SN14 7HP var a770=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.493572, -2.230320), title: 'Castle Combe West Street, Cotswolds (SN14 7HP)', zIndex: 1 }); // place 771: Castle Combe Manor House, Cotswolds, SN14 7HR var a771=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.493491, -2.231895), title: 'Castle Combe Manor House, Cotswolds (SN14 7HR)', zIndex: 1 }); // place 772: Castle Combe Gardens, Cotswolds, SN14 7HR var a772=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.494083, -2.231348), title: 'Castle Combe Gardens, Cotswolds (SN14 7HR)', zIndex: 1 }); // place 773: Castle Combe Water Stream, Cotswolds, SN14 7HR var a773=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.492599, -2.230458), title: 'Castle Combe Water Stream, Cotswolds (SN14 7HR)', zIndex: 1 }); // place 774: Castle Combe Bridge, Cotswolds, SN14 7HX var a774=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.492121, -2.228926), title: 'Castle Combe Bridge, Cotswolds (SN14 7HX)', zIndex: 1 }); // place 775: Lacock, SN15 2LG var a775=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.414443, -2.120171), title: 'Lacock (SN15 2LG)', zIndex: 1 }); // place 776: Great Comp Garden, TN15 8QS var a776=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.287036, 0.338681), title: 'Great Comp Garden (TN15 8QS)', zIndex: 1 }); // place 777: Alexandra Park Viewpoint, Bath, BA2 4RQ var a777=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.374791, -2.360509), title: 'Alexandra Park Viewpoint, Bath (BA2 4RQ)', zIndex: 1 }); // place 778: Burford, Cotswolds, OX18 4QA var a778=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.808119, -1.636456), title: 'Burford, Cotswolds (OX18 4QA)', zIndex: 1 }); // place 779: Bibury, Cotswolds, GL7 5NP var a779=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.758547, -1.834625), title: 'Bibury, Cotswolds (GL7 5NP)', zIndex: 1 }); // place 780: Cirencester, GL7 1FN var a780=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.717114, -1.967697), title: 'Cirencester (GL7 1FN)', zIndex: 1 }); // place 781: Roman Catholic Church, Bristol, BS16 1NQ var a781=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.494403, -2.526395), title: 'Roman Catholic Church, Bristol (BS16 1NQ)', zIndex: 1 }); // place 782: Circus Lane, Edinburgh, EH3 6SU var a782=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.958093, -3.205177), title: 'Circus Lane, Edinburgh (EH3 6SU)', zIndex: 1 }); // place 783: Dean Village, EH4 3BJ var a783=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.952340, -3.216689), title: 'Dean Village (EH4 3BJ)', zIndex: 1 }); // place 784: View over Royal Yacht Britannia, EH6 6JJ var a784=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.982347, -3.175917), title: 'View over Royal Yacht Britannia (EH6 6JJ)', zIndex: 1 }); // place 785: Fisherrow Harbour, Musselburgh, EH21 6DH var a785=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.946208, -3.068032), title: 'Fisherrow Harbour, Musselburgh (EH21 6DH)', zIndex: 1 }); // place 786: Morrisons Haven, Prestonpans, EH32 9RX var a786=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.952817, -3.009964), title: 'Morrisons Haven, Prestonpans (EH32 9RX)', zIndex: 1 }); // place 787: Hampton Court Park, KT1 4AD var a787=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.400009, -0.328915), title: 'Hampton Court Park (KT1 4AD)', zIndex: 1 }); // place 788: Isabella Plantation, Richmond Park, TW10 5HP var a788=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.431500, -0.276800), title: 'Isabella Plantation, Richmond Park (TW10 5HP)', zIndex: 1 }); // place 789: Crompton Moor, OL2 8LX var a789=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.586886, -2.075460), title: 'Crompton Moor (OL2 8LX)', zIndex: 1 }); // place 790: Alverstoke, PO12 2LA var a790=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.786084, -1.149773), title: 'Alverstoke (PO12 2LA)', zIndex: 1 }); // place 791: Fareham, PO16 0BP var a791=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.851795, -1.174029), title: 'Fareham (PO16 0BP)', zIndex: 1 }); // place 792: Haslar Peninsula, PO12 2NJ var a792=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.773453, -1.141163), title: 'Haslar Peninsula (PO12 2NJ)', zIndex: 1 }); // place 793: Southsea, PO5 3PA var a793=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.778073, -1.087779), title: 'Southsea (PO5 3PA)', zIndex: 1 }); // place 794: Southsea Beach, PO4 0SP var a794=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.779133, -1.075401), title: 'Southsea Beach (PO4 0SP)', zIndex: 1 }); // place 795: Pokesdown, BH5 2HG var a795=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.728475, -1.821065), title: 'Pokesdown (BH5 2HG)', zIndex: 1 }); // place 796: Sandbanks Beach, BH13 7QQ var a796=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.687989, -1.937715), title: 'Sandbanks Beach (BH13 7QQ)', zIndex: 1 }); // place 797: View over Bliss Tweed Mill, OX7 5XW var a797=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.938921, -1.561903), title: 'View over Bliss Tweed Mill (OX7 5XW)', zIndex: 1 }); // place 798: Moreton-in-Marsh, GL56 0AF var a798=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.990771, -1.703148), title: 'Moreton-in-Marsh (GL56 0AF)', zIndex: 1 }); // place 799: Days Inn Strensham, WR8 0BZ var a799=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.065370, -2.157082), title: 'Days Inn Strensham (WR8 0BZ)', zIndex: 1 }); // place 800: Broadway Tower, WR12 7LB var a800=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.024261, -1.835921), title: 'Broadway Tower (WR12 7LB)', zIndex: 1 }); // place 801: Chipping Campden, GL55 6AJ var a801=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.050705, -1.780772), title: 'Chipping Campden (GL55 6AJ)', zIndex: 1 }); // place 802: Stow-on-the-Wold, GL54 1HH var a802=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.930159, -1.723958), title: 'Stow-on-the-Wold (GL54 1HH)', zIndex: 1 }); // place 803: Minchinhampton, GL6 9BN var a803=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.705372, -2.186228), title: 'Minchinhampton (GL6 9BN)', zIndex: 1 }); // place 804: Minchinhampton Common 1, GL6 9JU var a804=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.708771, -2.183361), title: 'Minchinhampton Common 1 (GL6 9JU)', zIndex: 1 }); // place 805: Minchinhampton Common 2, GL6 9EE var a805=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.707634, -2.200920), title: 'Minchinhampton Common 2 (GL6 9EE)', zIndex: 1 }); // place 806: View over Walshaw Lodge, HX7 7AL var a806=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.777692, -2.041057), title: 'View over Walshaw Lodge (HX7 7AL)', zIndex: 1 }); // place 807: Lumb Hole Falls, HX7 7AL var a807=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.778943, -2.013055), title: 'Lumb Hole Falls (HX7 7AL)', zIndex: 1 }); // place 808: Bridgnorth Town Park, WV15 6BB var a808=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.531494, -2.418994), title: 'Bridgnorth Town Park (WV15 6BB)', zIndex: 1 }); // place 809: Smoke Stop BBQ, SY5 9LH var a809=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.713238, -2.875723), title: 'Smoke Stop BBQ (SY5 9LH)', zIndex: 1 }); // place 810: A4120, SY23 4NF var a810=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.386936, -3.924011), title: 'A4120 (SY23 4NF)', zIndex: 1 }); // place 811: Aberystwyth Cliff Railway, SY23 2DN var a811=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.425003, -4.082266), title: 'Aberystwyth Cliff Railway (SY23 2DN)', zIndex: 1 }); // place 812: Field near A4120, SY23 4EJ var a812=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.392905, -3.986838), title: 'Field near A4120 (SY23 4EJ)', zIndex: 1 }); // place 813: Devil`s Bridge Train Station, SY23 3JL var a813=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.376194, -3.854815), title: 'Devil`s Bridge Train Station (SY23 3JL)', zIndex: 1 }); // place 814: Devil`s Bridge, SY23 3JW var a814=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.377231, -3.849670), title: 'Devil`s Bridge (SY23 3JW)', zIndex: 1 }); // place 815: Devil`s Bridge Waterfalls, SY23 3JW var a815=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.378855, -3.849897), title: 'Devil`s Bridge Waterfalls (SY23 3JW)', zIndex: 1 }); // place 816: View over A44 valley, SY23 3LD var a816=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.431837, -3.780448), title: 'View over A44 valley (SY23 3LD)', zIndex: 1 }); // place 817: Bramcote Avenue, Bolton, BL2 1LF var a817=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.571963, -2.414774), title: 'Bramcote Avenue, Bolton (BL2 1LF)', zIndex: 1 }); // place 818: Peg`s Pond, Richmond Park, TW10 5HP var a818=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.433927, -0.280923), title: 'Peg`s Pond, Richmond Park (TW10 5HP)', zIndex: 1 }); // place 819: The Minnow, Weybridge, KT13 8NG var a819=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.380132, -0.455816), title: 'The Minnow, Weybridge (KT13 8NG)', zIndex: 1 }); // place 820: Cambridge parking, CB5 8HQ var a820=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.210538, 0.136594), title: 'Cambridge parking (CB5 8HQ)', zIndex: 1 }); // place 821: Pembroke Lodge, Richmond Park, TW10 5HX var a821=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.442522, -0.294787), title: 'Pembroke Lodge, Richmond Park (TW10 5HX)', zIndex: 1 }); // place 822: The Rose Of York, Richmond, TW10 6UY var a822=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.450525, -0.300116), title: 'The Rose Of York, Richmond (TW10 6UY)', zIndex: 1 }); // place 823: Westerham, TN16 1AN var a823=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.266940, 0.072196), title: 'Westerham (TN16 1AN)', zIndex: 1 }); // place 824: Ukrainian Social Club, BL2 1JP var a824=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.577151, -2.414743), title: 'Ukrainian Social Club (BL2 1JP)', zIndex: 1 }); // place 825: Rivington small waterfall, BL6 7SA var a825=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.619820, -2.549302), title: 'Rivington small waterfall (BL6 7SA)', zIndex: 1 }); // place 826: Rivington Terraced Gardens, BL6 7SA var a826=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.620147, -2.548079), title: 'Rivington Terraced Gardens (BL6 7SA)', zIndex: 1 }); // place 827: View over Lever`s Bridge, BL6 7SA var a827=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.623297, -2.547777), title: 'View over Lever`s Bridge (BL6 7SA)', zIndex: 1 }); // place 828: Viewpoint between Pigeon Tower and Italian Lake, BL6 7SA var a828=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.624278, -2.547330), title: 'Viewpoint between Pigeon Tower and Italian Lake (BL6 7SA)', zIndex: 1 }); // place 829: Pigeon Tower, BL6 7SA var a829=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.624316, -2.546383), title: 'Pigeon Tower (BL6 7SA)', zIndex: 1 }); // place 830: Rivington Pike Tower, BL6 7SA var a830=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.619286, -2.541367), title: 'Rivington Pike Tower (BL6 7SA)', zIndex: 1 }); // place 831: The Great Lawn, BL6 7SA var a831=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.621165, -2.547414), title: 'The Great Lawn (BL6 7SA)', zIndex: 1 }); // place 832: Lever`s Bridge, BL6 7SA var a832=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.623446, -2.548538), title: 'Lever`s Bridge (BL6 7SA)', zIndex: 1 }); // place 833: Rivington Hall Barn, BL6 7SB var a833=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.625923, -2.556335), title: 'Rivington Hall Barn (BL6 7SB)', zIndex: 1 }); // place 834: Forest near Go Ape, BL6 7SB var a834=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.619572, -2.564250), title: 'Forest near Go Ape (BL6 7SB)', zIndex: 1 }); // place 835: Portsmouth car ferry (Wightlink Ferries), PO1 2LA var a835=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.792770, -1.105872), title: 'Portsmouth car ferry (Wightlink Ferries) (PO1 2LA)', zIndex: 1 }); // place 836: Fishbourne Ferry Terminal, PO33 4EU var a836=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.734323, -1.213473), title: 'Fishbourne Ferry Terminal (PO33 4EU)', zIndex: 1 }); // place 837: Esplanade, East Cowes, PO32 6AA var a837=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.761783, -1.289009), title: 'Esplanade, East Cowes (PO32 6AA)', zIndex: 1 }); // place 838: Cowes Marina, PO31 7BD var a838=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.762046, -1.294931), title: 'Cowes Marina (PO31 7BD)', zIndex: 1 }); // place 839: Cowes Beach, PO31 8AU var a839=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.767128, -1.307124), title: 'Cowes Beach (PO31 8AU)', zIndex: 1 }); // place 840: Freshwater Beach, PO40 9RR var a840=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.690819, -1.536475), title: 'Freshwater Beach (PO40 9RR)', zIndex: 1 }); // place 841: The Needles Chair Lift, PO39 0JD var a841=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.668829, -1.568314), title: 'The Needles Chair Lift (PO39 0JD)', zIndex: 1 }); // place 842: View over Freshwater Bay, PO40 9TU var a842=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.669334, -1.507382), title: 'View over Freshwater Bay (PO40 9TU)', zIndex: 1 }); // place 843: Blackgang Viewpoint Car Park, PO38 2JB var a843=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.588236, -1.307880), title: 'Blackgang Viewpoint Car Park (PO38 2JB)', zIndex: 1 }); // place 844: The Buddle Inn, Niton, PO38 2NE var a844=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.579245, -1.291015), title: 'The Buddle Inn, Niton (PO38 2NE)', zIndex: 1 }); // place 845: Shanklin Beach, PO37 6BJ var a845=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.630857, -1.171503), title: 'Shanklin Beach (PO37 6BJ)', zIndex: 1 }); // place 846: Perowne Way, Sandown, PO36 9PW var a846=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.663052, -1.153859), title: 'Perowne Way, Sandown (PO36 9PW)', zIndex: 1 }); // place 847: Old Trafford, M16 0SZ var a847=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.463534, -2.289269), title: 'Old Trafford (M16 0SZ)', zIndex: 1 }); // place 848: Old Hall, Sandbach, CW11 1AL var a848=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.142628, -2.360598), title: 'Old Hall, Sandbach (CW11 1AL)', zIndex: 1 }); // place 849: Lost and Found (Knutsford), WA16 6BY var a849=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.303210, -2.374059), title: 'Lost and Found (Knutsford) (WA16 6BY)', zIndex: 1 }); // place 850: Wetton Mill parking, DE6 2AG var a850=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.101940, -1.859866), title: 'Wetton Mill parking (DE6 2AG)', zIndex: 1 }); // place 851: Nothing of note has happened here, ST13 7SS var a851=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.121822, -1.856547), title: 'Nothing of note has happened here (ST13 7SS)', zIndex: 1 }); // place 852: Ecton Hill (Ecton Mine Engine House), DE6 2AJ var a852=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.122318, -1.853761), title: 'Ecton Hill (Ecton Mine Engine House) (DE6 2AJ)', zIndex: 1 }); // place 853: Trigpoint on Ecton Hill, DE6 2AJ var a853=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.119088, -1.852350), title: 'Trigpoint on Ecton Hill (DE6 2AJ)', zIndex: 1 }); // place 854: Thor`s Cave, DE6 2AF var a854=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.091733, -1.854279), title: 'Thor`s Cave (DE6 2AF)', zIndex: 1 }); // place 855: Nan Tor Cave, DE6 2AG var a855=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.102511, -1.858986), title: 'Nan Tor Cave (DE6 2AG)', zIndex: 1 }); // place 856: Hartington, SK17 0AL var a856=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.140665, -1.810140), title: 'Hartington (SK17 0AL)', zIndex: 1 }); // place 857: The Royal Oak, Hurdlow, SK17 9QJ var a857=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.190718, -1.811725), title: 'The Royal Oak, Hurdlow (SK17 9QJ)', zIndex: 1 }); // place 858: The Hanging Gate, Chapel-en-le-Frith, SK23 9UH var a858=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.316519, -1.939854), title: 'The Hanging Gate, Chapel-en-le-Frith (SK23 9UH)', zIndex: 1 }); // place 859: Valley Gardens, HG1 2SZ var a859=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.990999, -1.551120), title: 'Valley Gardens (HG1 2SZ)', zIndex: 1 }); // place 860: Back Streets of Harrogate, HG1 5EE var a860=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.997505, -1.537718), title: 'Back Streets of Harrogate (HG1 5EE)', zIndex: 1 }); // place 861: Winter Hill Parking, BL6 6RT var a861=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.605087, -2.523674), title: 'Winter Hill Parking (BL6 6RT)', zIndex: 1 }); // place 862: Two Lads, BL6 6RT var a862=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.615075, -2.522403), title: 'Two Lads (BL6 6RT)', zIndex: 1 }); // place 863: Winter Hill, BL6 6RT var a863=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.625533, -2.514433), title: 'Winter Hill (BL6 6RT)', zIndex: 1 }); // place 864: View from Winter Hill, BL6 6RT var a864=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.629155, -2.512837), title: 'View from Winter Hill (BL6 6RT)', zIndex: 1 }); // place 865: Dean Ditch, BL6 6RT var a865=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.621101, -2.491578), title: 'Dean Ditch (BL6 6RT)', zIndex: 1 }); // place 866: Smithills, BL6 6RT var a866=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.616114, -2.496513), title: 'Smithills (BL6 6RT)', zIndex: 1 }); // place 867: Port Sunlight, CH62 5DZ var a867=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.352999, -2.998219), title: 'Port Sunlight (CH62 5DZ)', zIndex: 1 }); // place 868: Dell Bridge, CH62 4UJ var a868=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.350252, -2.996225), title: 'Dell Bridge (CH62 4UJ)', zIndex: 1 }); // place 869: Huyton, L14 6TX var a869=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.409939, -2.872647), title: 'Huyton (L14 6TX)', zIndex: 1 }); // place 870: Roundhay Fox, LS8 2EP var a870=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.839659, -1.504067), title: 'Roundhay Fox (LS8 2EP)', zIndex: 1 }); // place 871: The Upper Lake, Roundhay Park, LS8 2HH var a871=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.841222, -1.496340), title: 'The Upper Lake, Roundhay Park (LS8 2HH)', zIndex: 1 }); // place 872: Poulton-le-Fylde, FY6 7UG var a872=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.841829, -3.010732), title: 'Poulton-le-Fylde (FY6 7UG)', zIndex: 1 }); // place 873: River Wyre, FY6 7JZ var a873=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.857083, -2.980629), title: 'River Wyre (FY6 7JZ)', zIndex: 1 }); // place 874: Castle Gardens Pub, FY6 7NH var a874=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.853825, -3.005516), title: 'Castle Gardens Pub (FY6 7NH)', zIndex: 1 }); // place 875: Edale Train Station, S33 7ZQ var a875=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.364859, -1.817351), title: 'Edale Train Station (S33 7ZQ)', zIndex: 1 }); // place 876: Hope Train Station, S33 6RR var a876=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.345891, -1.730306), title: 'Hope Train Station (S33 6RR)', zIndex: 1 }); // place 877: Hope, S33 6RH var a877=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.347787, -1.741600), title: 'Hope (S33 6RH)', zIndex: 1 }); // place 878: Lose Hill Lane, S33 6AF var a878=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.358203, -1.752244), title: 'Lose Hill Lane (S33 6AF)', zIndex: 1 }); // place 879: Approaching Losehill Pike, S33 6AF var a879=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.360003, -1.761246), title: 'Approaching Losehill Pike (S33 6AF)', zIndex: 1 }); // place 880: Losehill Pike Ward`s Piece, S33 6AF var a880=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.362700, -1.768918), title: 'Losehill Pike Ward`s Piece (S33 6AF)', zIndex: 1 }); // place 881: Lose Hill, S33 6AF var a881=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.364874, -1.771374), title: 'Lose Hill (S33 6AF)', zIndex: 1 }); // place 882: Back Tor, S33 6AF var a882=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.361769, -1.783334), title: 'Back Tor (S33 6AF)', zIndex: 1 }); // place 883: Great Ridge, S33 6AF var a883=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.357377, -1.797268), title: 'Great Ridge (S33 6AF)', zIndex: 1 }); // place 884: Mam Tor Bridleway, S33 6AF var a884=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.355940, -1.803935), title: 'Mam Tor Bridleway (S33 6AF)', zIndex: 1 }); // place 885: Mud from Mam Tor to Edale, S33 7ZQ var a885=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.354986, -1.812883), title: 'Mud from Mam Tor to Edale (S33 7ZQ)', zIndex: 1 }); // place 886: The Rambler Inn, Edale, S33 7ZQ var a886=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.365435, -1.816751), title: 'The Rambler Inn, Edale (S33 7ZQ)', zIndex: 1 }); // place 887: Worthing, BN11 4EW var a887=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.817513, -0.382026), title: 'Worthing (BN11 4EW)', zIndex: 1 }); // place 888: David Lloyd Worthing, BN13 3DL var a888=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.826348, -0.429439), title: 'David Lloyd Worthing (BN13 3DL)', zIndex: 1 }); // place 889: Surrenden Park, BN1 6XA var a889=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.852542, -0.137579), title: 'Surrenden Park (BN1 6XA)', zIndex: 1 }); // place 890: Storrington Rise Car Park, BN14 0HT var a890=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.857628, -0.397062), title: 'Storrington Rise Car Park (BN14 0HT)', zIndex: 1 }); // place 891: Cissbury Ring, BN14 0HT var a891=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.858331, -0.385546), title: 'Cissbury Ring (BN14 0HT)', zIndex: 1 }); // place 892: Arundel, BN18 9AA var a892=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.854266, -0.552697), title: 'Arundel (BN18 9AA)', zIndex: 1 }); // place 893: St Nicholas Church, Arundel, BN18 9AR var a893=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.855906, -0.557018), title: 'St Nicholas Church, Arundel (BN18 9AR)', zIndex: 1 }); // place 894: Worthing Pier, BN11 3PX var a894=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.806953, -0.368756), title: 'Worthing Pier (BN11 3PX)', zIndex: 1 }); // place 895: The Long Bench, BN17 5GB var a895=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.802622, -0.535195), title: 'The Long Bench (BN17 5GB)', zIndex: 1 }); // place 896: Littlehampton Pier, BN17 5GB var a896=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.801451, -0.541807), title: 'Littlehampton Pier (BN17 5GB)', zIndex: 1 }); // place 897: Pier Road, BN17 5GB var a897=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.805691, -0.543334), title: 'Pier Road (BN17 5GB)', zIndex: 1 }); // place 898: Bognor Regis Beach, PO21 1BL var a898=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.782052, -0.671699), title: 'Bognor Regis Beach (PO21 1BL)', zIndex: 1 }); // place 899: Pagham Beach, PO21 4SX var a899=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.767734, -0.737116), title: 'Pagham Beach (PO21 4SX)', zIndex: 1 }); // place 900: Selsey Beach, PO20 0JA var a900=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.722819, -0.785653), title: 'Selsey Beach (PO20 0JA)', zIndex: 1 }); // place 901: Selsey Beach Car Park, PO20 0FP var a901=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.725117, -0.797201), title: 'Selsey Beach Car Park (PO20 0FP)', zIndex: 1 }); // place 902: Cattlemarket Car Park, PO19 1JW var a902=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.834788, -0.773039), title: 'Cattlemarket Car Park (PO19 1JW)', zIndex: 1 }); // place 903: Chichester Cross, PO19 1JW var a903=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.836524, -0.779303), title: 'Chichester Cross (PO19 1JW)', zIndex: 1 }); // place 904: Chichester Cathedral, PO19 1JW var a904=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.836245, -0.780986), title: 'Chichester Cathedral (PO19 1JW)', zIndex: 1 }); // place 905: Endcliffe Park, S11 7AB var a905=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.368408, -1.509409), title: 'Endcliffe Park (S11 7AB)', zIndex: 1 }); // place 906: Mellor Country House, SK6 5PP var a906=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.393903, -2.027239), title: 'Mellor Country House (SK6 5PP)', zIndex: 1 }); // place 907: View from Higher Banks, SK6 5NL var a907=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.385495, -2.032167), title: 'View from Higher Banks (SK6 5NL)', zIndex: 1 }); // place 908: Horses near Mellor Cross, SK6 5NL var a908=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.381634, -2.030550), title: 'Horses near Mellor Cross (SK6 5NL)', zIndex: 1 }); // place 909: Mellor Cross, SK6 5NL var a909=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.382573, -2.023628), title: 'Mellor Cross (SK6 5NL)', zIndex: 1 }); // place 910: Bridle Way in mud, SK6 5NG var a910=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397455, -2.012704), title: 'Bridle Way in mud (SK6 5NG)', zIndex: 1 }); // place 911: Shilon Road, SK22 1DX var a911=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.398515, -2.000669), title: 'Shilon Road (SK22 1DX)', zIndex: 1 }); // place 912: The Little Mill at Rowarth, SK22 1EB var a912=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397376, -1.985508), title: 'The Little Mill at Rowarth (SK22 1EB)', zIndex: 1 }); // place 913: Blackshaw Farm, SK22 2NS var a913=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397366, -1.963296), title: 'Blackshaw Farm (SK22 2NS)', zIndex: 1 }); // place 914: Back Rowarth, SK13 6ED var a914=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.407861, -1.972998), title: 'Back Rowarth (SK13 6ED)', zIndex: 1 }); // place 915: Goddard Lane, SK22 1EF var a915=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.399843, -1.983997), title: 'Goddard Lane (SK22 1EF)', zIndex: 1 }); // place 916: St Thomas Church, SK6 5LX var a916=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.396967, -2.029086), title: 'St Thomas Church (SK6 5LX)', zIndex: 1 }); // place 917: The Hut, SK6 5LX var a917=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397604, -2.027876), title: 'The Hut (SK6 5LX)', zIndex: 1 }); // place 918: The Devonshire Arms, Mellor, SK6 5PP var a918=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.393430, -2.024194), title: 'The Devonshire Arms, Mellor (SK6 5PP)', zIndex: 1 }); // place 919: Bowden Bridge Car Park, SK22 2LH var a919=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.379087, -1.928327), title: 'Bowden Bridge Car Park (SK22 2LH)', zIndex: 1 }); // place 920: Footpath towards Kinder Reservoir, SK22 2LH var a920=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.389099, -1.922401), title: 'Footpath towards Kinder Reservoir (SK22 2LH)', zIndex: 1 }); // place 921: View over Kinder Reservoir, SK22 2LH var a921=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.391543, -1.916683), title: 'View over Kinder Reservoir (SK22 2LH)', zIndex: 1 }); // place 922: William Clough, SK22 2LH var a922=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.401768, -1.909623), title: 'William Clough (SK22 2LH)', zIndex: 1 }); // place 923: Pennine Way, SK22 2LH var a923=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.406228, -1.901000), title: 'Pennine Way (SK22 2LH)', zIndex: 1 }); // place 924: Kinder Scout Charged Rock, SK22 2LH var a924=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.399694, -1.891318), title: 'Kinder Scout Charged Rock (SK22 2LH)', zIndex: 1 }); // place 925: Kinder Downfall, SK22 2LH var a925=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397195, -1.876960), title: 'Kinder Downfall (SK22 2LH)', zIndex: 1 }); // place 926: View over Kinder valley, SK22 2LH var a926=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.394448, -1.878159), title: 'View over Kinder valley (SK22 2LH)', zIndex: 1 }); // place 927: Kinder Low Trig Point, SK22 2LH var a927=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.380349, -1.882616), title: 'Kinder Low Trig Point (SK22 2LH)', zIndex: 1 }); // place 928: Edale Cross, SK22 2LH var a928=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.371625, -1.885416), title: 'Edale Cross (SK22 2LH)', zIndex: 1 }); // place 929: Kinder Low End High Peak Estate, SK22 2LH var a929=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.376549, -1.904063), title: 'Kinder Low End High Peak Estate (SK22 2LH)', zIndex: 1 }); // place 930: The Kinder Estate, SK22 2LH var a930=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.377582, -1.920062), title: 'The Kinder Estate (SK22 2LH)', zIndex: 1 }); // place 931: Mushroom Lane, S3 7PZ var a931=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.384974, -1.488382), title: 'Mushroom Lane (S3 7PZ)', zIndex: 1 }); // place 932: Springfield Road, HP5 1GL var a932=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.699990, -0.605696), title: 'Springfield Road (HP5 1GL)', zIndex: 1 }); // place 933: Bastion Steps, BN10 8LS var a933=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.788700, 0.000857), title: 'Bastion Steps (BN10 8LS)', zIndex: 1 }); // place 934: Undercliff Walk, BN10 8LS var a934=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.785203, 0.020818), title: 'Undercliff Walk (BN10 8LS)', zIndex: 1 }); // place 935: Shoreham Lighthouse, BN43 6RG var a935=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.830559, -0.248446), title: 'Shoreham Lighthouse (BN43 6RG)', zIndex: 1 }); // place 936: Handley Way, TF3 5FF var a936=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.678744, -2.474098), title: 'Handley Way (TF3 5FF)', zIndex: 1 }); // place 937: Newdale Pool, TF3 5ES var a937=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.681730, -2.479597), title: 'Newdale Pool (TF3 5ES)', zIndex: 1 }); // place 938: Wrekin Way, TF3 5ES var a938=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.684060, -2.469360), title: 'Wrekin Way (TF3 5ES)', zIndex: 1 }); // place 939: Wombwell, S73 0LZ var a939=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.517233, -1.415020), title: 'Wombwell (S73 0LZ)', zIndex: 1 }); // place 940: The Mere Golf Resort and Spa, WA16 6LJ var a940=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.332366, -2.406050), title: 'The Mere Golf Resort and Spa (WA16 6LJ)', zIndex: 1 }); // place 941: The Ship, SK9 4JE var a941=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.348608, -2.243675), title: 'The Ship (SK9 4JE)', zIndex: 1 }); // place 942: Styal Cross, SK9 4JQ var a942=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.347980, -2.248888), title: 'Styal Cross (SK9 4JQ)', zIndex: 1 }); // place 943: Norcliffe Chapel, SK9 4JQ var a943=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.347602, -2.249835), title: 'Norcliffe Chapel (SK9 4JQ)', zIndex: 1 }); // place 944: Chapel Woods, SK9 4JQ var a944=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.346429, -2.253066), title: 'Chapel Woods (SK9 4JQ)', zIndex: 1 }); // place 945: River Bollin, SK9 4JQ var a945=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.345256, -2.256036), title: 'River Bollin (SK9 4JQ)', zIndex: 1 }); // place 946: Giants Castle Bridge, SK9 4JQ var a946=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.347684, -2.259961), title: 'Giants Castle Bridge (SK9 4JQ)', zIndex: 1 }); // place 947: View over Manchester Airport, SK9 4LR var a947=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.346737, -2.276259), title: 'View over Manchester Airport (SK9 4LR)', zIndex: 1 }); // place 948: Near Airport Inn, SK9 4LR var a948=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.342618, -2.276266), title: 'Near Airport Inn (SK9 4LR)', zIndex: 1 }); // place 949: House Farm off Altrincham road, SK9 4LR var a949=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.343185, -2.255737), title: 'House Farm off Altrincham road (SK9 4LR)', zIndex: 1 }); // place 950: Quarry Bank House Facilities, SK9 4LA var a950=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.343249, -2.250251), title: 'Quarry Bank House Facilities (SK9 4LA)', zIndex: 1 }); // place 951: View over Styal Weir, SK9 4LA var a951=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.342417, -2.251798), title: 'View over Styal Weir (SK9 4LA)', zIndex: 1 }); // place 952: The Carrs Car Park, SK9 4HW var a952=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.336181, -2.241978), title: 'The Carrs Car Park (SK9 4HW)', zIndex: 1 }); // place 953: View over Methodist Chapel, SK9 4JF var a953=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.348016, -2.247765), title: 'View over Methodist Chapel (SK9 4JF)', zIndex: 1 }); // place 954: The Promenade, CH45 3QW var a954=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.437785, -3.065420), title: 'The Promenade (CH45 3QW)', zIndex: 1 }); // place 955: Appleton Thorn, WA4 4QS var a955=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.352186, -2.543666), title: 'Appleton Thorn (WA4 4QS)', zIndex: 1 }); // place 956: Towers Business Park, M20 2JE var a956=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.409433, -2.227395), title: 'Towers Business Park (M20 2JE)', zIndex: 1 }); // place 957: Pritchard Street, BB11 4JY var a957=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.785075, -2.255023), title: 'Pritchard Street (BB11 4JY)', zIndex: 1 }); // place 958: Old Moat Park, M20 3EQ var a958=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.436612, -2.228947), title: 'Old Moat Park (M20 3EQ)', zIndex: 1 }); // place 959: Sakura streets, OL8 3AQ var a959=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.520811, -2.119033), title: 'Sakura streets (OL8 3AQ)', zIndex: 1 }); // place 960: Beech Road Park, M21 9FL var a960=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.438400, -2.277987), title: 'Beech Road Park (M21 9FL)', zIndex: 1 }); // place 961: Manchester Home Cinema, M15 4FN var a961=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.473704, -2.246704), title: 'Manchester Home Cinema (M15 4FN)', zIndex: 1 }); // place 962: View over Headstone Viaduct, DE45 1NL var a962=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.240611, -1.725011), title: 'View over Headstone Viaduct (DE45 1NL)', zIndex: 1 }); // place 963: River Wye, DE45 1NL var a963=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.239126, -1.735962), title: 'River Wye (DE45 1NL)', zIndex: 1 }); // place 964: Bridge over River Wye, DE45 1NL var a964=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.239443, -1.737175), title: 'Bridge over River Wye (DE45 1NL)', zIndex: 1 }); // place 965: Walk along River Wye, DE45 1NL var a965=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.236895, -1.747089), title: 'Walk along River Wye (DE45 1NL)', zIndex: 1 }); // place 966: White Lodge Car Park, DE45 1NL var a966=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.232661, -1.747664), title: 'White Lodge Car Park (DE45 1NL)', zIndex: 1 }); // place 967: Deep Dale Nature Reserve, SK17 9UH var a967=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.230254, -1.747680), title: 'Deep Dale Nature Reserve (SK17 9UH)', zIndex: 1 }); // place 968: Metal-Can Bidon, SK17 9UH var a968=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.232354, -1.769406), title: 'Metal-Can Bidon (SK17 9UH)', zIndex: 1 }); // place 969: Mini Stables, SK17 9UH var a969=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.231186, -1.771126), title: 'Mini Stables (SK17 9UH)', zIndex: 1 }); // place 970: Bath in the Field, SK17 9UH var a970=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.232962, -1.775368), title: 'Bath in the Field (SK17 9UH)', zIndex: 1 }); // place 971: Town End, SK17 9UD var a971=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.235229, -1.780743), title: 'Town End (SK17 9UD)', zIndex: 1 }); // place 972: Queens Arms, SK17 9UD var a972=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.236675, -1.783965), title: 'Queens Arms (SK17 9UD)', zIndex: 1 }); // place 973: St Michael and All Angels Church, SK17 9TU var a973=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.237216, -1.790001), title: 'St Michael and All Angels Church (SK17 9TU)', zIndex: 1 }); // place 974: Rock Lodge Farm, SK17 9TU var a974=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.241382, -1.796022), title: 'Rock Lodge Farm (SK17 9TU)', zIndex: 1 }); // place 975: Hollow O`the Moor, SK17 9TL var a975=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.241668, -1.800329), title: 'Hollow O`the Moor (SK17 9TL)', zIndex: 1 }); // place 976: Long Lane, SK17 9TL var a976=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.253498, -1.800726), title: 'Long Lane (SK17 9TL)', zIndex: 1 }); // place 977: Miller`s Dale Monsal Trail, SK17 8TD var a977=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.255913, -1.794071), title: 'Miller`s Dale Monsal Trail (SK17 8TD)', zIndex: 1 }); // place 978: Monsal Trail, SK17 8TD var a978=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.255423, -1.776658), title: 'Monsal Trail (SK17 8TD)', zIndex: 1 }); // place 979: Litton Mill, SK17 8SW var a979=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.253739, -1.762751), title: 'Litton Mill (SK17 8SW)', zIndex: 1 }); // place 980: River Wye Trail, SK17 8SW var a980=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.254958, -1.754454), title: 'River Wye Trail (SK17 8SW)', zIndex: 1 }); // place 981: Water-Cum-Jolly Dale, SK17 8SA var a981=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.252065, -1.743157), title: 'Water-Cum-Jolly Dale (SK17 8SA)', zIndex: 1 }); // place 982: Monsal Trail, SK17 8SA var a982=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.248413, -1.743455), title: 'Monsal Trail (SK17 8SA)', zIndex: 1 }); // place 983: Headstone Viaduct, DE45 1NL var a983=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.240972, -1.728064), title: 'Headstone Viaduct (DE45 1NL)', zIndex: 1 }); // place 984: The Anchor Inn, SK17 8RB var a984=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.283585, -1.761726), title: 'The Anchor Inn (SK17 8RB)', zIndex: 1 }); // place 985: Salt Ayre Lane, LA1 5JP var a985=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.055565, -2.817346), title: 'Salt Ayre Lane (LA1 5JP)', zIndex: 1 }); // place 986: Milking Stile Lane, LA1 5QB var a986=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.047622, -2.814996), title: 'Milking Stile Lane (LA1 5QB)', zIndex: 1 }); // place 987: Fields of Lancaster, LA2 9HB var a987=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.061176, -2.668299), title: 'Fields of Lancaster (LA2 9HB)', zIndex: 1 }); // place 988: The Ship Inn, LA2 9QJ var a988=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.075792, -2.719808), title: 'The Ship Inn (LA2 9QJ)', zIndex: 1 }); // place 989: Venus and Cupid, LA4 6AJ var a989=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.084633, -2.832159), title: 'Venus and Cupid (LA4 6AJ)', zIndex: 1 }); // place 990: Blacon, CH1 5HH var a990=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.208223, -2.930068), title: 'Blacon (CH1 5HH)', zIndex: 1 }); // place 991: Yorkshire Bridge, S33 0BP var a991=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.361225, -1.703837), title: 'Yorkshire Bridge (S33 0BP)', zIndex: 1 }); // place 992: Win Hill, S33 6RA var a992=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.362426, -1.720939), title: 'Win Hill (S33 6RA)', zIndex: 1 }); // place 993: Hope Cross, S33 7ZH var a993=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.383534, -1.759282), title: 'Hope Cross (S33 7ZH)', zIndex: 1 }); // place 994: View over Ladybower Reservoir, S33 7ZH var a994=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.372256, -1.730392), title: 'View over Ladybower Reservoir (S33 7ZH)', zIndex: 1 }); // place 995: Ladybower Dam, S33 6RA var a995=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.365805, -1.701545), title: 'Ladybower Dam (S33 6RA)', zIndex: 1 }); // place 996: Croydon, CR9 5AB var a996=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.373418, -0.091771), title: 'Croydon (CR9 5AB)', zIndex: 1 }); // place 997: Devils Dyke Fort, BN1 8YL var a997=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.883868, -0.214631), title: 'Devils Dyke Fort (BN1 8YL)', zIndex: 1 }); // place 998: Jack And Jill Windmills, BN6 9PG var a998=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.905689, -0.148116), title: 'Jack And Jill Windmills (BN6 9PG)', zIndex: 1 }); // place 999: Ukrainian Club Bury, BL9 7EH var a999=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.588721, -2.286003), title: 'Ukrainian Club Bury (BL9 7EH)', zIndex: 1 }); // place 1000: Tarasivka, DE72 2BU var a1000=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.846401, -1.412302), title: 'Tarasivka (DE72 2BU)', zIndex: 1 }); // place 1001: Ukrainian Country Social Club, DE72 2BU var a1001=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.842619, -1.416562), title: 'Ukrainian Country Social Club (DE72 2BU)', zIndex: 1 }); // place 1002: Bridge over Trent and Mersey Canal, DE72 2BU var a1002=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.842139, -1.415740), title: 'Bridge over Trent and Mersey Canal (DE72 2BU)', zIndex: 1 }); // place 1003: Chelford Carboot, WA16 8SU var a1003=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.276895, -2.297131), title: 'Chelford Carboot (WA16 8SU)', zIndex: 1 }); // place 1004: The Hub Altrincham, WA14 2SZ var a1004=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.382646, -2.348085), title: 'The Hub Altrincham (WA14 2SZ)', zIndex: 1 }); // place 1005: Millers Dale Car Park, SK17 8SN var a1005=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.256263, -1.794970), title: 'Millers Dale Car Park (SK17 8SN)', zIndex: 1 }); // place 1006: Old East Buxton Lime Kilns, SK17 8SN var a1006=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.256523, -1.803156), title: 'Old East Buxton Lime Kilns (SK17 8SN)', zIndex: 1 }); // place 1007: Monsal Trail Abseiling, SK17 8SN var a1007=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.256724, -1.805791), title: 'Monsal Trail Abseiling (SK17 8SN)', zIndex: 1 }); // place 1008: Mini bridge1 over River Wye, SK17 8SN var a1008=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.257980, -1.809956), title: 'Mini bridge1 over River Wye (SK17 8SN)', zIndex: 1 }); // place 1009: View over vertical cliff, SK17 8SN var a1009=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.256276, -1.817305), title: 'View over vertical cliff (SK17 8SN)', zIndex: 1 }); // place 1010: Vertical Abseiling, SK17 8SN var a1010=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.255408, -1.816412), title: 'Vertical Abseiling (SK17 8SN)', zIndex: 1 }); // place 1011: Chee Dale Stepping Stones, SK17 8SN var a1011=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.255300, -1.814757), title: 'Chee Dale Stepping Stones (SK17 8SN)', zIndex: 1 }); // place 1012: Swimming in River Wye, SK17 8SN var a1012=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.254688, -1.813574), title: 'Swimming in River Wye (SK17 8SN)', zIndex: 1 }); // place 1013: Mini bridge2 over River Wye, SK17 8SN var a1013=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.254374, -1.814054), title: 'Mini bridge2 over River Wye (SK17 8SN)', zIndex: 1 }); // place 1014: Under the bridge over River Wye, SK17 8SN var a1014=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.251995, -1.823106), title: 'Under the bridge over River Wye (SK17 8SN)', zIndex: 1 }); // place 1015: Nothing interesting just couple of photos, SK17 8SN var a1015=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.251504, -1.829136), title: 'Nothing interesting just couple of photos (SK17 8SN)', zIndex: 1 }); // place 1016: Blackwell Mill Area, SK17 8SN var a1016=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.251462, -1.832994), title: 'Blackwell Mill Area (SK17 8SN)', zIndex: 1 }); // place 1017: Pennine Bridleway round puddle, SK17 9TQ var a1017=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.247356, -1.828666), title: 'Pennine Bridleway round puddle (SK17 9TQ)', zIndex: 1 }); // place 1018: Beech Croft Farm, SK17 9TQ var a1018=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.245110, -1.817306), title: 'Beech Croft Farm (SK17 9TQ)', zIndex: 1 }); // place 1019: Nothing interesting just a farm, SK17 9TQ var a1019=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.247495, -1.812008), title: 'Nothing interesting just a farm (SK17 9TQ)', zIndex: 1 }); // place 1020: Nothing interesting just a field, SK17 9TQ var a1020=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.254102, -1.811284), title: 'Nothing interesting just a field (SK17 9TQ)', zIndex: 1 }); // place 1021: Altrincham Baptist Church, WA14 2EW var a1021=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.381499, -2.350098), title: 'Altrincham Baptist Church (WA14 2EW)', zIndex: 1 }); // place 1022: Breightmet Aldi, BL2 6PP var a1022=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.580653, -2.382539), title: 'Breightmet Aldi (BL2 6PP)', zIndex: 1 }); // place 1023: Victoria Inn, BL1 5AG var a1023=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.582832, -2.477203), title: 'Victoria Inn (BL1 5AG)', zIndex: 1 }); // place 1024: Breightmet, BL2 6UD var a1024=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.576512, -2.380064), title: 'Breightmet (BL2 6UD)', zIndex: 1 }); // place 1025: Beech Hill, LA23 3PR var a1025=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.320760, -2.942553), title: 'Beech Hill (LA23 3PR)', zIndex: 1 }); // place 1026: Hampton, TW12 2AL var a1026=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.415632, -0.372341), title: 'Hampton (TW12 2AL)', zIndex: 1 }); // place 1027: Chudleigh, TQ13 0NE var a1027=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.610898, -3.601886), title: 'Chudleigh (TQ13 0NE)', zIndex: 1 }); // place 1028: Babbacombe Downs, TQ1 3LP var a1028=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.479989, -3.514194), title: 'Babbacombe Downs (TQ1 3LP)', zIndex: 1 }); // place 1029: Ship Inn Wool, BH20 6EQ var a1029=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.680524, -2.226561), title: 'Ship Inn Wool (BH20 6EQ)', zIndex: 1 }); // place 1030: University of Surrey Residence, GU2 9PL var a1030=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.264668, -0.592595), title: 'University of Surrey Residence (GU2 9PL)', zIndex: 1 }); // place 1031: Bowdon, WA14 2SJ var a1031=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.379239, -2.366165), title: 'Bowdon (WA14 2SJ)', zIndex: 1 }); // place 1032: Ukrainian Social Club, SK2 7AA var a1032=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.391835, -2.143665), title: 'Ukrainian Social Club (SK2 7AA)', zIndex: 1 }); // place 1033: The Junction Inn, OL3 5SE var a1033=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.592240, -2.040129), title: 'The Junction Inn (OL3 5SE)', zIndex: 1 }); // place 1034: View over Dowry Reservoir, OL3 5UB var a1034=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.595885, -2.023133), title: 'View over Dowry Reservoir (OL3 5UB)', zIndex: 1 }); // place 1035: John Leigh Park, WA14 4EQ var a1035=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.392916, -2.357215), title: 'John Leigh Park (WA14 4EQ)', zIndex: 1 }); // place 1036: Astley, M29 7BP var a1036=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.501647, -2.454738), title: 'Astley (M29 7BP)', zIndex: 1 }); // place 1037: Heaton Park Northern play area, M25 2SW var a1037=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.537403, -2.257320), title: 'Heaton Park Northern play area (M25 2SW)', zIndex: 1 }); // place 1038: Brinscall, PR6 8QU var a1038=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.685775, -2.566803), title: 'Brinscall (PR6 8QU)', zIndex: 1 }); // place 1039: Worsley Boothstown, M28 1HP var a1039=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.502553, -2.420268), title: 'Worsley Boothstown (M28 1HP)', zIndex: 1 }); // place 1040: Worsley Mosley Common, M28 1AH var a1040=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.508421, -2.431252), title: 'Worsley Mosley Common (M28 1AH)', zIndex: 1 }); // place 1041: Pennington Flash Car Park, WN7 3UG var a1041=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.486240, -2.536995), title: 'Pennington Flash Car Park (WN7 3UG)', zIndex: 1 }); // place 1042: Let Loose Soft Play, SK7 5DP var a1042=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.377968, -2.137022), title: 'Let Loose Soft Play (SK7 5DP)', zIndex: 1 }); // place 1043: Moor Rd, PR6 9BU var a1043=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.658979, -2.586936), title: 'Moor Rd (PR6 9BU)', zIndex: 1 }); // place 1044: Bamburgh Castle, NE69 7DF var a1044=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.609531, -1.710556), title: 'Bamburgh Castle (NE69 7DF)', zIndex: 1 }); // place 1045: Bamburgh Beach, NE69 7DF var a1045=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.610523, -1.704245), title: 'Bamburgh Beach (NE69 7DF)', zIndex: 1 }); // place 1046: The Victoria Hotel, NE69 7BP var a1046=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.606649, -1.716962), title: 'The Victoria Hotel (NE69 7BP)', zIndex: 1 }); // place 1047: The Waterside Bistro, EH41 4AT var a1047=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.954674, -2.771033), title: 'The Waterside Bistro (EH41 4AT)', zIndex: 1 }); // place 1048: The Brae, EH8 7HN var a1048=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.952941, -3.145398), title: 'The Brae (EH8 7HN)', zIndex: 1 }); // place 1049: Hunts Fld, PR6 7TT var a1049=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.699044, -2.636935), title: 'Hunts Fld (PR6 7TT)', zIndex: 1 }); // place 1050: Tockholes Village Hall, BB3 0LR var a1050=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.703019, -2.513368), title: 'Tockholes Village Hall (BB3 0LR)', zIndex: 1 }); // place 1051: Horwich Park, BL6 6LB var a1051=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.579158, -2.537300), title: 'Horwich Park (BL6 6LB)', zIndex: 1 }); // place 1052: Imperial War Museum, M17 1TZ var a1052=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.469854, -2.298844), title: 'Imperial War Museum (M17 1TZ)', zIndex: 1 }); // place 1053: Poynton, SK12 1RE var a1053=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.348736, -2.119103), title: 'Poynton (SK12 1RE)', zIndex: 1 }); // place 1054: Hale Barns, WA15 8SX var a1054=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.368198, -2.312278), title: 'Hale Barns (WA15 8SX)', zIndex: 1 }); // place 1055: Concorde Conference Centre, WA15 8XQ var a1055=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.353040, -2.284911), title: 'Concorde Conference Centre (WA15 8XQ)', zIndex: 1 }); // place 1056: Ash Road Recycling Centre, M43 6QU var a1056=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.484592, -2.157279), title: 'Ash Road Recycling Centre (M43 6QU)', zIndex: 1 }); // place 1057: Axe & Cleaver, WA14 4SE var a1057=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.388630, -2.391878), title: 'Axe & Cleaver (WA14 4SE)', zIndex: 1 }); // place 1058: Bridgeman Street, BL3 6RR var a1058=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.568543, -2.432857), title: 'Bridgeman Street (BL3 6RR)', zIndex: 1 }); // place 1059: Three Pigeons, BL3 4RD var a1059=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.561523, -2.477082), title: 'Three Pigeons (BL3 4RD)', zIndex: 1 }); // place 1060: Sale Canal, M33 4FS var a1060=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.424858, -2.319142), title: 'Sale Canal (M33 4FS)', zIndex: 1 }); // place 1061: Southside MCR Viewing area, SK9 4LR var a1061=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.348489, -2.273882), title: 'Southside MCR Viewing area (SK9 4LR)', zIndex: 1 }); // place 1062: Canal near Dunham Massey, WA14 4SH var a1062=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.385607, -2.407052), title: 'Canal near Dunham Massey (WA14 4SH)', zIndex: 1 }); // place 1063: Derwent Valley Way, DE45 1PP var a1063=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.221305, -1.615502), title: 'Derwent Valley Way (DE45 1PP)', zIndex: 1 }); // place 1064: Beeley Hill Top Farm, DE4 2NW var a1064=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.212677, -1.595738), title: 'Beeley Hill Top Farm (DE4 2NW)', zIndex: 1 }); // place 1065: Chatsworth Lakes, DE45 1PP var a1065=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.231025, -1.599103), title: 'Chatsworth Lakes (DE45 1PP)', zIndex: 1 }); // place 1066: Hunting Tower, DE45 1PP var a1066=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.232027, -1.604569), title: 'Hunting Tower (DE45 1PP)', zIndex: 1 }); // place 1067: Unity Theatre, L1 9BG var a1067=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.401013, -2.971955), title: 'Unity Theatre (L1 9BG)', zIndex: 1 }); // place 1068: Carlton Club, M16 8BE var a1068=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.451660, -2.263363), title: 'Carlton Club (M16 8BE)', zIndex: 1 }); // place 1069: Hotel Anfield, L4 0TE var a1069=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.433583, -2.963287), title: 'Hotel Anfield (L4 0TE)', zIndex: 1 }); // place 1070: Drumgelloch, ML6 7HW var a1070=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.873829, -3.954627), title: 'Drumgelloch (ML6 7HW)', zIndex: 1 }); // place 1071: Drumgelloch Train Station, ML6 8FY var a1071=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.867698, -3.948485), title: 'Drumgelloch Train Station (ML6 8FY)', zIndex: 1 }); // place 1072: Consulate of Ukraine (Edinburgh), EH7 5JR var a1072=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.958299, -3.182524), title: 'Consulate of Ukraine (Edinburgh) (EH7 5JR)', zIndex: 1 }); // place 1073: Vennel Viewpoint, EH1 2HU var a1073=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.946283, -3.197024), title: 'Vennel Viewpoint (EH1 2HU)', zIndex: 1 }); // place 1074: Edinburgh Castle, EH1 2NG var a1074=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(55.948865, -3.200030), title: 'Edinburgh Castle (EH1 2NG)', zIndex: 1 }); // place 1075: Overflow parking for Dovestone Reservoir, OL3 7DR var a1075=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.533649, -1.994891), title: 'Overflow parking for Dovestone Reservoir (OL3 7DR)', zIndex: 1 }); // place 1076: Yeoman Hey Reservoir, OL3 7NN var a1076=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.543527, -1.967397), title: 'Yeoman Hey Reservoir (OL3 7NN)', zIndex: 1 }); // place 1077: Checkpoint 1 for Dovestones Edge, OL3 7NN var a1077=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.536308, -1.962373), title: 'Checkpoint 1 for Dovestones Edge (OL3 7NN)', zIndex: 1 }); // place 1078: Dovestones Edge, OL3 7NN var a1078=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.533124, -1.958708), title: 'Dovestones Edge (OL3 7NN)', zIndex: 1 }); // place 1079: Checkpoint 2 for Dovestones Edge, OL3 7NN var a1079=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.529771, -1.964313), title: 'Checkpoint 2 for Dovestones Edge (OL3 7NN)', zIndex: 1 }); // place 1080: Brookside Miniature Railway, SK12 1BZ var a1080=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.364726, -2.113878), title: 'Brookside Miniature Railway (SK12 1BZ)', zIndex: 1 }); // place 1081: Ryal Fold, BB3 0PA var a1081=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.688251, -2.508844), title: 'Ryal Fold (BB3 0PA)', zIndex: 1 }); // place 1082: Upper Roddlesworth Reservoir, BB3 0PA var a1082=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.691500, -2.515006), title: 'Upper Roddlesworth Reservoir (BB3 0PA)', zIndex: 1 }); // place 1083: Brewhouse and Kitchen, BN11 4JD var a1083=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.813982, -0.380096), title: 'Brewhouse and Kitchen (BN11 4JD)', zIndex: 1 }); // place 1084: UCLan Media Factory, PR1 1JN var a1084=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.763265, -2.710206), title: 'UCLan Media Factory (PR1 1JN)', zIndex: 1 }); // place 1085: Anytime Fitness, BL9 0QF var a1085=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.592913, -2.294345), title: 'Anytime Fitness (BL9 0QF)', zIndex: 1 }); // place 1086: West Kennet Avenue, SN8 1RD var a1086=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.421170, -1.846499), title: 'West Kennet Avenue (SN8 1RD)', zIndex: 1 }); // place 1087: Avebury Henge and Stone Circles, SN8 1RD var a1087=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.427682, -1.853513), title: 'Avebury Henge and Stone Circles (SN8 1RD)', zIndex: 1 }); // place 1088: Avebury Stone Alley, SN8 1RF var a1088=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.429470, -1.856053), title: 'Avebury Stone Alley (SN8 1RF)', zIndex: 1 }); // place 1089: The Henge and Avebury Community Shops, SN8 1RF var a1089=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.428240, -1.855698), title: 'The Henge and Avebury Community Shops (SN8 1RF)', zIndex: 1 }); // place 1090: Red Lion Avebury, SN8 1RF var a1090=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.428527, -1.854716), title: 'Red Lion Avebury (SN8 1RF)', zIndex: 1 }); // place 1091: Seaford Beach, BN25 2PY var a1091=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.774473, 0.087431), title: 'Seaford Beach (BN25 2PY)', zIndex: 1 }); // place 1092: Birling Gap, BN20 0AB var a1092=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.742747, 0.201024), title: 'Birling Gap (BN20 0AB)', zIndex: 1 }); // place 1093: Ouse Valley Viaduct, RH17 6QR var a1093=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.035889, -0.115138), title: 'Ouse Valley Viaduct (RH17 6QR)', zIndex: 1 }); // place 1094: Ardingly Activity Centre, RH17 6SQ var a1094=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.042842, -0.098864), title: 'Ardingly Activity Centre (RH17 6SQ)', zIndex: 1 }); // place 1095: Ardingly Reservoir, RH17 6SQ var a1095=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.046713, -0.102202), title: 'Ardingly Reservoir (RH17 6SQ)', zIndex: 1 }); // place 1096: Hayling Island Beach, PO11 9HL var a1096=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(50.781074, -0.967905), title: 'Hayling Island Beach (PO11 9HL)', zIndex: 1 }); // place 1097: Crescent Avenue, CV3 1HE var a1097=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.406432, -1.472449), title: 'Crescent Avenue (CV3 1HE)', zIndex: 1 }); // place 1098: Factory International, M3 4JQ var a1098=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.478261, -2.257616), title: 'Factory International (M3 4JQ)', zIndex: 1 }); // place 1099: The Fleece Inn, HD9 2QG var a1099=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.549261, -1.838771), title: 'The Fleece Inn (HD9 2QG)', zIndex: 1 }); // place 1100: John Rylands Library, M13 9PP var a1100=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.480437, -2.248895), title: 'John Rylands Library (M13 9PP)', zIndex: 1 }); // place 1101: Pingot Quarry Waterfall, OL2 8LX var a1101=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.588804, -2.075035), title: 'Pingot Quarry Waterfall (OL2 8LX)', zIndex: 1 }); // place 1102: Piethorne Brook Waterfall, OL3 5UN var a1102=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.611538, -2.049433), title: 'Piethorne Brook Waterfall (OL3 5UN)', zIndex: 1 }); // place 1103: Poynton Park, SK12 1BS var a1103=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.357561, -2.116705), title: 'Poynton Park (SK12 1BS)', zIndex: 1 }); // place 1104: Buxworth, SK23 7NJ var a1104=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.336504, -1.965851), title: 'Buxworth (SK23 7NJ)', zIndex: 1 }); // place 1105: Bugsworth Basin, SK23 7NE var a1105=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.335572, -1.971951), title: 'Bugsworth Basin (SK23 7NE)', zIndex: 1 }); // place 1106: Black Brook Canal, SK23 7NE var a1106=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.337447, -1.981353), title: 'Black Brook Canal (SK23 7NE)', zIndex: 1 }); // place 1107: Rievaulx Abbey, YO62 5LB var a1107=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.257261, -1.116039), title: 'Rievaulx Abbey (YO62 5LB)', zIndex: 1 }); // place 1108: Clay Bank Car Park, TS9 7HX var a1108=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.424545, -1.119356), title: 'Clay Bank Car Park (TS9 7HX)', zIndex: 1 }); // place 1109: Redcar Beacon, TS10 3AA var a1109=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.619963, -1.068196), title: 'Redcar Beacon (TS10 3AA)', zIndex: 1 }); // place 1110: Redcar Lake, TS10 5BJ var a1110=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.620444, -1.075931), title: 'Redcar Lake (TS10 5BJ)', zIndex: 1 }); // place 1111: Redcar Beach, TS10 3AA var a1111=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.622030, -1.071471), title: 'Redcar Beach (TS10 3AA)', zIndex: 1 }); // place 1112: Oil Radiator, BL7 0AW var a1112=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.644774, -2.393870), title: 'Oil Radiator (BL7 0AW)', zIndex: 1 }); // place 1113: Spare Tyre, NG7 1AN var a1113=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(52.952807, -1.168306), title: 'Spare Tyre (NG7 1AN)', zIndex: 1 }); // place 1114: Fallowfield Retail Park, M14 6FS var a1114=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.443439, -2.204835), title: 'Fallowfield Retail Park (M14 6FS)', zIndex: 1 }); // place 1115: Platt Fields Park, M14 6LA var a1115=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.445349, -2.226502), title: 'Platt Fields Park (M14 6LA)', zIndex: 1 }); // place 1116: Sycamore Road, BL8 3EH var a1116=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.607806, -2.334201), title: 'Sycamore Road (BL8 3EH)', zIndex: 1 }); // place 1117: Booth Street, BL8 3JH var a1117=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.605788, -2.336583), title: 'Booth Street (BL8 3JH)', zIndex: 1 }); // place 1118: Ainsworth, BL2 5SW var a1118=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.587559, -2.353535), title: 'Ainsworth (BL2 5SW)', zIndex: 1 }); // place 1119: Black Bull Inn, BL7 0AF var a1119=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.642220, -2.396949), title: 'Black Bull Inn (BL7 0AF)', zIndex: 1 }); // place 1120: St Oswald`s Church, LA22 9SW var a1120=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.457452, -3.023778), title: 'St Oswald`s Church (LA22 9SW)', zIndex: 1 }); // place 1121: Broadgate, LA22 9TA var a1121=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.460505, -3.023326), title: 'Broadgate (LA22 9TA)', zIndex: 1 }); // place 1122: Three Shires Inn, LA22 9NZ var a1122=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.421491, -3.054913), title: 'Three Shires Inn (LA22 9NZ)', zIndex: 1 }); // place 1123: Little Langdale walk start, LA22 9NY var a1123=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.420650, -3.051683), title: 'Little Langdale walk start (LA22 9NY)', zIndex: 1 }); // place 1124: Bridge over River Brathay, LA22 9NY var a1124=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.419009, -3.052222), title: 'Bridge over River Brathay (LA22 9NY)', zIndex: 1 }); // place 1125: Forest path towards Hodge Close, LA21 8DJ var a1125=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.413162, -3.052458), title: 'Forest path towards Hodge Close (LA21 8DJ)', zIndex: 1 }); // place 1126: View over Green Slate Quarry, LA21 8DJ var a1126=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.407848, -3.052153), title: 'View over Green Slate Quarry (LA21 8DJ)', zIndex: 1 }); // place 1127: Hodge Close Green Slate Quarry, LA21 8DJ var a1127=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.406400, -3.053643), title: 'Hodge Close Green Slate Quarry (LA21 8DJ)', zIndex: 1 }); // place 1128: View over Fitz Steps, LA22 9PB var a1128=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.416734, -3.055773), title: 'View over Fitz Steps (LA22 9PB)', zIndex: 1 }); // place 1129: Slater`s Bridge, LA22 9PA var a1129=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(54.417775, -3.061656), title: 'Slater`s Bridge (LA22 9PA)', zIndex: 1 }); // place 1130: Rowlands Road, BL9 5NF var a1130=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.629234, -2.307813), title: 'Rowlands Road (BL9 5NF)', zIndex: 1 }); // place 1131: The Rock Shopping Centre, BL9 0BZ var a1131=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.594170, -2.291018), title: 'The Rock Shopping Centre (BL9 0BZ)', zIndex: 1 }); // place 1132: Mellor Waterfall 1, SK6 5NL var a1132=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.386771, -2.028329), title: 'Mellor Waterfall 1 (SK6 5NL)', zIndex: 1 }); // place 1133: Mellor Trig, SK6 5NL var a1133=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.382122, -2.021370), title: 'Mellor Trig (SK6 5NL)', zIndex: 1 }); // place 1134: Bridle swing, SK6 5NG var a1134=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.397790, -2.017597), title: 'Bridle swing (SK6 5NG)', zIndex: 1 }); // place 1135: Podnor Lane, SK6 5PT var a1135=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.393831, -2.016768), title: 'Podnor Lane (SK6 5PT)', zIndex: 1 }); // place 1136: Mellor Waterfall 2, SK6 5PT var a1136=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.394496, -2.018343), title: 'Mellor Waterfall 2 (SK6 5PT)', zIndex: 1 }); // place 1137: Commercial Road, E1 2PS var a1137=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.514356, -0.054335), title: 'Commercial Road (E1 2PS)', zIndex: 1 }); // place 1138: Gift Box Britain gift shop, WC2N 5AQ var a1138=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.507105, -0.123097), title: 'Gift Box Britain gift shop (WC2N 5AQ)', zIndex: 1 }); // place 1139: Diana Memorial Playground, W2 4RU var a1139=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.509565, -0.188376), title: 'Diana Memorial Playground (W2 4RU)', zIndex: 1 }); // place 1140: Kensington Gardens, W8 4PU var a1140=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.505600, -0.184737), title: 'Kensington Gardens (W8 4PU)', zIndex: 1 }); // place 1141: Anchor Bankside, SE1 9EF var a1141=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.507364, -0.093057), title: 'Anchor Bankside (SE1 9EF)', zIndex: 1 }); // place 1142: Cabot Square Fountain, E14 4QT var a1142=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.505336, -0.022990), title: 'Cabot Square Fountain (E14 4QT)', zIndex: 1 }); // place 1143: The Clew, E14 4QA var a1143=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.504494, -0.023093), title: 'The Clew (E14 4QA)', zIndex: 1 }); // place 1144: Canary Wharf Promenade, E14 8RP var a1144=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.505362, -0.027548), title: 'Canary Wharf Promenade (E14 8RP)', zIndex: 1 }); // place 1145: Canary Wharf Pier, E14 8RR var a1145=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(51.505392, -0.028886), title: 'Canary Wharf Pier (E14 8RR)', zIndex: 1 }); // place 1146: Warburton Toll Bridge, WA13 9ST var a1146=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.407528, -2.458962), title: 'Warburton Toll Bridge (WA13 9ST)', zIndex: 1 }); // place 1147: Wood Lane, M31 4JW var a1147=new google.maps.Marker({ map: map, icon: {url: 'place.png', anchor: new google.maps.Point(iRad, iRad)}, shape: {coord: [iRad, iRad, iRad], type: 'circle'}, position: new google.maps.LatLng(53.415149, -2.432668), title: 'Wood Lane (M31 4JW)', zIndex: 1 }); // // handlers // // handler for a1 google.maps.event.addListener(a1,'click',function() { map.setCenter(a1.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Heathrow Airport'; document.getElementById('comments').innerHTML = 'TW6 1EW '; }); // handler for a2 google.maps.event.addListener(a2,'click',function() { map.setCenter(a2.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brighton'; document.getElementById('comments').innerHTML = 'BN1 2TA '; }); // handler for a3 google.maps.event.addListener(a3,'click',function() { map.setCenter(a3.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sussex University'; document.getElementById('comments').innerHTML = 'BN1 9SA '; }); // handler for a4 google.maps.event.addListener(a4,'click',function() { map.setCenter(a4.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Victoria Coach Station'; document.getElementById('comments').innerHTML = 'SW1W 9TP '; }); // handler for a5 google.maps.event.addListener(a5,'click',function() { map.setCenter(a5.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Oxford'; document.getElementById('comments').innerHTML = 'OX1 3LU '; }); // handler for a6 google.maps.event.addListener(a6,'click',function() { map.setCenter(a6.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cambridge'; document.getElementById('comments').innerHTML = 'CB2 1TN '; }); // handler for a7 google.maps.event.addListener(a7,'click',function() { map.setCenter(a7.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brighton Pier'; document.getElementById('comments').innerHTML = 'BN2 1TW '; }); // handler for a8 google.maps.event.addListener(a8,'click',function() { map.setCenter(a8.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hove'; document.getElementById('comments').innerHTML = 'BN3 2JQ '; }); // handler for a9 google.maps.event.addListener(a9,'click',function() { map.setCenter(a9.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Royal Pavilion'; document.getElementById('comments').innerHTML = 'BN1 1EE '; }); // handler for a10 google.maps.event.addListener(a10,'click',function() { map.setCenter(a10.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brighton Marina Village'; document.getElementById('comments').innerHTML = 'BN2 5WA Must-visit place. Free parking for 4 hours'; }); // handler for a11 google.maps.event.addListener(a11,'click',function() { map.setCenter(a11.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Big Ben - Clock Tower'; document.getElementById('comments').innerHTML = 'SW1A 0AA '; }); // handler for a12 google.maps.event.addListener(a12,'click',function() { map.setCenter(a12.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Westminster Bridge'; document.getElementById('comments').innerHTML = 'SE1 7GL '; }); // handler for a13 google.maps.event.addListener(a13,'click',function() { map.setCenter(a13.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Jubilee Gardens'; document.getElementById('comments').innerHTML = 'SE1 7PG '; }); // handler for a14 google.maps.event.addListener(a14,'click',function() { map.setCenter(a14.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Golden Jubilee Bridge'; document.getElementById('comments').innerHTML = 'SE1 8NZ '; }); // handler for a15 google.maps.event.addListener(a15,'click',function() { map.setCenter(a15.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Trafalgar Square'; document.getElementById('comments').innerHTML = 'WC2N 5DN '; }); // handler for a16 google.maps.event.addListener(a16,'click',function() { map.setCenter(a16.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Whitehall'; document.getElementById('comments').innerHTML = 'SW1A 2NP '; }); // handler for a17 google.maps.event.addListener(a17,'click',function() { map.setCenter(a17.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Horse Guards Parade'; document.getElementById('comments').innerHTML = 'SW1A 2AX '; }); // handler for a18 google.maps.event.addListener(a18,'click',function() { map.setCenter(a18.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Downing Street'; document.getElementById('comments').innerHTML = 'SW1A 2AL '; }); // handler for a19 google.maps.event.addListener(a19,'click',function() { map.setCenter(a19.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Palace of Westminster'; document.getElementById('comments').innerHTML = 'SW1A 0AA '; }); // handler for a20 google.maps.event.addListener(a20,'click',function() { map.setCenter(a20.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Westminster Abbey'; document.getElementById('comments').innerHTML = 'SW1P 3JX '; }); // handler for a21 google.maps.event.addListener(a21,'click',function() { map.setCenter(a21.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The National Gallery'; document.getElementById('comments').innerHTML = 'WC2N 5DN '; }); // handler for a22 google.maps.event.addListener(a22,'click',function() { map.setCenter(a22.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Mall'; document.getElementById('comments').innerHTML = 'SW1A 2BJ '; }); // handler for a23 google.maps.event.addListener(a23,'click',function() { map.setCenter(a23.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St James`s Park'; document.getElementById('comments').innerHTML = 'SW1A 2BJ '; }); // handler for a24 google.maps.event.addListener(a24,'click',function() { map.setCenter(a24.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Buckingham Palace'; document.getElementById('comments').innerHTML = 'SW1A 1AA '; }); // handler for a25 google.maps.event.addListener(a25,'click',function() { map.setCenter(a25.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Green Park'; document.getElementById('comments').innerHTML = 'SW1A 1BW '; }); // handler for a26 google.maps.event.addListener(a26,'click',function() { map.setCenter(a26.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Horse Guards Square'; document.getElementById('comments').innerHTML = 'SW1A 2AX '; }); // handler for a27 google.maps.event.addListener(a27,'click',function() { map.setCenter(a27.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wellington Arch'; document.getElementById('comments').innerHTML = 'W1J 7JZ '; }); // handler for a28 google.maps.event.addListener(a28,'click',function() { map.setCenter(a28.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Marble Arch'; document.getElementById('comments').innerHTML = 'W1H 7DX '; }); // handler for a29 google.maps.event.addListener(a29,'click',function() { map.setCenter(a29.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hyde Park'; document.getElementById('comments').innerHTML = 'W2 2UH '; }); // handler for a30 google.maps.event.addListener(a30,'click',function() { map.setCenter(a30.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Albert Memorial'; document.getElementById('comments').innerHTML = 'W2 2UH '; }); // handler for a31 google.maps.event.addListener(a31,'click',function() { map.setCenter(a31.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Science Museum'; document.getElementById('comments').innerHTML = 'SW7 2DD '; }); // handler for a32 google.maps.event.addListener(a32,'click',function() { map.setCenter(a32.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Natural History Museum'; document.getElementById('comments').innerHTML = 'SW7 5BD '; }); // handler for a33 google.maps.event.addListener(a33,'click',function() { map.setCenter(a33.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Victoria and Albert Museum'; document.getElementById('comments').innerHTML = 'SW7 2RL '; }); // handler for a34 google.maps.event.addListener(a34,'click',function() { map.setCenter(a34.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Regent`s Park'; document.getElementById('comments').innerHTML = 'NW1 4NR '; }); // handler for a35 google.maps.event.addListener(a35,'click',function() { map.setCenter(a35.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Oxford Circus'; document.getElementById('comments').innerHTML = 'W1C 2DD '; }); // handler for a36 google.maps.event.addListener(a36,'click',function() { map.setCenter(a36.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Piccadilly Circus'; document.getElementById('comments').innerHTML = 'W1J 9HW '; }); // handler for a37 google.maps.event.addListener(a37,'click',function() { map.setCenter(a37.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Leicester Square'; document.getElementById('comments').innerHTML = 'WC2H 7LU '; }); // handler for a38 google.maps.event.addListener(a38,'click',function() { map.setCenter(a38.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Covent Garden'; document.getElementById('comments').innerHTML = 'WC2E 8RF '; }); // handler for a39 google.maps.event.addListener(a39,'click',function() { map.setCenter(a39.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Waterloo Bridge'; document.getElementById('comments').innerHTML = 'WC2R 2PP '; }); // handler for a40 google.maps.event.addListener(a40,'click',function() { map.setCenter(a40.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Millennium Bridge'; document.getElementById('comments').innerHTML = 'SE1 9JE '; }); // handler for a41 google.maps.event.addListener(a41,'click',function() { map.setCenter(a41.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tate Modern'; document.getElementById('comments').innerHTML = 'SE1 9TG '; }); // handler for a42 google.maps.event.addListener(a42,'click',function() { map.setCenter(a42.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'London Bridge'; document.getElementById('comments').innerHTML = 'EC4R 9HA '; }); // handler for a43 google.maps.event.addListener(a43,'click',function() { map.setCenter(a43.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Navigators Steampunk Statue'; document.getElementById('comments').innerHTML = 'SE1 2HD '; }); // handler for a44 google.maps.event.addListener(a44,'click',function() { map.setCenter(a44.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Queens Walk'; document.getElementById('comments').innerHTML = 'SE1 2AA '; }); // handler for a45 google.maps.event.addListener(a45,'click',function() { map.setCenter(a45.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tower Bridge'; document.getElementById('comments').innerHTML = 'E1W 1UN '; }); // handler for a46 google.maps.event.addListener(a46,'click',function() { map.setCenter(a46.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Minories'; document.getElementById('comments').innerHTML = 'EC3N 1LA '; }); // handler for a47 google.maps.event.addListener(a47,'click',function() { map.setCenter(a47.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Dickens Inn'; document.getElementById('comments').innerHTML = 'E1W 1UH '; }); // handler for a48 google.maps.event.addListener(a48,'click',function() { map.setCenter(a48.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bath'; document.getElementById('comments').innerHTML = 'BA1 1LT Convenient parking - Manvers Street Car Park, BA1 1JQ'; }); // handler for a49 google.maps.event.addListener(a49,'click',function() { map.setCenter(a49.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Royal Crescent, Bath'; document.getElementById('comments').innerHTML = 'BA1 2LR '; }); // handler for a50 google.maps.event.addListener(a50,'click',function() { map.setCenter(a50.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Preston Park, Brighton'; document.getElementById('comments').innerHTML = 'BN1 6SD '; }); // handler for a51 google.maps.event.addListener(a51,'click',function() { map.setCenter(a51.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stonehenge'; document.getElementById('comments').innerHTML = 'SP4 7DE '; }); // handler for a52 google.maps.event.addListener(a52,'click',function() { map.setCenter(a52.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Salisbury Cathedral'; document.getElementById('comments').innerHTML = 'SP1 2EJ '; }); // handler for a53 google.maps.event.addListener(a53,'click',function() { map.setCenter(a53.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Devils Dyke'; document.getElementById('comments').innerHTML = 'BN1 8YL Additional NT car park: (50.885549, -0.196375)'; }); // handler for a54 google.maps.event.addListener(a54,'click',function() { map.setCenter(a54.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lewes Castle'; document.getElementById('comments').innerHTML = 'BN7 1YU '; }); // handler for a55 google.maps.event.addListener(a55,'click',function() { map.setCenter(a55.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Long Man of Wilmington'; document.getElementById('comments').innerHTML = 'BN26 5SW '; }); // handler for a56 google.maps.event.addListener(a56,'click',function() { map.setCenter(a56.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hastings'; document.getElementById('comments').innerHTML = 'TN34 3DW '; }); // handler for a57 google.maps.event.addListener(a57,'click',function() { map.setCenter(a57.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Staines'; document.getElementById('comments').innerHTML = 'TW18 1AT '; }); // handler for a58 google.maps.event.addListener(a58,'click',function() { map.setCenter(a58.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Egham'; document.getElementById('comments').innerHTML = 'TW20 9HN '; }); // handler for a59 google.maps.event.addListener(a59,'click',function() { map.setCenter(a59.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Royal Holloway, University of London'; document.getElementById('comments').innerHTML = 'TW20 0EX '; }); // handler for a60 google.maps.event.addListener(a60,'click',function() { map.setCenter(a60.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hounslow Civic Centre'; document.getElementById('comments').innerHTML = 'TW3 4DN '; }); // handler for a61 google.maps.event.addListener(a61,'click',function() { map.setCenter(a61.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Windsor Castle'; document.getElementById('comments').innerHTML = 'SL4 1NJ '; }); // handler for a62 google.maps.event.addListener(a62,'click',function() { map.setCenter(a62.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eton'; document.getElementById('comments').innerHTML = 'SL4 6DB '; }); // handler for a63 google.maps.event.addListener(a63,'click',function() { map.setCenter(a63.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Englefield Green'; document.getElementById('comments').innerHTML = 'TW20 0PW '; }); // handler for a64 google.maps.event.addListener(a64,'click',function() { map.setCenter(a64.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Reading'; document.getElementById('comments').innerHTML = 'RG1 2BH '; }); // handler for a65 google.maps.event.addListener(a65,'click',function() { map.setCenter(a65.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tower of London'; document.getElementById('comments').innerHTML = 'EC3N 4AB '; }); // handler for a66 google.maps.event.addListener(a66,'click',function() { map.setCenter(a66.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Harrods'; document.getElementById('comments').innerHTML = 'SW1X 7XL '; }); // handler for a67 google.maps.event.addListener(a67,'click',function() { map.setCenter(a67.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tenby'; document.getElementById('comments').innerHTML = 'SA70 7HA '; }); // handler for a68 google.maps.event.addListener(a68,'click',function() { map.setCenter(a68.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rotherhithe'; document.getElementById('comments').innerHTML = 'SE16 5HD '; }); // handler for a69 google.maps.event.addListener(a69,'click',function() { map.setCenter(a69.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Carmarthen'; document.getElementById('comments').innerHTML = 'SA31 3BN '; }); // handler for a70 google.maps.event.addListener(a70,'click',function() { map.setCenter(a70.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester'; document.getElementById('comments').innerHTML = 'M1 1RG '; }); // handler for a71 google.maps.event.addListener(a71,'click',function() { map.setCenter(a71.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'One Central Park'; document.getElementById('comments').innerHTML = 'M40 5BP '; }); // handler for a72 google.maps.event.addListener(a72,'click',function() { map.setCenter(a72.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Openshaw'; document.getElementById('comments').innerHTML = 'M11 2WH '; }); // handler for a73 google.maps.event.addListener(a73,'click',function() { map.setCenter(a73.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Burnage'; document.getElementById('comments').innerHTML = 'M19 1FG '; }); // handler for a74 google.maps.event.addListener(a74,'click',function() { map.setCenter(a74.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'London Euston Station'; document.getElementById('comments').innerHTML = 'NW1 2DU '; }); // handler for a75 google.maps.event.addListener(a75,'click',function() { map.setCenter(a75.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester Airport'; document.getElementById('comments').innerHTML = 'M90 1QX '; }); // handler for a76 google.maps.event.addListener(a76,'click',function() { map.setCenter(a76.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Birmingham'; document.getElementById('comments').innerHTML = 'B5 4BU '; }); // handler for a77 google.maps.event.addListener(a77,'click',function() { map.setCenter(a77.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Alton Towers Theme Park'; document.getElementById('comments').innerHTML = 'ST10 4DB '; }); // handler for a78 google.maps.event.addListener(a78,'click',function() { map.setCenter(a78.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Thorpe Park Theme Park'; document.getElementById('comments').innerHTML = 'KT16 8PN '; }); // handler for a79 google.maps.event.addListener(a79,'click',function() { map.setCenter(a79.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Trafford Shopping Centre'; document.getElementById('comments').innerHTML = 'M17 8AA '; }); // handler for a80 google.maps.event.addListener(a80,'click',function() { map.setCenter(a80.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Marple Aqueduct'; document.getElementById('comments').innerHTML = 'SK6 5DT '; }); // handler for a81 google.maps.event.addListener(a81,'click',function() { map.setCenter(a81.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rochdale'; document.getElementById('comments').innerHTML = 'OL16 1LW '; }); // handler for a82 google.maps.event.addListener(a82,'click',function() { map.setCenter(a82.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Luton Airport'; document.getElementById('comments').innerHTML = 'LU2 9LY '; }); // handler for a83 google.maps.event.addListener(a83,'click',function() { map.setCenter(a83.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Bowness-on-Windermere'; document.getElementById('comments').innerHTML = 'LA23 3HQ '; }); // handler for a84 google.maps.event.addListener(a84,'click',function() { map.setCenter(a84.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Kirkstone Pass A592'; document.getElementById('comments').innerHTML = 'LA23 1PN '; }); // handler for a85 google.maps.event.addListener(a85,'click',function() { map.setCenter(a85.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Ullswater near Glenridding'; document.getElementById('comments').innerHTML = 'CA11 0NQ '; }); // handler for a86 google.maps.event.addListener(a86,'click',function() { map.setCenter(a86.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Ullswater'; document.getElementById('comments').innerHTML = 'CA11 0JS '; }); // handler for a87 google.maps.event.addListener(a87,'click',function() { map.setCenter(a87.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Pooley Bridge'; document.getElementById('comments').innerHTML = 'CA10 2NP '; }); // handler for a88 google.maps.event.addListener(a88,'click',function() { map.setCenter(a88.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Keswick'; document.getElementById('comments').innerHTML = 'CA12 5JR '; }); // handler for a89 google.maps.event.addListener(a89,'click',function() { map.setCenter(a89.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Castlerigg Stone Circle'; document.getElementById('comments').innerHTML = 'CA12 4RN '; }); // handler for a90 google.maps.event.addListener(a90,'click',function() { map.setCenter(a90.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Keswick, Isthmus Bay'; document.getElementById('comments').innerHTML = 'CA12 5DJ '; }); // handler for a91 google.maps.event.addListener(a91,'click',function() { map.setCenter(a91.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Derwent Water'; document.getElementById('comments').innerHTML = 'CA12 5UR '; }); // handler for a92 google.maps.event.addListener(a92,'click',function() { map.setCenter(a92.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Honister Pass'; document.getElementById('comments').innerHTML = 'CA12 5XW '; }); // handler for a93 google.maps.event.addListener(a93,'click',function() { map.setCenter(a93.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Crummock Water'; document.getElementById('comments').innerHTML = 'CA13 9UZ '; }); // handler for a94 google.maps.event.addListener(a94,'click',function() { map.setCenter(a94.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Whinlatter Pass'; document.getElementById('comments').innerHTML = 'CA12 5TW '; }); // handler for a95 google.maps.event.addListener(a95,'click',function() { map.setCenter(a95.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Broughton-in-Furness'; document.getElementById('comments').innerHTML = 'LA20 6JF '; }); // handler for a96 google.maps.event.addListener(a96,'click',function() { map.setCenter(a96.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Ambleside'; document.getElementById('comments').innerHTML = 'LA22 9AN '; }); // handler for a97 google.maps.event.addListener(a97,'click',function() { map.setCenter(a97.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Fell Foot Park'; document.getElementById('comments').innerHTML = 'LA12 8NN Fantastic place'; }); // handler for a98 google.maps.event.addListener(a98,'click',function() { map.setCenter(a98.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kensington'; document.getElementById('comments').innerHTML = 'SW5 9QN '; }); // handler for a99 google.maps.event.addListener(a99,'click',function() { map.setCenter(a99.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Barbican Centre'; document.getElementById('comments').innerHTML = 'EC2Y 8DS '; }); // handler for a100 google.maps.event.addListener(a100,'click',function() { map.setCenter(a100.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Morecambe'; document.getElementById('comments').innerHTML = 'LA4 4NJ '; }); // handler for a101 google.maps.event.addListener(a101,'click',function() { map.setCenter(a101.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Southport'; document.getElementById('comments').innerHTML = 'PR8 1SA '; }); // handler for a102 google.maps.event.addListener(a102,'click',function() { map.setCenter(a102.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'New Cross'; document.getElementById('comments').innerHTML = 'SE8 4BP '; }); // handler for a103 google.maps.event.addListener(a103,'click',function() { map.setCenter(a103.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Leeds'; document.getElementById('comments').innerHTML = 'LS1 8TL '; }); // handler for a104 google.maps.event.addListener(a104,'click',function() { map.setCenter(a104.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'London Eye'; document.getElementById('comments').innerHTML = 'SE1 7PB '; }); // handler for a105 google.maps.event.addListener(a105,'click',function() { map.setCenter(a105.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Leicester'; document.getElementById('comments').innerHTML = 'LE2 1RF '; }); // handler for a106 google.maps.event.addListener(a106,'click',function() { map.setCenter(a106.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Longtown Castle'; document.getElementById('comments').innerHTML = 'HR2 0LE '; }); // handler for a107 google.maps.event.addListener(a107,'click',function() { map.setCenter(a107.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Glossop'; document.getElementById('comments').innerHTML = 'SK13 8AP '; }); // handler for a108 google.maps.event.addListener(a108,'click',function() { map.setCenter(a108.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Snake Pass'; document.getElementById('comments').innerHTML = 'S33 0BJ '; }); // handler for a109 google.maps.event.addListener(a109,'click',function() { map.setCenter(a109.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak District, Castleton'; document.getElementById('comments').innerHTML = 'S33 8WN '; }); // handler for a110 google.maps.event.addListener(a110,'click',function() { map.setCenter(a110.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak District, Winnats Pass'; document.getElementById('comments').innerHTML = 'S33 8WP '; }); // handler for a111 google.maps.event.addListener(a111,'click',function() { map.setCenter(a111.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chinley'; document.getElementById('comments').innerHTML = 'SK23 6DT '; }); // handler for a112 google.maps.event.addListener(a112,'click',function() { map.setCenter(a112.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Buxton'; document.getElementById('comments').innerHTML = 'SK17 6RY '; }); // handler for a113 google.maps.event.addListener(a113,'click',function() { map.setCenter(a113.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hove Kingsway'; document.getElementById('comments').innerHTML = 'BN3 4QD '; }); // handler for a114 google.maps.event.addListener(a114,'click',function() { map.setCenter(a114.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over river Adur'; document.getElementById('comments').innerHTML = 'BN43 6RE '; }); // handler for a115 google.maps.event.addListener(a115,'click',function() { map.setCenter(a115.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bluewater Shopping Centre'; document.getElementById('comments').innerHTML = 'DA9 9ST '; }); // handler for a116 google.maps.event.addListener(a116,'click',function() { map.setCenter(a116.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kingston upon Hull'; document.getElementById('comments').innerHTML = 'HU12 8AX '; }); // handler for a117 google.maps.event.addListener(a117,'click',function() { map.setCenter(a117.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak District, Woodhead Reservoir'; document.getElementById('comments').innerHTML = 'SK13 1JA '; }); // handler for a118 google.maps.event.addListener(a118,'click',function() { map.setCenter(a118.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Worcester'; document.getElementById('comments').innerHTML = 'WR1 2JF '; }); // handler for a119 google.maps.event.addListener(a119,'click',function() { map.setCenter(a119.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rhayader'; document.getElementById('comments').innerHTML = 'LD6 5AP '; }); // handler for a120 google.maps.event.addListener(a120,'click',function() { map.setCenter(a120.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aberystwyth'; document.getElementById('comments').innerHTML = 'SY23 2DH '; }); // handler for a121 google.maps.event.addListener(a121,'click',function() { map.setCenter(a121.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aberystwyth Castle'; document.getElementById('comments').innerHTML = 'SY23 2AU '; }); // handler for a122 google.maps.event.addListener(a122,'click',function() { map.setCenter(a122.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Aberystwyth'; document.getElementById('comments').innerHTML = 'SY23 2DH '; }); // handler for a123 google.maps.event.addListener(a123,'click',function() { map.setCenter(a123.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bournemouth'; document.getElementById('comments').innerHTML = 'BH2 5AA '; }); // handler for a124 google.maps.event.addListener(a124,'click',function() { map.setCenter(a124.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tottenham Hale'; document.getElementById('comments').innerHTML = 'N17 9HE '; }); // handler for a125 google.maps.event.addListener(a125,'click',function() { map.setCenter(a125.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'National Media Museum'; document.getElementById('comments').innerHTML = 'BD1 1NQ Free entry. Very interesting day out'; }); // handler for a126 google.maps.event.addListener(a126,'click',function() { map.setCenter(a126.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Manchester College - Northenden'; document.getElementById('comments').innerHTML = 'M23 0DD '; }); // handler for a127 google.maps.event.addListener(a127,'click',function() { map.setCenter(a127.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'DVLA Test Centre'; document.getElementById('comments').innerHTML = 'BL3 2AW '; }); // handler for a128 google.maps.event.addListener(a128,'click',function() { map.setCenter(a128.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Southend-on-Sea'; document.getElementById('comments').innerHTML = 'SS1 2EJ '; }); // handler for a129 google.maps.event.addListener(a129,'click',function() { map.setCenter(a129.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackley'; document.getElementById('comments').innerHTML = 'M9 8DX '; }); // handler for a130 google.maps.event.addListener(a130,'click',function() { map.setCenter(a130.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Birchington'; document.getElementById('comments').innerHTML = 'CT7 9QQ '; }); // handler for a131 google.maps.event.addListener(a131,'click',function() { map.setCenter(a131.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Westgate-on-Sea'; document.getElementById('comments').innerHTML = 'CT8 8QG '; }); // handler for a132 google.maps.event.addListener(a132,'click',function() { map.setCenter(a132.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sunken Garden'; document.getElementById('comments').innerHTML = 'CT9 5EJ '; }); // handler for a133 google.maps.event.addListener(a133,'click',function() { map.setCenter(a133.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Deal'; document.getElementById('comments').innerHTML = 'CT14 7AH '; }); // handler for a134 google.maps.event.addListener(a134,'click',function() { map.setCenter(a134.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rye Castle Museum'; document.getElementById('comments').innerHTML = 'TN31 7HH '; }); // handler for a135 google.maps.event.addListener(a135,'click',function() { map.setCenter(a135.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eastbourne Pier'; document.getElementById('comments').innerHTML = 'BN21 3EL '; }); // handler for a136 google.maps.event.addListener(a136,'click',function() { map.setCenter(a136.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eastbourne'; document.getElementById('comments').innerHTML = 'BN21 4EE '; }); // handler for a137 google.maps.event.addListener(a137,'click',function() { map.setCenter(a137.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Seven Sisters'; document.getElementById('comments').innerHTML = 'BN20 0AE '; }); // handler for a138 google.maps.event.addListener(a138,'click',function() { map.setCenter(a138.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Orrell'; document.getElementById('comments').innerHTML = 'WN5 7AZ '; }); // handler for a139 google.maps.event.addListener(a139,'click',function() { map.setCenter(a139.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llandudno'; document.getElementById('comments').innerHTML = 'LL30 1BZ '; }); // handler for a140 google.maps.event.addListener(a140,'click',function() { map.setCenter(a140.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llandudno panorama'; document.getElementById('comments').innerHTML = 'LL30 2JP '; }); // handler for a141 google.maps.event.addListener(a141,'click',function() { map.setCenter(a141.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Great Orme'; document.getElementById('comments').innerHTML = 'LL30 2XF '; }); // handler for a142 google.maps.event.addListener(a142,'click',function() { map.setCenter(a142.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Menai Suspension Bridge'; document.getElementById('comments').innerHTML = 'LL57 2HZ '; }); // handler for a143 google.maps.event.addListener(a143,'click',function() { map.setCenter(a143.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Bangor Pier, Anglesey'; document.getElementById('comments').innerHTML = 'LL59 5PE '; }); // handler for a144 google.maps.event.addListener(a144,'click',function() { map.setCenter(a144.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bull Bay, Anglesey'; document.getElementById('comments').innerHTML = 'LL68 9RY '; }); // handler for a145 google.maps.event.addListener(a145,'click',function() { map.setCenter(a145.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Anglezarke Viewpoint'; document.getElementById('comments').innerHTML = 'PR6 9DW '; }); // handler for a146 google.maps.event.addListener(a146,'click',function() { map.setCenter(a146.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Yarrow Reservoir'; document.getElementById('comments').innerHTML = 'PR6 9HD '; }); // handler for a147 google.maps.event.addListener(a147,'click',function() { map.setCenter(a147.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Alance Bridge'; document.getElementById('comments').innerHTML = 'BL6 7SJ '; }); // handler for a148 google.maps.event.addListener(a148,'click',function() { map.setCenter(a148.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lower Rivington Reservoir'; document.getElementById('comments').innerHTML = 'BL6 7SE '; }); // handler for a149 google.maps.event.addListener(a149,'click',function() { map.setCenter(a149.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Boggart Hole Clough'; document.getElementById('comments').innerHTML = 'M9 7BR '; }); // handler for a150 google.maps.event.addListener(a150,'click',function() { map.setCenter(a150.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rhuddlan Castle'; document.getElementById('comments').innerHTML = 'LL18 5AD '; }); // handler for a151 google.maps.event.addListener(a151,'click',function() { map.setCenter(a151.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rhyl'; document.getElementById('comments').innerHTML = 'LL18 1HD '; }); // handler for a152 google.maps.event.addListener(a152,'click',function() { map.setCenter(a152.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Colwyn Bay'; document.getElementById('comments').innerHTML = 'LL28 4BY '; }); // handler for a153 google.maps.event.addListener(a153,'click',function() { map.setCenter(a153.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Southport Beach'; document.getElementById('comments').innerHTML = 'PR8 2QA '; }); // handler for a154 google.maps.event.addListener(a154,'click',function() { map.setCenter(a154.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Hardknott Roman Fort'; document.getElementById('comments').innerHTML = 'CA19 1TH '; }); // handler for a155 google.maps.event.addListener(a155,'click',function() { map.setCenter(a155.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Wast Water'; document.getElementById('comments').innerHTML = 'CA20 1ET '; }); // handler for a156 google.maps.event.addListener(a156,'click',function() { map.setCenter(a156.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Albert Dock'; document.getElementById('comments').innerHTML = 'L3 4AD '; }); // handler for a157 google.maps.event.addListener(a157,'click',function() { map.setCenter(a157.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dartmouth - Kingswear (Lower Ferry)'; document.getElementById('comments').innerHTML = 'TQ6 0AA '; }); // handler for a158 google.maps.event.addListener(a158,'click',function() { map.setCenter(a158.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dartmouth Castle'; document.getElementById('comments').innerHTML = 'TQ6 0JN '; }); // handler for a159 google.maps.event.addListener(a159,'click',function() { map.setCenter(a159.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Buckfast Abbey'; document.getElementById('comments').innerHTML = 'TQ11 0EE Fantastic place'; }); // handler for a160 google.maps.event.addListener(a160,'click',function() { map.setCenter(a160.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Teignmouth'; document.getElementById('comments').innerHTML = 'TQ14 8BB '; }); // handler for a161 google.maps.event.addListener(a161,'click',function() { map.setCenter(a161.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Exeter'; document.getElementById('comments').innerHTML = 'EX4 3HP '; }); // handler for a162 google.maps.event.addListener(a162,'click',function() { map.setCenter(a162.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bicton Park Botanical Gardens'; document.getElementById('comments').innerHTML = 'EX9 7BJ Hardly remember it'; }); // handler for a163 google.maps.event.addListener(a163,'click',function() { map.setCenter(a163.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sidmouth'; document.getElementById('comments').innerHTML = 'EX10 8BE '; }); // handler for a164 google.maps.event.addListener(a164,'click',function() { map.setCenter(a164.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Seaton Tramway (start)'; document.getElementById('comments').innerHTML = 'EX12 2TB '; }); // handler for a165 google.maps.event.addListener(a165,'click',function() { map.setCenter(a165.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Seaton Tramway (end)'; document.getElementById('comments').innerHTML = 'EX24 6HA '; }); // handler for a166 google.maps.event.addListener(a166,'click',function() { map.setCenter(a166.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Portland'; document.getElementById('comments').innerHTML = 'DT5 2EN '; }); // handler for a167 google.maps.event.addListener(a167,'click',function() { map.setCenter(a167.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bennetts Water Gardens'; document.getElementById('comments').innerHTML = 'DT3 4AF Monet Bridge Replica'; }); // handler for a168 google.maps.event.addListener(a168,'click',function() { map.setCenter(a168.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Poole'; document.getElementById('comments').innerHTML = 'BH15 1HJ '; }); // handler for a169 google.maps.event.addListener(a169,'click',function() { map.setCenter(a169.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Jedburgh'; document.getElementById('comments').innerHTML = 'TD8 6BJ '; }); // handler for a170 google.maps.event.addListener(a170,'click',function() { map.setCenter(a170.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Portobello Beach'; document.getElementById('comments').innerHTML = 'EH15 2ER '; }); // handler for a171 google.maps.event.addListener(a171,'click',function() { map.setCenter(a171.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'National Galleries of Scotland - Modern Two'; document.getElementById('comments').innerHTML = 'EH4 3DS '; }); // handler for a172 google.maps.event.addListener(a172,'click',function() { map.setCenter(a172.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View from Edinburgh Castle'; document.getElementById('comments').innerHTML = 'EH1 2NG '; }); // handler for a173 google.maps.event.addListener(a173,'click',function() { map.setCenter(a173.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Camera Obscura'; document.getElementById('comments').innerHTML = 'EH1 2ND '; }); // handler for a174 google.maps.event.addListener(a174,'click',function() { map.setCenter(a174.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Waverley Bridge'; document.getElementById('comments').innerHTML = 'EH1 1BQ '; }); // handler for a175 google.maps.event.addListener(a175,'click',function() { map.setCenter(a175.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dreaming Spires'; document.getElementById('comments').innerHTML = 'EH1 3AA '; }); // handler for a176 google.maps.event.addListener(a176,'click',function() { map.setCenter(a176.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Calton Hill'; document.getElementById('comments').innerHTML = 'EH7 5BL '; }); // handler for a177 google.maps.event.addListener(a177,'click',function() { map.setCenter(a177.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A82 bridge'; document.getElementById('comments').innerHTML = 'PH33 6SB '; }); // handler for a178 google.maps.event.addListener(a178,'click',function() { map.setCenter(a178.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gallery in the Wood'; document.getElementById('comments').innerHTML = 'PH49 4JD '; }); // handler for a179 google.maps.event.addListener(a179,'click',function() { map.setCenter(a179.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Oban'; document.getElementById('comments').innerHTML = 'PA34 5QD '; }); // handler for a180 google.maps.event.addListener(a180,'click',function() { map.setCenter(a180.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Glasgow'; document.getElementById('comments').innerHTML = 'G2 1DY '; }); // handler for a181 google.maps.event.addListener(a181,'click',function() { map.setCenter(a181.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sandymoor Community Hall'; document.getElementById('comments').innerHTML = 'WA7 1XU Russian Ball in Runcorn'; }); // handler for a182 google.maps.event.addListener(a182,'click',function() { map.setCenter(a182.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Village Hotels Warrington'; document.getElementById('comments').innerHTML = 'WA1 1QA '; }); // handler for a183 google.maps.event.addListener(a183,'click',function() { map.setCenter(a183.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Westbrook Centre'; document.getElementById('comments').innerHTML = 'WA5 8UD '; }); // handler for a184 google.maps.event.addListener(a184,'click',function() { map.setCenter(a184.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Warrington'; document.getElementById('comments').innerHTML = 'WA1 1RH '; }); // handler for a185 google.maps.event.addListener(a185,'click',function() { map.setCenter(a185.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stockton Heath'; document.getElementById('comments').innerHTML = 'WA4 6LG '; }); // handler for a186 google.maps.event.addListener(a186,'click',function() { map.setCenter(a186.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lymm'; document.getElementById('comments').innerHTML = 'WA13 0HU '; }); // handler for a187 google.maps.event.addListener(a187,'click',function() { map.setCenter(a187.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lymm Dam'; document.getElementById('comments').innerHTML = 'WA13 0AS '; }); // handler for a188 google.maps.event.addListener(a188,'click',function() { map.setCenter(a188.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newton-le-Willows'; document.getElementById('comments').innerHTML = 'WA12 8EF '; }); // handler for a189 google.maps.event.addListener(a189,'click',function() { map.setCenter(a189.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sychnant Pass, Conwy Mountains'; document.getElementById('comments').innerHTML = 'LL32 8BJ '; }); // handler for a190 google.maps.event.addListener(a190,'click',function() { map.setCenter(a190.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gatwick Airport'; document.getElementById('comments').innerHTML = 'RH6 0PH '; }); // handler for a191 google.maps.event.addListener(a191,'click',function() { map.setCenter(a191.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cheshire Oaks Designer Outlet'; document.getElementById('comments').innerHTML = 'CH65 9JJ '; }); // handler for a192 google.maps.event.addListener(a192,'click',function() { map.setCenter(a192.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester Cathedral'; document.getElementById('comments').innerHTML = 'M3 1SX '; }); // handler for a193 google.maps.event.addListener(a193,'click',function() { map.setCenter(a193.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chester Zoo'; document.getElementById('comments').innerHTML = 'CH2 1EU '; }); // handler for a194 google.maps.event.addListener(a194,'click',function() { map.setCenter(a194.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bala Lake, Snowdonia'; document.getElementById('comments').innerHTML = 'LL23 7YE '; }); // handler for a195 google.maps.event.addListener(a195,'click',function() { map.setCenter(a195.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nolton Haven'; document.getElementById('comments').innerHTML = 'SA62 3NH '; }); // handler for a196 google.maps.event.addListener(a196,'click',function() { map.setCenter(a196.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nolton Stables'; document.getElementById('comments').innerHTML = 'SA62 3NW '; }); // handler for a197 google.maps.event.addListener(a197,'click',function() { map.setCenter(a197.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Burton Ferry near Cleddau Bridge'; document.getElementById('comments').innerHTML = 'SA73 1NY '; }); // handler for a198 google.maps.event.addListener(a198,'click',function() { map.setCenter(a198.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pembroke Dock'; document.getElementById('comments').innerHTML = 'SA72 6TR '; }); // handler for a199 google.maps.event.addListener(a199,'click',function() { map.setCenter(a199.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Carew Castle'; document.getElementById('comments').innerHTML = 'SA70 8SN '; }); // handler for a200 google.maps.event.addListener(a200,'click',function() { map.setCenter(a200.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tresaith'; document.getElementById('comments').innerHTML = 'SA43 2JL '; }); // handler for a201 google.maps.event.addListener(a201,'click',function() { map.setCenter(a201.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Warwick Castle'; document.getElementById('comments').innerHTML = 'CV34 4QU '; }); // handler for a202 google.maps.event.addListener(a202,'click',function() { map.setCenter(a202.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Woolston, Warrington'; document.getElementById('comments').innerHTML = 'WA1 4RW '; }); // handler for a203 google.maps.event.addListener(a203,'click',function() { map.setCenter(a203.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tatton Park'; document.getElementById('comments').innerHTML = 'WA16 6QN '; }); // handler for a204 google.maps.event.addListener(a204,'click',function() { map.setCenter(a204.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Guildford'; document.getElementById('comments').innerHTML = 'GU1 3SA '; }); // handler for a205 google.maps.event.addListener(a205,'click',function() { map.setCenter(a205.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bourne'; document.getElementById('comments').innerHTML = 'PE10 9LB '; }); // handler for a206 google.maps.event.addListener(a206,'click',function() { map.setCenter(a206.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Spalding'; document.getElementById('comments').innerHTML = 'PE12 6EU '; }); // handler for a207 google.maps.event.addListener(a207,'click',function() { map.setCenter(a207.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stratford-upon-Avon'; document.getElementById('comments').innerHTML = 'CV37 6QW '; }); // handler for a208 google.maps.event.addListener(a208,'click',function() { map.setCenter(a208.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Silverstone'; document.getElementById('comments').innerHTML = 'NN12 8TN '; }); // handler for a209 google.maps.event.addListener(a209,'click',function() { map.setCenter(a209.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aldershot'; document.getElementById('comments').innerHTML = 'GU11 3JP '; }); // handler for a210 google.maps.event.addListener(a210,'click',function() { map.setCenter(a210.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Camberley'; document.getElementById('comments').innerHTML = 'GU15 3PT '; }); // handler for a211 google.maps.event.addListener(a211,'click',function() { map.setCenter(a211.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Heaton Park'; document.getElementById('comments').innerHTML = 'M25 2SW '; }); // handler for a212 google.maps.event.addListener(a212,'click',function() { map.setCenter(a212.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Marford'; document.getElementById('comments').innerHTML = 'LL12 8TA '; }); // handler for a213 google.maps.event.addListener(a213,'click',function() { map.setCenter(a213.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chester'; document.getElementById('comments').innerHTML = 'CH1 1ES '; }); // handler for a214 google.maps.event.addListener(a214,'click',function() { map.setCenter(a214.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridge over Dart, Dartmoor National Park'; document.getElementById('comments').innerHTML = 'TQ13 7NT '; }); // handler for a215 google.maps.event.addListener(a215,'click',function() { map.setCenter(a215.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tamar Bridge'; document.getElementById('comments').innerHTML = 'PL5 1LP '; }); // handler for a216 google.maps.event.addListener(a216,'click',function() { map.setCenter(a216.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Seaview Caravan Park'; document.getElementById('comments').innerHTML = 'PL13 2JE '; }); // handler for a217 google.maps.event.addListener(a217,'click',function() { map.setCenter(a217.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Polperro'; document.getElementById('comments').innerHTML = 'PL13 2QZ Unbelievable place'; }); // handler for a218 google.maps.event.addListener(a218,'click',function() { map.setCenter(a218.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Michael`s Mount'; document.getElementById('comments').innerHTML = 'TR17 0HS Fantastic place. At low tide, can walk to it!'; }); // handler for a219 google.maps.event.addListener(a219,'click',function() { map.setCenter(a219.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eden Project'; document.getElementById('comments').innerHTML = 'PL24 2SG Expensive and complete rubbish. Want my money back'; }); // handler for a220 google.maps.event.addListener(a220,'click',function() { map.setCenter(a220.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fowey'; document.getElementById('comments').innerHTML = 'PL23 1JH '; }); // handler for a221 google.maps.event.addListener(a221,'click',function() { map.setCenter(a221.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Catherine`s Castle'; document.getElementById('comments').innerHTML = 'PL23 1JH '; }); // handler for a222 google.maps.event.addListener(a222,'click',function() { map.setCenter(a222.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'River Tamar near Cotehele'; document.getElementById('comments').innerHTML = 'PL12 6TA '; }); // handler for a223 google.maps.event.addListener(a223,'click',function() { map.setCenter(a223.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cotehele'; document.getElementById('comments').innerHTML = 'PL12 6TA '; }); // handler for a224 google.maps.event.addListener(a224,'click',function() { map.setCenter(a224.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Buckland Abbey'; document.getElementById('comments').innerHTML = 'PL20 6EY '; }); // handler for a225 google.maps.event.addListener(a225,'click',function() { map.setCenter(a225.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Looe'; document.getElementById('comments').innerHTML = 'PL13 1HH '; }); // handler for a226 google.maps.event.addListener(a226,'click',function() { map.setCenter(a226.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lanhydrock'; document.getElementById('comments').innerHTML = 'PL30 5AD '; }); // handler for a227 google.maps.event.addListener(a227,'click',function() { map.setCenter(a227.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'York'; document.getElementById('comments').innerHTML = 'YO1 7EJ '; }); // handler for a228 google.maps.event.addListener(a228,'click',function() { map.setCenter(a228.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lyme Park'; document.getElementById('comments').innerHTML = 'SK12 2NR Follow postcode but stay on A6 - the entrance is off A6 only'; }); // handler for a229 google.maps.event.addListener(a229,'click',function() { map.setCenter(a229.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newtown'; document.getElementById('comments').innerHTML = 'SY16 1LP '; }); // handler for a230 google.maps.event.addListener(a230,'click',function() { map.setCenter(a230.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Arrochar'; document.getElementById('comments').innerHTML = 'G83 7AU '; }); // handler for a231 google.maps.event.addListener(a231,'click',function() { map.setCenter(a231.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'West Highland Way'; document.getElementById('comments').innerHTML = 'PA36 4AE '; }); // handler for a232 google.maps.event.addListener(a232,'click',function() { map.setCenter(a232.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fort William'; document.getElementById('comments').innerHTML = 'PH33 6DY '; }); // handler for a233 google.maps.event.addListener(a233,'click',function() { map.setCenter(a233.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Stalker View'; document.getElementById('comments').innerHTML = 'PA38 4BL '; }); // handler for a234 google.maps.event.addListener(a234,'click',function() { map.setCenter(a234.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lochgilphead'; document.getElementById('comments').innerHTML = 'PA31 8JP '; }); // handler for a235 google.maps.event.addListener(a235,'click',function() { map.setCenter(a235.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Inveraray'; document.getElementById('comments').innerHTML = 'PA32 8XB '; }); // handler for a236 google.maps.event.addListener(a236,'click',function() { map.setCenter(a236.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Helensburgh'; document.getElementById('comments').innerHTML = 'G84 7PA '; }); // handler for a237 google.maps.event.addListener(a237,'click',function() { map.setCenter(a237.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dumbarton Castle'; document.getElementById('comments').innerHTML = 'G82 1JJ '; }); // handler for a238 google.maps.event.addListener(a238,'click',function() { map.setCenter(a238.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Wallace Collection'; document.getElementById('comments').innerHTML = 'W1U 3BN '; }); // handler for a239 google.maps.event.addListener(a239,'click',function() { map.setCenter(a239.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Royal Albert Hall'; document.getElementById('comments').innerHTML = 'SW7 2AP '; }); // handler for a240 google.maps.event.addListener(a240,'click',function() { map.setCenter(a240.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kew Gardens'; document.getElementById('comments').innerHTML = 'TW9 3AF '; }); // handler for a241 google.maps.event.addListener(a241,'click',function() { map.setCenter(a241.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newcastle upon Tyne'; document.getElementById('comments').innerHTML = 'NE1 1RQ '; }); // handler for a242 google.maps.event.addListener(a242,'click',function() { map.setCenter(a242.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Whitley Bay'; document.getElementById('comments').innerHTML = 'NE26 1AW '; }); // handler for a243 google.maps.event.addListener(a243,'click',function() { map.setCenter(a243.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lincoln'; document.getElementById('comments').innerHTML = 'LN5 7DH '; }); // handler for a244 google.maps.event.addListener(a244,'click',function() { map.setCenter(a244.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Skegness'; document.getElementById('comments').innerHTML = 'PE25 3HH '; }); // handler for a245 google.maps.event.addListener(a245,'click',function() { map.setCenter(a245.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Walton Gardens'; document.getElementById('comments').innerHTML = 'WA4 6SN '; }); // handler for a246 google.maps.event.addListener(a246,'click',function() { map.setCenter(a246.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Barnsley'; document.getElementById('comments').innerHTML = 'S70 1RR '; }); // handler for a247 google.maps.event.addListener(a247,'click',function() { map.setCenter(a247.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Holmfirth'; document.getElementById('comments').innerHTML = 'HD9 2TT '; }); // handler for a248 google.maps.event.addListener(a248,'click',function() { map.setCenter(a248.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Royal Academy of Arts'; document.getElementById('comments').innerHTML = 'W1J 0BD '; }); // handler for a249 google.maps.event.addListener(a249,'click',function() { map.setCenter(a249.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Primrose Hill'; document.getElementById('comments').innerHTML = 'NW3 3AX '; }); // handler for a250 google.maps.event.addListener(a250,'click',function() { map.setCenter(a250.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Winefride`s Well, Holywell'; document.getElementById('comments').innerHTML = 'CH8 7PN '; }); // handler for a251 google.maps.event.addListener(a251,'click',function() { map.setCenter(a251.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mompesson House'; document.getElementById('comments').innerHTML = 'SP1 2EL '; }); // handler for a252 google.maps.event.addListener(a252,'click',function() { map.setCenter(a252.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bicester Village Designer Outlet'; document.getElementById('comments').innerHTML = 'OX26 6WD '; }); // handler for a253 google.maps.event.addListener(a253,'click',function() { map.setCenter(a253.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ingleton Waterfalls Trail'; document.getElementById('comments').innerHTML = 'LA6 3ES '; }); // handler for a254 google.maps.event.addListener(a254,'click',function() { map.setCenter(a254.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Beaumaris Castle'; document.getElementById('comments').innerHTML = 'LL85 8AP '; }); // handler for a255 google.maps.event.addListener(a255,'click',function() { map.setCenter(a255.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackburn'; document.getElementById('comments').innerHTML = 'BB1 3HR '; }); // handler for a256 google.maps.event.addListener(a256,'click',function() { map.setCenter(a256.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sandford-on-Thames, Oxford'; document.getElementById('comments').innerHTML = 'OX4 4YD '; }); // handler for a257 google.maps.event.addListener(a257,'click',function() { map.setCenter(a257.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ozone Leisure Park'; document.getElementById('comments').innerHTML = 'OX4 4XP '; }); // handler for a258 google.maps.event.addListener(a258,'click',function() { map.setCenter(a258.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Waddesdon Manor'; document.getElementById('comments').innerHTML = 'HP18 0JH '; }); // handler for a259 google.maps.event.addListener(a259,'click',function() { map.setCenter(a259.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Skiddaw'; document.getElementById('comments').innerHTML = 'CA12 4PH Parking located at (54.618200, -3.115295)'; }); // handler for a260 google.maps.event.addListener(a260,'click',function() { map.setCenter(a260.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Snake Pass, Ladybower Reservoir'; document.getElementById('comments').innerHTML = 'S33 0AX '; }); // handler for a261 google.maps.event.addListener(a261,'click',function() { map.setCenter(a261.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Snake Pass, Sheffield border'; document.getElementById('comments').innerHTML = 'S6 6GL '; }); // handler for a262 google.maps.event.addListener(a262,'click',function() { map.setCenter(a262.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Snake Pass, view over Sheffield'; document.getElementById('comments').innerHTML = 'S10 5PU '; }); // handler for a263 google.maps.event.addListener(a263,'click',function() { map.setCenter(a263.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lydgate Lane, Sheffield'; document.getElementById('comments').innerHTML = 'S10 5FP '; }); // handler for a264 google.maps.event.addListener(a264,'click',function() { map.setCenter(a264.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wentworth Castle Gardens'; document.getElementById('comments').innerHTML = 'S75 3EN '; }); // handler for a265 google.maps.event.addListener(a265,'click',function() { map.setCenter(a265.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Formby Beach'; document.getElementById('comments').innerHTML = 'L37 1LJ '; }); // handler for a266 google.maps.event.addListener(a266,'click',function() { map.setCenter(a266.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester Town Hall'; document.getElementById('comments').innerHTML = 'M2 5DB '; }); // handler for a267 google.maps.event.addListener(a267,'click',function() { map.setCenter(a267.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Meadowhall Shopping Centre'; document.getElementById('comments').innerHTML = 'S9 1EP '; }); // handler for a268 google.maps.event.addListener(a268,'click',function() { map.setCenter(a268.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dunham Massey'; document.getElementById('comments').innerHTML = 'WA14 4SJ '; }); // handler for a269 google.maps.event.addListener(a269,'click',function() { map.setCenter(a269.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Yorkshire Sculpture Park'; document.getElementById('comments').innerHTML = 'WF4 4JX Fantastic place. Admission is free, you only pay for parking (reasonable). Outstanding experience'; }); // handler for a270 google.maps.event.addListener(a270,'click',function() { map.setCenter(a270.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chatsworth'; document.getElementById('comments').innerHTML = 'DE45 1PP Wait for a wonderful day, bring a good camera.. and you will get lifetime worth photos!'; }); // handler for a271 google.maps.event.addListener(a271,'click',function() { map.setCenter(a271.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackpool'; document.getElementById('comments').innerHTML = 'FY4 1BA '; }); // handler for a272 google.maps.event.addListener(a272,'click',function() { map.setCenter(a272.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pontcysyllte Aqueduct'; document.getElementById('comments').innerHTML = 'LL20 7RH Park at (52.964631, -3.087658)'; }); // handler for a273 google.maps.event.addListener(a273,'click',function() { map.setCenter(a273.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lowry and MediaCityUK'; document.getElementById('comments').innerHTML = 'M50 2EQ '; }); // handler for a274 google.maps.event.addListener(a274,'click',function() { map.setCenter(a274.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hideaway Lodges'; document.getElementById('comments').innerHTML = 'EH49 7RJ '; }); // handler for a275 google.maps.event.addListener(a275,'click',function() { map.setCenter(a275.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Falkirk Wheel'; document.getElementById('comments').innerHTML = 'FK1 4RS '; }); // handler for a276 google.maps.event.addListener(a276,'click',function() { map.setCenter(a276.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Linlithgow Palace'; document.getElementById('comments').innerHTML = 'EH49 7AL '; }); // handler for a277 google.maps.event.addListener(a277,'click',function() { map.setCenter(a277.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Comrie'; document.getElementById('comments').innerHTML = 'PH6 2EB '; }); // handler for a278 google.maps.event.addListener(a278,'click',function() { map.setCenter(a278.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Earn'; document.getElementById('comments').innerHTML = 'PH6 2NG '; }); // handler for a279 google.maps.event.addListener(a279,'click',function() { map.setCenter(a279.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Clan Macnab Burial Ground, Killin'; document.getElementById('comments').innerHTML = 'FK21 8SL '; }); // handler for a280 google.maps.event.addListener(a280,'click',function() { map.setCenter(a280.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Rannoch'; document.getElementById('comments').innerHTML = 'PH16 5PR '; }); // handler for a281 google.maps.event.addListener(a281,'click',function() { map.setCenter(a281.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aberlady'; document.getElementById('comments').innerHTML = 'EH32 0QB '; }); // handler for a282 google.maps.event.addListener(a282,'click',function() { map.setCenter(a282.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'North Berwick'; document.getElementById('comments').innerHTML = 'EH39 4AB '; }); // handler for a283 google.maps.event.addListener(a283,'click',function() { map.setCenter(a283.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dunbar Harbour'; document.getElementById('comments').innerHTML = 'EH42 1AD '; }); // handler for a284 google.maps.event.addListener(a284,'click',function() { map.setCenter(a284.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Berwick-upon-Tweed'; document.getElementById('comments').innerHTML = 'TD15 2AA '; }); // handler for a285 google.maps.event.addListener(a285,'click',function() { map.setCenter(a285.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lindisfarne Castle'; document.getElementById('comments').innerHTML = 'TD15 2SE Take into account tides when planning your visit'; }); // handler for a286 google.maps.event.addListener(a286,'click',function() { map.setCenter(a286.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Partington'; document.getElementById('comments').innerHTML = 'M31 4NZ '; }); // handler for a287 google.maps.event.addListener(a287,'click',function() { map.setCenter(a287.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Telford'; document.getElementById('comments').innerHTML = 'TF3 4DE '; }); // handler for a288 google.maps.event.addListener(a288,'click',function() { map.setCenter(a288.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ironbridge'; document.getElementById('comments').innerHTML = 'TF8 7JP '; }); // handler for a289 google.maps.event.addListener(a289,'click',function() { map.setCenter(a289.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'North Waltham, Basingstoke'; document.getElementById('comments').innerHTML = 'RG25 2BE '; }); // handler for a290 google.maps.event.addListener(a290,'click',function() { map.setCenter(a290.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Powis Castle'; document.getElementById('comments').innerHTML = 'SY21 8RF Great place, very well worth visiting. Dont miss gardens'; }); // handler for a291 google.maps.event.addListener(a291,'click',function() { map.setCenter(a291.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chirk Castle'; document.getElementById('comments').innerHTML = 'LL14 5AF '; }); // handler for a292 google.maps.event.addListener(a292,'click',function() { map.setCenter(a292.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'University of Glasgow'; document.getElementById('comments').innerHTML = 'G12 8QQ '; }); // handler for a293 google.maps.event.addListener(a293,'click',function() { map.setCenter(a293.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lancaster Castle'; document.getElementById('comments').innerHTML = 'LA1 1YJ '; }); // handler for a294 google.maps.event.addListener(a294,'click',function() { map.setCenter(a294.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sheffield Botanical Gardens'; document.getElementById('comments').innerHTML = 'S10 2LN Dont miss the cave ;)'; }); // handler for a295 google.maps.event.addListener(a295,'click',function() { map.setCenter(a295.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hampton Court Palace'; document.getElementById('comments').innerHTML = 'KT8 9AU '; }); // handler for a296 google.maps.event.addListener(a296,'click',function() { map.setCenter(a296.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester United Stadium'; document.getElementById('comments').innerHTML = 'M16 0RA '; }); // handler for a297 google.maps.event.addListener(a297,'click',function() { map.setCenter(a297.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Turton and Entwistle Reservoir'; document.getElementById('comments').innerHTML = 'BL7 0NF '; }); // handler for a298 google.maps.event.addListener(a298,'click',function() { map.setCenter(a298.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Alderley Edge'; document.getElementById('comments').innerHTML = 'SK9 7JT '; }); // handler for a299 google.maps.event.addListener(a299,'click',function() { map.setCenter(a299.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Caernarfon Castle'; document.getElementById('comments').innerHTML = 'LL55 2AY Excellent value for money. Fantastic day out and view!!'; }); // handler for a300 google.maps.event.addListener(a300,'click',function() { map.setCenter(a300.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kingston'; document.getElementById('comments').innerHTML = 'KT1 1UJ '; }); // handler for a301 google.maps.event.addListener(a301,'click',function() { map.setCenter(a301.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'New Malden'; document.getElementById('comments').innerHTML = 'KT3 3HB '; }); // handler for a302 google.maps.event.addListener(a302,'click',function() { map.setCenter(a302.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kenilworth Castle'; document.getElementById('comments').innerHTML = 'CV8 1NE Follow signs for parking. Alternative postcode for parking is CV8 1NF'; }); // handler for a303 google.maps.event.addListener(a303,'click',function() { map.setCenter(a303.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Paignton'; document.getElementById('comments').innerHTML = 'TQ4 6BW '; }); // handler for a304 google.maps.event.addListener(a304,'click',function() { map.setCenter(a304.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dartmouth - Kingswear (Higher Ferry)'; document.getElementById('comments').innerHTML = 'TQ6 9PQ '; }); // handler for a305 google.maps.event.addListener(a305,'click',function() { map.setCenter(a305.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dartmouth'; document.getElementById('comments').innerHTML = 'TQ6 9PW '; }); // handler for a306 google.maps.event.addListener(a306,'click',function() { map.setCenter(a306.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Totnes Castle'; document.getElementById('comments').innerHTML = 'TQ9 5NU '; }); // handler for a307 google.maps.event.addListener(a307,'click',function() { map.setCenter(a307.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Berry Pomeroy Castle'; document.getElementById('comments').innerHTML = 'TQ9 6LJ '; }); // handler for a308 google.maps.event.addListener(a308,'click',function() { map.setCenter(a308.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Torquay Beach'; document.getElementById('comments').innerHTML = 'TQ1 2HX '; }); // handler for a309 google.maps.event.addListener(a309,'click',function() { map.setCenter(a309.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Thatcher Point'; document.getElementById('comments').innerHTML = 'TQ1 2HA '; }); // handler for a310 google.maps.event.addListener(a310,'click',function() { map.setCenter(a310.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Torquay'; document.getElementById('comments').innerHTML = 'TQ2 5JG Good parking is located off Montpellier Rd, TQ1 1DD'; }); // handler for a311 google.maps.event.addListener(a311,'click',function() { map.setCenter(a311.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackpool Beach near Dartmouth'; document.getElementById('comments').innerHTML = 'TQ6 0RG '; }); // handler for a312 google.maps.event.addListener(a312,'click',function() { map.setCenter(a312.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Strete Gate Beach near Dartmouth'; document.getElementById('comments').innerHTML = 'TQ6 0RR There is footpath that leads on top of A379, there are few free parking spots there'; }); // handler for a313 google.maps.event.addListener(a313,'click',function() { map.setCenter(a313.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kingsbridge'; document.getElementById('comments').innerHTML = 'TQ7 1LN '; }); // handler for a314 google.maps.event.addListener(a314,'click',function() { map.setCenter(a314.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Plymouth'; document.getElementById('comments').innerHTML = 'PL1 3DE '; }); // handler for a315 google.maps.event.addListener(a315,'click',function() { map.setCenter(a315.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bristol'; document.getElementById('comments').innerHTML = 'BS1 5UH '; }); // handler for a316 google.maps.event.addListener(a316,'click',function() { map.setCenter(a316.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Clifton Suspension Bridge'; document.getElementById('comments').innerHTML = 'BS8 3PJ Park at Clifton Down'; }); // handler for a317 google.maps.event.addListener(a317,'click',function() { map.setCenter(a317.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Leeds Castle'; document.getElementById('comments').innerHTML = 'ME17 1PB Unreasonably expensive (in addition to that, claiming gift aid). There are places much cheaper but the same great'; }); // handler for a318 google.maps.event.addListener(a318,'click',function() { map.setCenter(a318.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Margaret`s at Cliffe'; document.getElementById('comments').innerHTML = 'CT15 6DY Great place to park and enjoy sea'; }); // handler for a319 google.maps.event.addListener(a319,'click',function() { map.setCenter(a319.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Margate'; document.getElementById('comments').innerHTML = 'CT9 5AQ Nice place to stop by. However, bars seem to be empty even on a Friday night'; }); // handler for a320 google.maps.event.addListener(a320,'click',function() { map.setCenter(a320.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dover Castle'; document.getElementById('comments').innerHTML = 'CT16 1HU Great view'; }); // handler for a321 google.maps.event.addListener(a321,'click',function() { map.setCenter(a321.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'White Cliffs of Dover'; document.getElementById('comments').innerHTML = 'CT16 1HJ Pleasant walk. Next time should go to the lighthouse'; }); // handler for a322 google.maps.event.addListener(a322,'click',function() { map.setCenter(a322.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Deal Castle'; document.getElementById('comments').innerHTML = 'CT14 7BA More interesting than it looks at first'; }); // handler for a323 google.maps.event.addListener(a323,'click',function() { map.setCenter(a323.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Canterbury Cathedral'; document.getElementById('comments').innerHTML = 'CT1 2EH Very big cathedral plus some grounds around. Reasonably priced. Best place to park - Queningate Car Park (CT1 2HJ)'; }); // handler for a324 google.maps.event.addListener(a324,'click',function() { map.setCenter(a324.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rossendale Snowboarding'; document.getElementById('comments').innerHTML = 'BB4 8RT '; }); // handler for a325 google.maps.event.addListener(a325,'click',function() { map.setCenter(a325.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Scunthorpe'; document.getElementById('comments').innerHTML = 'DN16 1AG '; }); // handler for a326 google.maps.event.addListener(a326,'click',function() { map.setCenter(a326.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pontefract Racecourse'; document.getElementById('comments').innerHTML = 'WF8 4QD '; }); // handler for a327 google.maps.event.addListener(a327,'click',function() { map.setCenter(a327.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brodsworth Hall'; document.getElementById('comments').innerHTML = 'DN5 7XJ '; }); // handler for a328 google.maps.event.addListener(a328,'click',function() { map.setCenter(a328.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wallasey'; document.getElementById('comments').innerHTML = 'CH45 4NW '; }); // handler for a329 google.maps.event.addListener(a329,'click',function() { map.setCenter(a329.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Jacob`s Ladder'; document.getElementById('comments').innerHTML = 'EH1 3DG '; }); // handler for a330 google.maps.event.addListener(a330,'click',function() { map.setCenter(a330.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Waverly Bridge'; document.getElementById('comments').innerHTML = 'EH2 2EL '; }); // handler for a331 google.maps.event.addListener(a331,'click',function() { map.setCenter(a331.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Waterfall Walk'; document.getElementById('comments').innerHTML = 'CA13 9XA '; }); // handler for a332 google.maps.event.addListener(a332,'click',function() { map.setCenter(a332.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Shrewsbury Castle'; document.getElementById('comments').innerHTML = 'SY1 2AD '; }); // handler for a333 google.maps.event.addListener(a333,'click',function() { map.setCenter(a333.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Willowgrove Caravan Park'; document.getElementById('comments').innerHTML = 'FY6 0RS '; }); // handler for a334 google.maps.event.addListener(a334,'click',function() { map.setCenter(a334.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fleetwood'; document.getElementById('comments').innerHTML = 'FY7 7HU '; }); // handler for a335 google.maps.event.addListener(a335,'click',function() { map.setCenter(a335.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackpool Tower'; document.getElementById('comments').innerHTML = 'FY1 4BJ '; }); // handler for a336 google.maps.event.addListener(a336,'click',function() { map.setCenter(a336.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester Museum'; document.getElementById('comments').innerHTML = 'M13 9PL Park off Booth Street West, weekends parking for 2 pounds only, entrance to car park is at (53.466141, -2.237006)'; }); // handler for a337 google.maps.event.addListener(a337,'click',function() { map.setCenter(a337.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak District, Sterndale Moor'; document.getElementById('comments').innerHTML = 'SK17 9QG '; }); // handler for a338 google.maps.event.addListener(a338,'click',function() { map.setCenter(a338.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak District, near Newhaven'; document.getElementById('comments').innerHTML = 'DE45 1JQ '; }); // handler for a339 google.maps.event.addListener(a339,'click',function() { map.setCenter(a339.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester City Etihad Stadium'; document.getElementById('comments').innerHTML = 'M11 3FF '; }); // handler for a340 google.maps.event.addListener(a340,'click',function() { map.setCenter(a340.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gorton Monastery'; document.getElementById('comments').innerHTML = 'M12 5WF '; }); // handler for a341 google.maps.event.addListener(a341,'click',function() { map.setCenter(a341.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Earnsdale Reservoir'; document.getElementById('comments').innerHTML = 'BB3 1JX Free car park is located at (53.697035, -2.487374), off Sunnyhurst Street'; }); // handler for a342 google.maps.event.addListener(a342,'click',function() { map.setCenter(a342.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Scarborough'; document.getElementById('comments').innerHTML = 'YO12 7HY '; }); // handler for a343 google.maps.event.addListener(a343,'click',function() { map.setCenter(a343.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cleethorpes, Grimsby'; document.getElementById('comments').innerHTML = 'DN35 8SJ '; }); // handler for a344 google.maps.event.addListener(a344,'click',function() { map.setCenter(a344.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Northampton'; document.getElementById('comments').innerHTML = 'NN3 9EX '; }); // handler for a345 google.maps.event.addListener(a345,'click',function() { map.setCenter(a345.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Maidstone'; document.getElementById('comments').innerHTML = 'ME15 9QB '; }); // handler for a346 google.maps.event.addListener(a346,'click',function() { map.setCenter(a346.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Portmeirion'; document.getElementById('comments').innerHTML = 'LL48 6ER Great place. Parking is free, however each person pays entrance fee. Winter entry voucher (1st Nov - 31st Mar) allows cheaper entry'; }); // handler for a347 google.maps.event.addListener(a347,'click',function() { map.setCenter(a347.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Knightshayes'; document.getElementById('comments').innerHTML = 'EX16 7RQ Gardens are more interesting than the house'; }); // handler for a348 google.maps.event.addListener(a348,'click',function() { map.setCenter(a348.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Holywell Bay Holiday Park'; document.getElementById('comments').innerHTML = 'TR8 5PR '; }); // handler for a349 google.maps.event.addListener(a349,'click',function() { map.setCenter(a349.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Ives'; document.getElementById('comments').innerHTML = 'TR26 1HB Postcode is for Trenwith Car Park, the only reasonable place to park. Make sure not to miss two beaches!'; }); // handler for a350 google.maps.event.addListener(a350,'click',function() { map.setCenter(a350.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lands End'; document.getElementById('comments').innerHTML = 'TR19 7AA Parking is 5 pounds but worth it (when the weather is good:)'; }); // handler for a351 google.maps.event.addListener(a351,'click',function() { map.setCenter(a351.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Minack Theatre'; document.getElementById('comments').innerHTML = 'TR19 6JU Very worth visiting!'; }); // handler for a352 google.maps.event.addListener(a352,'click',function() { map.setCenter(a352.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kynance Cove'; document.getElementById('comments').innerHTML = 'TR12 7PJ '; }); // handler for a353 google.maps.event.addListener(a353,'click',function() { map.setCenter(a353.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lizard Point'; document.getElementById('comments').innerHTML = 'TR12 7NT '; }); // handler for a354 google.maps.event.addListener(a354,'click',function() { map.setCenter(a354.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chapel Porth'; document.getElementById('comments').innerHTML = 'TR5 0NS Fantastic place. Worth second visit!'; }); // handler for a355 google.maps.event.addListener(a355,'click',function() { map.setCenter(a355.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Godrevy'; document.getElementById('comments').innerHTML = 'TR27 5ED '; }); // handler for a356 google.maps.event.addListener(a356,'click',function() { map.setCenter(a356.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Zennor Head'; document.getElementById('comments').innerHTML = 'TR26 3BY '; }); // handler for a357 google.maps.event.addListener(a357,'click',function() { map.setCenter(a357.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Levant Mine and Beam Engine'; document.getElementById('comments').innerHTML = 'TR19 7SX '; }); // handler for a358 google.maps.event.addListener(a358,'click',function() { map.setCenter(a358.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Glendurgan Garden'; document.getElementById('comments').innerHTML = 'TR11 5JZ '; }); // handler for a359 google.maps.event.addListener(a359,'click',function() { map.setCenter(a359.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Helford Passage'; document.getElementById('comments').innerHTML = 'TR11 5LB '; }); // handler for a360 google.maps.event.addListener(a360,'click',function() { map.setCenter(a360.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Holywell Bay'; document.getElementById('comments').innerHTML = 'TR8 5PG '; }); // handler for a361 google.maps.event.addListener(a361,'click',function() { map.setCenter(a361.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Trerice'; document.getElementById('comments').innerHTML = 'TR8 4PG Not very exciting. The biggest memory was jigsaw :)'; }); // handler for a362 google.maps.event.addListener(a362,'click',function() { map.setCenter(a362.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Carnewas and Bedruthan Steps'; document.getElementById('comments').innerHTML = 'PL27 7UW Great place'; }); // handler for a363 google.maps.event.addListener(a363,'click',function() { map.setCenter(a363.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newquay'; document.getElementById('comments').innerHTML = 'TR7 1HF Great restaurant The Harbour'; }); // handler for a364 google.maps.event.addListener(a364,'click',function() { map.setCenter(a364.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Boscastle Harbour'; document.getElementById('comments').innerHTML = 'PL35 0HE '; }); // handler for a365 google.maps.event.addListener(a365,'click',function() { map.setCenter(a365.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Port Isaac'; document.getElementById('comments').innerHTML = 'PL29 3SB '; }); // handler for a366 google.maps.event.addListener(a366,'click',function() { map.setCenter(a366.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Jamaica Inn'; document.getElementById('comments').innerHTML = 'PL15 7TS '; }); // handler for a367 google.maps.event.addListener(a367,'click',function() { map.setCenter(a367.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blenheim Palace'; document.getElementById('comments').innerHTML = 'OX20 1PP '; }); // handler for a368 google.maps.event.addListener(a368,'click',function() { map.setCenter(a368.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Midhurst'; document.getElementById('comments').innerHTML = 'GU29 9PE '; }); // handler for a369 google.maps.event.addListener(a369,'click',function() { map.setCenter(a369.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chichester'; document.getElementById('comments').innerHTML = 'PO19 1HD '; }); // handler for a370 google.maps.event.addListener(a370,'click',function() { map.setCenter(a370.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chigwell School'; document.getElementById('comments').innerHTML = 'IG7 6QF '; }); // handler for a371 google.maps.event.addListener(a371,'click',function() { map.setCenter(a371.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chigwell Hall'; document.getElementById('comments').innerHTML = 'IG7 6BD '; }); // handler for a372 google.maps.event.addListener(a372,'click',function() { map.setCenter(a372.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stratford Shopping Centre'; document.getElementById('comments').innerHTML = 'E15 1NG '; }); // handler for a373 google.maps.event.addListener(a373,'click',function() { map.setCenter(a373.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rochester Castle'; document.getElementById('comments').innerHTML = 'ME1 1SW '; }); // handler for a374 google.maps.event.addListener(a374,'click',function() { map.setCenter(a374.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bushy Park'; document.getElementById('comments').innerHTML = 'KT8 9DD '; }); // handler for a375 google.maps.event.addListener(a375,'click',function() { map.setCenter(a375.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Whitstable'; document.getElementById('comments').innerHTML = 'CT5 1AB '; }); // handler for a376 google.maps.event.addListener(a376,'click',function() { map.setCenter(a376.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Garsons Farm'; document.getElementById('comments').innerHTML = 'KT10 8LS '; }); // handler for a377 google.maps.event.addListener(a377,'click',function() { map.setCenter(a377.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hampton Pool'; document.getElementById('comments').innerHTML = 'TW12 2ST '; }); // handler for a378 google.maps.event.addListener(a378,'click',function() { map.setCenter(a378.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castlefield'; document.getElementById('comments').innerHTML = 'M3 4LZ '; }); // handler for a379 google.maps.event.addListener(a379,'click',function() { map.setCenter(a379.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hilbre Island'; document.getElementById('comments').innerHTML = 'CH48 8BW '; }); // handler for a380 google.maps.event.addListener(a380,'click',function() { map.setCenter(a380.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Grappenhal'; document.getElementById('comments').innerHTML = 'WA4 3EP '; }); // handler for a381 google.maps.event.addListener(a381,'click',function() { map.setCenter(a381.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'E13, London'; document.getElementById('comments').innerHTML = 'E13 9PA '; }); // handler for a382 google.maps.event.addListener(a382,'click',function() { map.setCenter(a382.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sheerness'; document.getElementById('comments').innerHTML = 'ME12 1AB '; }); // handler for a383 google.maps.event.addListener(a383,'click',function() { map.setCenter(a383.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tan Rallt Holiday Home Park'; document.getElementById('comments').innerHTML = 'LL22 8EE '; }); // handler for a384 google.maps.event.addListener(a384,'click',function() { map.setCenter(a384.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Betws-y-Coed'; document.getElementById('comments').innerHTML = 'LL24 0BA '; }); // handler for a385 google.maps.event.addListener(a385,'click',function() { map.setCenter(a385.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llynnau Mymbyr, Snowdonia'; document.getElementById('comments').innerHTML = 'LL24 0ET '; }); // handler for a386 google.maps.event.addListener(a386,'click',function() { map.setCenter(a386.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A4086, Snowdonia'; document.getElementById('comments').innerHTML = 'LL55 4UL '; }); // handler for a387 google.maps.event.addListener(a387,'click',function() { map.setCenter(a387.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llyn Padarn, Snowdonia'; document.getElementById('comments').innerHTML = 'LL55 4EL '; }); // handler for a388 google.maps.event.addListener(a388,'click',function() { map.setCenter(a388.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Conwy Suspension Bridge'; document.getElementById('comments').innerHTML = 'LL32 8LD '; }); // handler for a389 google.maps.event.addListener(a389,'click',function() { map.setCenter(a389.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Conwy Town Walls'; document.getElementById('comments').innerHTML = 'LL32 8LD '; }); // handler for a390 google.maps.event.addListener(a390,'click',function() { map.setCenter(a390.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bodnant Garden'; document.getElementById('comments').innerHTML = 'LL28 5RE Much better than it looks at first. Very well worth second visit!'; }); // handler for a391 google.maps.event.addListener(a391,'click',function() { map.setCenter(a391.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llanrwst'; document.getElementById('comments').innerHTML = 'LL26 0PL Hairy House'; }); // handler for a392 google.maps.event.addListener(a392,'click',function() { map.setCenter(a392.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Swallow Falls'; document.getElementById('comments').innerHTML = 'LL24 0DW '; }); // handler for a393 google.maps.event.addListener(a393,'click',function() { map.setCenter(a393.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Derby'; document.getElementById('comments').innerHTML = 'DE24 8XL '; }); // handler for a394 google.maps.event.addListener(a394,'click',function() { map.setCenter(a394.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Congleton'; document.getElementById('comments').innerHTML = 'CW12 3DE '; }); // handler for a395 google.maps.event.addListener(a395,'click',function() { map.setCenter(a395.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Village Hotel Bury'; document.getElementById('comments').innerHTML = 'BL9 7BQ '; }); // handler for a396 google.maps.event.addListener(a396,'click',function() { map.setCenter(a396.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Etruria near Stoke-on-Trent'; document.getElementById('comments').innerHTML = 'ST1 5SN '; }); // handler for a397 google.maps.event.addListener(a397,'click',function() { map.setCenter(a397.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak District, near Wincle'; document.getElementById('comments').innerHTML = 'SK11 0QL '; }); // handler for a398 google.maps.event.addListener(a398,'click',function() { map.setCenter(a398.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Leek'; document.getElementById('comments').innerHTML = 'ST13 6AB '; }); // handler for a399 google.maps.event.addListener(a399,'click',function() { map.setCenter(a399.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Old Street London'; document.getElementById('comments').innerHTML = 'N1 6DR '; }); // handler for a400 google.maps.event.addListener(a400,'click',function() { map.setCenter(a400.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'University of Ulster, Rosebery Avenue'; document.getElementById('comments').innerHTML = 'EC1R 4TF '; }); // handler for a401 google.maps.event.addListener(a401,'click',function() { map.setCenter(a401.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nottingham Castle Marina'; document.getElementById('comments').innerHTML = 'NG7 1GX '; }); // handler for a402 google.maps.event.addListener(a402,'click',function() { map.setCenter(a402.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nottingham'; document.getElementById('comments').innerHTML = 'NG1 4DB '; }); // handler for a403 google.maps.event.addListener(a403,'click',function() { map.setCenter(a403.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Slough'; document.getElementById('comments').innerHTML = 'SL1 1SG '; }); // handler for a404 google.maps.event.addListener(a404,'click',function() { map.setCenter(a404.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Forest Hill'; document.getElementById('comments').innerHTML = 'SE23 3UJ '; }); // handler for a405 google.maps.event.addListener(a405,'click',function() { map.setCenter(a405.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackfriars'; document.getElementById('comments').innerHTML = 'EC4Y 8EN '; }); // handler for a406 google.maps.event.addListener(a406,'click',function() { map.setCenter(a406.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Greenwich Foot Tunnel'; document.getElementById('comments').innerHTML = 'SE10 9HT '; }); // handler for a407 google.maps.event.addListener(a407,'click',function() { map.setCenter(a407.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Greenwich'; document.getElementById('comments').innerHTML = 'SE10 8XJ '; }); // handler for a408 google.maps.event.addListener(a408,'click',function() { map.setCenter(a408.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Paul`s Cathedral'; document.getElementById('comments').innerHTML = 'EC4M 8AD '; }); // handler for a409 google.maps.event.addListener(a409,'click',function() { map.setCenter(a409.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Everyman Cinema Walton'; document.getElementById('comments').innerHTML = 'KT12 1DN '; }); // handler for a410 google.maps.event.addListener(a410,'click',function() { map.setCenter(a410.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Liverpool Cathedral'; document.getElementById('comments').innerHTML = 'L1 7AZ '; }); // handler for a411 google.maps.event.addListener(a411,'click',function() { map.setCenter(a411.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Penrhyn Castle'; document.getElementById('comments').innerHTML = 'LL57 4HN '; }); // handler for a412 google.maps.event.addListener(a412,'click',function() { map.setCenter(a412.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rhos on Sea'; document.getElementById('comments').innerHTML = 'LL28 4NG '; }); // handler for a413 google.maps.event.addListener(a413,'click',function() { map.setCenter(a413.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Benthall Hall'; document.getElementById('comments').innerHTML = 'TF12 5RX '; }); // handler for a414 google.maps.event.addListener(a414,'click',function() { map.setCenter(a414.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridgnorth'; document.getElementById('comments').innerHTML = 'WV15 6BB Parking free after 6pm. Make sure to ride Bridgnorth Cliff Railway'; }); // handler for a415 google.maps.event.addListener(a415,'click',function() { map.setCenter(a415.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Mary`s Church'; document.getElementById('comments').innerHTML = 'WV15 6BB '; }); // handler for a416 google.maps.event.addListener(a416,'click',function() { map.setCenter(a416.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Shropshire Hills'; document.getElementById('comments').innerHTML = 'SY6 6JG Park in the valley'; }); // handler for a417 google.maps.event.addListener(a417,'click',function() { map.setCenter(a417.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Shugborough Estate'; document.getElementById('comments').innerHTML = 'ST17 0XB '; }); // handler for a418 google.maps.event.addListener(a418,'click',function() { map.setCenter(a418.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Four Mile Bridge, Anglesey'; document.getElementById('comments').innerHTML = 'LL65 3HB '; }); // handler for a419 google.maps.event.addListener(a419,'click',function() { map.setCenter(a419.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Trearddur Bay, Holyhead'; document.getElementById('comments').innerHTML = 'LL65 2YR '; }); // handler for a420 google.maps.event.addListener(a420,'click',function() { map.setCenter(a420.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Porth dafarch, Holyhead'; document.getElementById('comments').innerHTML = 'LL65 2LS '; }); // handler for a421 google.maps.event.addListener(a421,'click',function() { map.setCenter(a421.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ellins Tower'; document.getElementById('comments').innerHTML = 'LL65 1YH Park at Ellins Tower car park (53.303496, -4.686750)'; }); // handler for a422 google.maps.event.addListener(a422,'click',function() { map.setCenter(a422.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'South Stack Lighthouse'; document.getElementById('comments').innerHTML = 'LL65 1YH Park at Ellins Tower car park (53.303496, -4.686750)'; }); // handler for a423 google.maps.event.addListener(a423,'click',function() { map.setCenter(a423.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Holyhead'; document.getElementById('comments').innerHTML = 'LL65 1UD '; }); // handler for a424 google.maps.event.addListener(a424,'click',function() { map.setCenter(a424.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Amlwch Port, Anglesey'; document.getElementById('comments').innerHTML = 'LL68 9DB '; }); // handler for a425 google.maps.event.addListener(a425,'click',function() { map.setCenter(a425.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lligwy Beach, Anglesey'; document.getElementById('comments').innerHTML = 'LL72 8NN '; }); // handler for a426 google.maps.event.addListener(a426,'click',function() { map.setCenter(a426.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wilmslow'; document.getElementById('comments').innerHTML = 'SK9 1HY Revolution Wilmslow - great night club, free evening parking at the back!'; }); // handler for a427 google.maps.event.addListener(a427,'click',function() { map.setCenter(a427.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Kirkstone Pass'; document.getElementById('comments').innerHTML = 'LA22 9ET '; }); // handler for a428 google.maps.event.addListener(a428,'click',function() { map.setCenter(a428.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Aira Force'; document.getElementById('comments').innerHTML = 'CA11 0JS '; }); // handler for a429 google.maps.event.addListener(a429,'click',function() { map.setCenter(a429.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Robin Hood Airport'; document.getElementById('comments').innerHTML = 'DN9 3RH '; }); // handler for a430 google.maps.event.addListener(a430,'click',function() { map.setCenter(a430.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Kew'; document.getElementById('comments').innerHTML = 'PL30 3HB '; }); // handler for a431 google.maps.event.addListener(a431,'click',function() { map.setCenter(a431.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Polruan'; document.getElementById('comments').innerHTML = 'PL23 1PZ '; }); // handler for a432 google.maps.event.addListener(a432,'click',function() { map.setCenter(a432.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Secret Valley and Cave Dale'; document.getElementById('comments').innerHTML = 'S33 8WQ Park at the main car park at S33 8WN, or on streets'; }); // handler for a433 google.maps.event.addListener(a433,'click',function() { map.setCenter(a433.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Dream, Sutton Manor Woodland'; document.getElementById('comments').innerHTML = 'WA9 4BB '; }); // handler for a434 google.maps.event.addListener(a434,'click',function() { map.setCenter(a434.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Surbiton'; document.getElementById('comments').innerHTML = 'KT6 4PE '; }); // handler for a435 google.maps.event.addListener(a435,'click',function() { map.setCenter(a435.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nant-y-dugoed, Snowdonia'; document.getElementById('comments').innerHTML = 'SY20 9HR '; }); // handler for a436 google.maps.event.addListener(a436,'click',function() { map.setCenter(a436.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Machynlleth Bridge, Snowdonia'; document.getElementById('comments').innerHTML = 'SY20 9JP '; }); // handler for a437 google.maps.event.addListener(a437,'click',function() { map.setCenter(a437.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aberdovey'; document.getElementById('comments').innerHTML = 'LL35 0LL '; }); // handler for a438 google.maps.event.addListener(a438,'click',function() { map.setCenter(a438.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tywyn'; document.getElementById('comments').innerHTML = 'LL36 0DE '; }); // handler for a439 google.maps.event.addListener(a439,'click',function() { map.setCenter(a439.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llangelynin near Rhoslefain, Snowdonia'; document.getElementById('comments').innerHTML = 'LL36 9ND '; }); // handler for a440 google.maps.event.addListener(a440,'click',function() { map.setCenter(a440.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Penmaenpool Bridge, Snowdonia'; document.getElementById('comments').innerHTML = 'LL40 1YD '; }); // handler for a441 google.maps.event.addListener(a441,'click',function() { map.setCenter(a441.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Knutsford'; document.getElementById('comments').innerHTML = 'WA16 6EP '; }); // handler for a442 google.maps.event.addListener(a442,'click',function() { map.setCenter(a442.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Maidenhead'; document.getElementById('comments').innerHTML = 'SL6 1NT Park at Nicholsons Multi-Storey Car Park'; }); // handler for a443 google.maps.event.addListener(a443,'click',function() { map.setCenter(a443.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Tulla Viewpoint'; document.getElementById('comments').innerHTML = 'PA36 4AG '; }); // handler for a444 google.maps.event.addListener(a444,'click',function() { map.setCenter(a444.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Glencoe Visitor Centre'; document.getElementById('comments').innerHTML = 'PH49 4LA '; }); // handler for a445 google.maps.event.addListener(a445,'click',function() { map.setCenter(a445.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Glengarry Lodges, Great Glen Water Park'; document.getElementById('comments').innerHTML = 'PH34 4EA '; }); // handler for a446 google.maps.event.addListener(a446,'click',function() { map.setCenter(a446.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eagle The Inn On The Water'; document.getElementById('comments').innerHTML = 'PH34 4EA '; }); // handler for a447 google.maps.event.addListener(a447,'click',function() { map.setCenter(a447.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Inverness'; document.getElementById('comments').innerHTML = 'IV2 3EG '; }); // handler for a448 google.maps.event.addListener(a448,'click',function() { map.setCenter(a448.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aviemore'; document.getElementById('comments').innerHTML = 'PH22 1PD '; }); // handler for a449 google.maps.event.addListener(a449,'click',function() { map.setCenter(a449.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Laggan Dam'; document.getElementById('comments').innerHTML = 'PH31 4AR '; }); // handler for a450 google.maps.event.addListener(a450,'click',function() { map.setCenter(a450.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Commando Monument, Scotland'; document.getElementById('comments').innerHTML = 'PH34 4EG '; }); // handler for a451 google.maps.event.addListener(a451,'click',function() { map.setCenter(a451.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Glascarnoch'; document.getElementById('comments').innerHTML = 'IV23 2PQ '; }); // handler for a452 google.maps.event.addListener(a452,'click',function() { map.setCenter(a452.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ullapool'; document.getElementById('comments').innerHTML = 'IV26 2UR '; }); // handler for a453 google.maps.event.addListener(a453,'click',function() { map.setCenter(a453.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ardmair'; document.getElementById('comments').innerHTML = 'IV26 2TN '; }); // handler for a454 google.maps.event.addListener(a454,'click',function() { map.setCenter(a454.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ardvreck Castle'; document.getElementById('comments').innerHTML = 'IV27 4HN '; }); // handler for a455 google.maps.event.addListener(a455,'click',function() { map.setCenter(a455.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Achmelvich Beach'; document.getElementById('comments').innerHTML = 'IV27 4JB '; }); // handler for a456 google.maps.event.addListener(a456,'click',function() { map.setCenter(a456.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Assynt'; document.getElementById('comments').innerHTML = 'IV27 4HB '; }); // handler for a457 google.maps.event.addListener(a457,'click',function() { map.setCenter(a457.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kylesku Bridge'; document.getElementById('comments').innerHTML = 'IV27 4HW '; }); // handler for a458 google.maps.event.addListener(a458,'click',function() { map.setCenter(a458.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Scourie'; document.getElementById('comments').innerHTML = 'IV27 4SX '; }); // handler for a459 google.maps.event.addListener(a459,'click',function() { map.setCenter(a459.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kyle of Tongue'; document.getElementById('comments').innerHTML = 'IV27 4XW '; }); // handler for a460 google.maps.event.addListener(a460,'click',function() { map.setCenter(a460.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Taebhaidh'; document.getElementById('comments').innerHTML = 'IV27 4SL '; }); // handler for a461 google.maps.event.addListener(a461,'click',function() { map.setCenter(a461.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dunnet Head'; document.getElementById('comments').innerHTML = 'KW14 8XS '; }); // handler for a462 google.maps.event.addListener(a462,'click',function() { map.setCenter(a462.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'John o` Groats'; document.getElementById('comments').innerHTML = 'KW1 4YR '; }); // handler for a463 google.maps.event.addListener(a463,'click',function() { map.setCenter(a463.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Cluanie'; document.getElementById('comments').innerHTML = 'IV63 7YW '; }); // handler for a464 google.maps.event.addListener(a464,'click',function() { map.setCenter(a464.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A87 near Shiel Bridge'; document.getElementById('comments').innerHTML = 'IV40 8HU '; }); // handler for a465 google.maps.event.addListener(a465,'click',function() { map.setCenter(a465.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eilean Donan Castle'; document.getElementById('comments').innerHTML = 'IV40 8DX '; }); // handler for a466 google.maps.event.addListener(a466,'click',function() { map.setCenter(a466.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Corry, Isle fo Skye'; document.getElementById('comments').innerHTML = 'IV49 9AW '; }); // handler for a467 google.maps.event.addListener(a467,'click',function() { map.setCenter(a467.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A87 near Blackhill'; document.getElementById('comments').innerHTML = 'IV49 9AN '; }); // handler for a468 google.maps.event.addListener(a468,'click',function() { map.setCenter(a468.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A863 near Ose'; document.getElementById('comments').innerHTML = 'IV56 8FJ '; }); // handler for a469 google.maps.event.addListener(a469,'click',function() { map.setCenter(a469.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dunvegan'; document.getElementById('comments').innerHTML = 'IV55 8WA '; }); // handler for a470 google.maps.event.addListener(a470,'click',function() { map.setCenter(a470.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dunvegan Castle'; document.getElementById('comments').innerHTML = 'IV55 8WE '; }); // handler for a471 google.maps.event.addListener(a471,'click',function() { map.setCenter(a471.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Drumnadrochit'; document.getElementById('comments').innerHTML = 'IV63 6TU '; }); // handler for a472 google.maps.event.addListener(a472,'click',function() { map.setCenter(a472.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Loch Ness'; document.getElementById('comments').innerHTML = 'IV63 6XR '; }); // handler for a473 google.maps.event.addListener(a473,'click',function() { map.setCenter(a473.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fort Augustus'; document.getElementById('comments').innerHTML = 'PH32 4DJ '; }); // handler for a474 google.maps.event.addListener(a474,'click',function() { map.setCenter(a474.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stirling Castle'; document.getElementById('comments').innerHTML = 'FK8 1EJ '; }); // handler for a475 google.maps.event.addListener(a475,'click',function() { map.setCenter(a475.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mersey Vale Nature Park'; document.getElementById('comments').innerHTML = 'SK4 2AP '; }); // handler for a476 google.maps.event.addListener(a476,'click',function() { map.setCenter(a476.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brookvale Park Lake'; document.getElementById('comments').innerHTML = 'B23 7SE '; }); // handler for a477 google.maps.event.addListener(a477,'click',function() { map.setCenter(a477.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tabernacle Street'; document.getElementById('comments').innerHTML = 'EC2A 4DT '; }); // handler for a478 google.maps.event.addListener(a478,'click',function() { map.setCenter(a478.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Speke Hall'; document.getElementById('comments').innerHTML = 'L24 1XD '; }); // handler for a479 google.maps.event.addListener(a479,'click',function() { map.setCenter(a479.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Cherry Tree at Blackrod'; document.getElementById('comments').innerHTML = 'BL6 5LA '; }); // handler for a480 google.maps.event.addListener(a480,'click',function() { map.setCenter(a480.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Longford Park'; document.getElementById('comments').innerHTML = 'M21 9TA '; }); // handler for a481 google.maps.event.addListener(a481,'click',function() { map.setCenter(a481.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chorlton Green'; document.getElementById('comments').innerHTML = 'M21 9HS '; }); // handler for a482 google.maps.event.addListener(a482,'click',function() { map.setCenter(a482.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fairholmes Visitor Centre'; document.getElementById('comments').innerHTML = 'S33 0AQ Postcode is very approximate'; }); // handler for a483 google.maps.event.addListener(a483,'click',function() { map.setCenter(a483.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Upper Derwent Reservoir Viewpoint'; document.getElementById('comments').innerHTML = 'S33 0AQ Postcode is very approximate, park at Fairholmes Visitor Centre'; }); // handler for a484 google.maps.event.addListener(a484,'click',function() { map.setCenter(a484.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Salt Cellar'; document.getElementById('comments').innerHTML = 'S33 0AQ Postcode is very approximate, park at Fairholmes Visitor Centre'; }); // handler for a485 google.maps.event.addListener(a485,'click',function() { map.setCenter(a485.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wellington, Telford'; document.getElementById('comments').innerHTML = 'TF1 1LU '; }); // handler for a486 google.maps.event.addListener(a486,'click',function() { map.setCenter(a486.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wigan'; document.getElementById('comments').innerHTML = 'WN2 1DA '; }); // handler for a487 google.maps.event.addListener(a487,'click',function() { map.setCenter(a487.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Haigh Hall'; document.getElementById('comments').innerHTML = 'WN2 1PE '; }); // handler for a488 google.maps.event.addListener(a488,'click',function() { map.setCenter(a488.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Clifton Suspension Bridge'; document.getElementById('comments').innerHTML = 'BS8 3LT Park at Clifton Down'; }); // handler for a489 google.maps.event.addListener(a489,'click',function() { map.setCenter(a489.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gloucester'; document.getElementById('comments').innerHTML = 'GL1 2EX '; }); // handler for a490 google.maps.event.addListener(a490,'click',function() { map.setCenter(a490.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wheatstone Inn, Gloucester'; document.getElementById('comments').innerHTML = 'GL4 3HR '; }); // handler for a491 google.maps.event.addListener(a491,'click',function() { map.setCenter(a491.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hughenden Manor'; document.getElementById('comments').innerHTML = 'HP14 4LA '; }); // handler for a492 google.maps.event.addListener(a492,'click',function() { map.setCenter(a492.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cliveden'; document.getElementById('comments').innerHTML = 'SL6 0JA Absolute rubbish place, not worth petrol to drive to'; }); // handler for a493 google.maps.event.addListener(a493,'click',function() { map.setCenter(a493.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Russian Orthodox Church'; document.getElementById('comments').innerHTML = 'W4 4ED '; }); // handler for a494 google.maps.event.addListener(a494,'click',function() { map.setCenter(a494.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Galerie Bartoux'; document.getElementById('comments').innerHTML = 'W1S 1SU '; }); // handler for a495 google.maps.event.addListener(a495,'click',function() { map.setCenter(a495.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Embassy of the Republic of Austria'; document.getElementById('comments').innerHTML = 'SW1X 8HU '; }); // handler for a496 google.maps.event.addListener(a496,'click',function() { map.setCenter(a496.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lakeside Retail Park'; document.getElementById('comments').innerHTML = 'RM20 2ZN '; }); // handler for a497 google.maps.event.addListener(a497,'click',function() { map.setCenter(a497.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Grays'; document.getElementById('comments').innerHTML = 'RM17 6EX '; }); // handler for a498 google.maps.event.addListener(a498,'click',function() { map.setCenter(a498.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sarah Bonnell School'; document.getElementById('comments').innerHTML = 'E15 4LP '; }); // handler for a499 google.maps.event.addListener(a499,'click',function() { map.setCenter(a499.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mam Tor'; document.getElementById('comments').innerHTML = 'SK23 0QT Park at (53.345916, -1.815195) or (53.345202, -1.813133)'; }); // handler for a500 google.maps.event.addListener(a500,'click',function() { map.setCenter(a500.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Winnersh Triangle'; document.getElementById('comments').innerHTML = 'RG41 5TS '; }); // handler for a501 google.maps.event.addListener(a501,'click',function() { map.setCenter(a501.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Malham Cove'; document.getElementById('comments').innerHTML = 'BD23 4DA Park at Yorkshire Dales National Park Authority'; }); // handler for a502 google.maps.event.addListener(a502,'click',function() { map.setCenter(a502.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gateshead Millennium Bridge'; document.getElementById('comments').innerHTML = 'NE8 3BA '; }); // handler for a503 google.maps.event.addListener(a503,'click',function() { map.setCenter(a503.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Durham'; document.getElementById('comments').innerHTML = 'DH1 3AG '; }); // handler for a504 google.maps.event.addListener(a504,'click',function() { map.setCenter(a504.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Durham Cathedral'; document.getElementById('comments').innerHTML = 'DH1 3ES '; }); // handler for a505 google.maps.event.addListener(a505,'click',function() { map.setCenter(a505.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Angel of the North'; document.getElementById('comments').innerHTML = 'NE9 7UA '; }); // handler for a506 google.maps.event.addListener(a506,'click',function() { map.setCenter(a506.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A66, Cumbria border'; document.getElementById('comments').innerHTML = 'DL12 9RH '; }); // handler for a507 google.maps.event.addListener(a507,'click',function() { map.setCenter(a507.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Buckatree Hall Hotel'; document.getElementById('comments').innerHTML = 'TF6 5AL '; }); // handler for a508 google.maps.event.addListener(a508,'click',function() { map.setCenter(a508.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tewkesbury Abbey'; document.getElementById('comments').innerHTML = 'GL20 5SR '; }); // handler for a509 google.maps.event.addListener(a509,'click',function() { map.setCenter(a509.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stowe'; document.getElementById('comments').innerHTML = 'MK18 5EQ '; }); // handler for a510 google.maps.event.addListener(a510,'click',function() { map.setCenter(a510.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Liverpool John Lennon Airport'; document.getElementById('comments').innerHTML = 'L24 1YD '; }); // handler for a511 google.maps.event.addListener(a511,'click',function() { map.setCenter(a511.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eton Wick'; document.getElementById('comments').innerHTML = 'SL4 6NW '; }); // handler for a512 google.maps.event.addListener(a512,'click',function() { map.setCenter(a512.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Battersea Park'; document.getElementById('comments').innerHTML = 'SW11 4NJ '; }); // handler for a513 google.maps.event.addListener(a513,'click',function() { map.setCenter(a513.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bedroom Bar'; document.getElementById('comments').innerHTML = 'EC2A 3AY '; }); // handler for a514 google.maps.event.addListener(a514,'click',function() { map.setCenter(a514.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St James Church, Fletcher Moss Park'; document.getElementById('comments').innerHTML = 'M20 2RQ '; }); // handler for a515 google.maps.event.addListener(a515,'click',function() { map.setCenter(a515.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fletcher Moss Park'; document.getElementById('comments').innerHTML = 'M20 2RQ '; }); // handler for a516 google.maps.event.addListener(a516,'click',function() { map.setCenter(a516.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Prestatyn'; document.getElementById('comments').innerHTML = 'LL19 7EY '; }); // handler for a517 google.maps.event.addListener(a517,'click',function() { map.setCenter(a517.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dorney Lake'; document.getElementById('comments').innerHTML = 'SL4 6QF '; }); // handler for a518 google.maps.event.addListener(a518,'click',function() { map.setCenter(a518.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Greys Court'; document.getElementById('comments').innerHTML = 'RG9 4PG '; }); // handler for a519 google.maps.event.addListener(a519,'click',function() { map.setCenter(a519.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nuffield Place'; document.getElementById('comments').innerHTML = 'RG9 5RY '; }); // handler for a520 google.maps.event.addListener(a520,'click',function() { map.setCenter(a520.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hever Castle'; document.getElementById('comments').innerHTML = 'TN8 7NG '; }); // handler for a521 google.maps.event.addListener(a521,'click',function() { map.setCenter(a521.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Canary Wharf'; document.getElementById('comments').innerHTML = 'E14 5AJ '; }); // handler for a522 google.maps.event.addListener(a522,'click',function() { map.setCenter(a522.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gawthorpe Hall'; document.getElementById('comments').innerHTML = 'BB12 8UA '; }); // handler for a523 google.maps.event.addListener(a523,'click',function() { map.setCenter(a523.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Parbold Hill Viewpoint'; document.getElementById('comments').innerHTML = 'WN8 7TG '; }); // handler for a524 google.maps.event.addListener(a524,'click',function() { map.setCenter(a524.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rufford Old Hall'; document.getElementById('comments').innerHTML = 'L40 1SG '; }); // handler for a525 google.maps.event.addListener(a525,'click',function() { map.setCenter(a525.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Folkestone'; document.getElementById('comments').innerHTML = 'CT20 1TX '; }); // handler for a526 google.maps.event.addListener(a526,'click',function() { map.setCenter(a526.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Saint Anselm`s Catholic School'; document.getElementById('comments').innerHTML = 'CT1 3EN '; }); // handler for a527 google.maps.event.addListener(a527,'click',function() { map.setCenter(a527.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gerrards Cross'; document.getElementById('comments').innerHTML = 'SL9 7LP '; }); // handler for a528 google.maps.event.addListener(a528,'click',function() { map.setCenter(a528.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chalfont St Giles'; document.getElementById('comments').innerHTML = 'HP8 4UT '; }); // handler for a529 google.maps.event.addListener(a529,'click',function() { map.setCenter(a529.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stansted Airport'; document.getElementById('comments').innerHTML = 'CM24 1PZ '; }); // handler for a530 google.maps.event.addListener(a530,'click',function() { map.setCenter(a530.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Saltford'; document.getElementById('comments').innerHTML = 'BS31 3ET '; }); // handler for a531 google.maps.event.addListener(a531,'click',function() { map.setCenter(a531.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bostall Woods near Plumstead Cemetery'; document.getElementById('comments').innerHTML = 'SE2 0PB '; }); // handler for a532 google.maps.event.addListener(a532,'click',function() { map.setCenter(a532.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Barrow Wake Viewpoint'; document.getElementById('comments').innerHTML = 'GL4 8JX '; }); // handler for a533 google.maps.event.addListener(a533,'click',function() { map.setCenter(a533.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cholmondeley Castle Gardens'; document.getElementById('comments').innerHTML = 'SY14 8AH '; }); // handler for a534 google.maps.event.addListener(a534,'click',function() { map.setCenter(a534.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dovestone Reservoir'; document.getElementById('comments').innerHTML = 'OL3 7NE '; }); // handler for a535 google.maps.event.addListener(a535,'click',function() { map.setCenter(a535.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Buckstones above the Road'; document.getElementById('comments').innerHTML = 'HD3 3FT '; }); // handler for a536 google.maps.event.addListener(a536,'click',function() { map.setCenter(a536.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Bench near Coniston Water'; document.getElementById('comments').innerHTML = 'LA21 8BW '; }); // handler for a537 google.maps.event.addListener(a537,'click',function() { map.setCenter(a537.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Wrynose Pass, View over Little Langdale Valley'; document.getElementById('comments').innerHTML = 'LA22 9PE '; }); // handler for a538 google.maps.event.addListener(a538,'click',function() { map.setCenter(a538.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Hardknott Pass'; document.getElementById('comments').innerHTML = 'CA19 1TH '; }); // handler for a539 google.maps.event.addListener(a539,'click',function() { map.setCenter(a539.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bromley Cross'; document.getElementById('comments').innerHTML = 'BL7 9LY '; }); // handler for a540 google.maps.event.addListener(a540,'click',function() { map.setCenter(a540.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Jumbles Reservoir'; document.getElementById('comments').innerHTML = 'BL2 4JP Postcode is for parking at Jumbles Country Park'; }); // handler for a541 google.maps.event.addListener(a541,'click',function() { map.setCenter(a541.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Entwistle'; document.getElementById('comments').innerHTML = 'BL7 0NG '; }); // handler for a542 google.maps.event.addListener(a542,'click',function() { map.setCenter(a542.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wayoh Reservior'; document.getElementById('comments').innerHTML = 'BL7 0PA '; }); // handler for a543 google.maps.event.addListener(a543,'click',function() { map.setCenter(a543.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Jumbles Country Park'; document.getElementById('comments').innerHTML = 'BL2 4JP '; }); // handler for a544 google.maps.event.addListener(a544,'click',function() { map.setCenter(a544.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'International House and St Katharine Docks'; document.getElementById('comments').innerHTML = 'E1W 1UN '; }); // handler for a545 google.maps.event.addListener(a545,'click',function() { map.setCenter(a545.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gisburn Forest'; document.getElementById('comments').innerHTML = 'BB7 4TS '; }); // handler for a546 google.maps.event.addListener(a546,'click',function() { map.setCenter(a546.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cheltenham'; document.getElementById('comments').innerHTML = 'GL50 1DB '; }); // handler for a547 google.maps.event.addListener(a547,'click',function() { map.setCenter(a547.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Edinburgh Airport'; document.getElementById('comments').innerHTML = 'EH12 9DN '; }); // handler for a548 google.maps.event.addListener(a548,'click',function() { map.setCenter(a548.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridgend, Best Western Heronston'; document.getElementById('comments').innerHTML = 'CF35 5AW '; }); // handler for a549 google.maps.event.addListener(a549,'click',function() { map.setCenter(a549.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridgend, Hughes Park'; document.getElementById('comments').innerHTML = 'CF31 3UL '; }); // handler for a550 google.maps.event.addListener(a550,'click',function() { map.setCenter(a550.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Porthcawl'; document.getElementById('comments').innerHTML = 'CF36 5TS '; }); // handler for a551 google.maps.event.addListener(a551,'click',function() { map.setCenter(a551.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kenfig'; document.getElementById('comments').innerHTML = 'CF33 4PR '; }); // handler for a552 google.maps.event.addListener(a552,'click',function() { map.setCenter(a552.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ogmore-by-Sea'; document.getElementById('comments').innerHTML = 'CF32 0PB '; }); // handler for a553 google.maps.event.addListener(a553,'click',function() { map.setCenter(a553.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nash Point'; document.getElementById('comments').innerHTML = 'CF61 1ZH '; }); // handler for a554 google.maps.event.addListener(a554,'click',function() { map.setCenter(a554.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridgend'; document.getElementById('comments').innerHTML = 'CF31 1EF '; }); // handler for a555 google.maps.event.addListener(a555,'click',function() { map.setCenter(a555.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Long Wittenham'; document.getElementById('comments').innerHTML = 'OX14 4QH '; }); // handler for a556 google.maps.event.addListener(a556,'click',function() { map.setCenter(a556.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Silver Blades Solihull'; document.getElementById('comments').innerHTML = 'B92 8JN '; }); // handler for a557 google.maps.event.addListener(a557,'click',function() { map.setCenter(a557.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Catford'; document.getElementById('comments').innerHTML = 'SE6 4SP '; }); // handler for a558 google.maps.event.addListener(a558,'click',function() { map.setCenter(a558.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Huntington'; document.getElementById('comments').innerHTML = 'CH3 6BB '; }); // handler for a559 google.maps.event.addListener(a559,'click',function() { map.setCenter(a559.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kirkstall, Leeds'; document.getElementById('comments').innerHTML = 'LS4 2DG '; }); // handler for a560 google.maps.event.addListener(a560,'click',function() { map.setCenter(a560.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Harrogate'; document.getElementById('comments').innerHTML = 'HG1 2QU '; }); // handler for a561 google.maps.event.addListener(a561,'click',function() { map.setCenter(a561.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hardcastle Crags Parking'; document.getElementById('comments').innerHTML = 'HX7 7AL '; }); // handler for a562 google.maps.event.addListener(a562,'click',function() { map.setCenter(a562.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hebden Beck Steps'; document.getElementById('comments').innerHTML = 'HX7 7AL '; }); // handler for a563 google.maps.event.addListener(a563,'click',function() { map.setCenter(a563.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gibson Mill of Hardcastle Crags'; document.getElementById('comments').innerHTML = 'HX7 7AL '; }); // handler for a564 google.maps.event.addListener(a564,'click',function() { map.setCenter(a564.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Angel, The York'; document.getElementById('comments').innerHTML = 'N1 8EQ '; }); // handler for a565 google.maps.event.addListener(a565,'click',function() { map.setCenter(a565.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sutton'; document.getElementById('comments').innerHTML = 'SM1 1DE '; }); // handler for a566 google.maps.event.addListener(a566,'click',function() { map.setCenter(a566.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Acton Town'; document.getElementById('comments').innerHTML = 'W3 8BH '; }); // handler for a567 google.maps.event.addListener(a567,'click',function() { map.setCenter(a567.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Charlton, Greenwich'; document.getElementById('comments').innerHTML = 'SE7 7UB '; }); // handler for a568 google.maps.event.addListener(a568,'click',function() { map.setCenter(a568.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Princess Of Wales, Greenwich'; document.getElementById('comments').innerHTML = 'SE3 0RL '; }); // handler for a569 google.maps.event.addListener(a569,'click',function() { map.setCenter(a569.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Waterloo Lake, Roundhay Park'; document.getElementById('comments').innerHTML = 'LS8 2JL '; }); // handler for a570 google.maps.event.addListener(a570,'click',function() { map.setCenter(a570.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Congleton Industrial Estate'; document.getElementById('comments').innerHTML = 'CW12 1PH '; }); // handler for a571 google.maps.event.addListener(a571,'click',function() { map.setCenter(a571.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Queens Park'; document.getElementById('comments').innerHTML = 'NW6 6NH '; }); // handler for a572 google.maps.event.addListener(a572,'click',function() { map.setCenter(a572.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newlands Corner'; document.getElementById('comments').innerHTML = 'GU4 8SE '; }); // handler for a573 google.maps.event.addListener(a573,'click',function() { map.setCenter(a573.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kirkstall Abbey'; document.getElementById('comments').innerHTML = 'LS5 3EH '; }); // handler for a574 google.maps.event.addListener(a574,'click',function() { map.setCenter(a574.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Roaches Lock Inn, Oldham'; document.getElementById('comments').innerHTML = 'OL5 9BB '; }); // handler for a575 google.maps.event.addListener(a575,'click',function() { map.setCenter(a575.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cardiff'; document.getElementById('comments').innerHTML = 'CF10 1FL '; }); // handler for a576 google.maps.event.addListener(a576,'click',function() { map.setCenter(a576.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cardiff Bay'; document.getElementById('comments').innerHTML = 'CF10 5BU Park at Mermaid Quay Car Park, or on streets - free after 6pm'; }); // handler for a577 google.maps.event.addListener(a577,'click',function() { map.setCenter(a577.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dunraven Bay'; document.getElementById('comments').innerHTML = 'CF32 0RT '; }); // handler for a578 google.maps.event.addListener(a578,'click',function() { map.setCenter(a578.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Angle'; document.getElementById('comments').innerHTML = 'SA71 5AP Didn`t even stop'; }); // handler for a579 google.maps.event.addListener(a579,'click',function() { map.setCenter(a579.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Carew Castle'; document.getElementById('comments').innerHTML = 'SA70 8SN '; }); // handler for a580 google.maps.event.addListener(a580,'click',function() { map.setCenter(a580.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fishguard'; document.getElementById('comments').innerHTML = 'SA65 9ND '; }); // handler for a581 google.maps.event.addListener(a581,'click',function() { map.setCenter(a581.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newport, Pembrokeshire'; document.getElementById('comments').innerHTML = 'SA42 0TA '; }); // handler for a582 google.maps.event.addListener(a582,'click',function() { map.setCenter(a582.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Pembrokeshire Coast'; document.getElementById('comments').innerHTML = 'SA42 0QY '; }); // handler for a583 google.maps.event.addListener(a583,'click',function() { map.setCenter(a583.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ceibwr Bay'; document.getElementById('comments').innerHTML = 'SA43 3BU '; }); // handler for a584 google.maps.event.addListener(a584,'click',function() { map.setCenter(a584.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cardigan'; document.getElementById('comments').innerHTML = 'SA43 1HR Did not have proper visit as could not park'; }); // handler for a585 google.maps.event.addListener(a585,'click',function() { map.setCenter(a585.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'New Quay'; document.getElementById('comments').innerHTML = 'SA45 9NR '; }); // handler for a586 google.maps.event.addListener(a586,'click',function() { map.setCenter(a586.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Scammonden Reservoir'; document.getElementById('comments').innerHTML = 'HX4 0EA '; }); // handler for a587 google.maps.event.addListener(a587,'click',function() { map.setCenter(a587.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Thame'; document.getElementById('comments').innerHTML = 'OX9 3DP '; }); // handler for a588 google.maps.event.addListener(a588,'click',function() { map.setCenter(a588.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Arenig Fell Race'; document.getElementById('comments').innerHTML = 'LL23 7PB '; }); // handler for a589 google.maps.event.addListener(a589,'click',function() { map.setCenter(a589.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llyn Arenig Fawr'; document.getElementById('comments').innerHTML = 'LL23 7PB '; }); // handler for a590 google.maps.event.addListener(a590,'click',function() { map.setCenter(a590.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Afon Tryweryn'; document.getElementById('comments').innerHTML = 'LL23 7NU '; }); // handler for a591 google.maps.event.addListener(a591,'click',function() { map.setCenter(a591.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Liverpool Metropolitan Catholic Church'; document.getElementById('comments').innerHTML = 'L3 5TQ '; }); // handler for a592 google.maps.event.addListener(a592,'click',function() { map.setCenter(a592.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Hebden Bridge'; document.getElementById('comments').innerHTML = 'HX7 8LL '; }); // handler for a593 google.maps.event.addListener(a593,'click',function() { map.setCenter(a593.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sowerby Bridge'; document.getElementById('comments').innerHTML = 'HX6 2AE Park at the market car park, next to Lidl, free after 6pm'; }); // handler for a594 google.maps.event.addListener(a594,'click',function() { map.setCenter(a594.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The King William, Turton'; document.getElementById('comments').innerHTML = 'BL7 9AN '; }); // handler for a595 google.maps.event.addListener(a595,'click',function() { map.setCenter(a595.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Darwen Tower'; document.getElementById('comments').innerHTML = 'BB3 1JX Park at Sunny Hurst Woods Car Park'; }); // handler for a596 google.maps.event.addListener(a596,'click',function() { map.setCenter(a596.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ellenbrook, East Lancs'; document.getElementById('comments').innerHTML = 'M28 1ES '; }); // handler for a597 google.maps.event.addListener(a597,'click',function() { map.setCenter(a597.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Atherton'; document.getElementById('comments').innerHTML = 'M46 0DR '; }); // handler for a598 google.maps.event.addListener(a598,'click',function() { map.setCenter(a598.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Clumber Park'; document.getElementById('comments').innerHTML = 'S80 3AZ '; }); // handler for a599 google.maps.event.addListener(a599,'click',function() { map.setCenter(a599.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Turnpike'; document.getElementById('comments').innerHTML = 'HX6 4RH '; }); // handler for a600 google.maps.event.addListener(a600,'click',function() { map.setCenter(a600.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over M62'; document.getElementById('comments').innerHTML = 'HX4 0EB '; }); // handler for a601 google.maps.event.addListener(a601,'click',function() { map.setCenter(a601.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Moses Gate Country Park'; document.getElementById('comments').innerHTML = 'BL4 7QS '; }); // handler for a602 google.maps.event.addListener(a602,'click',function() { map.setCenter(a602.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Windsor Great Park, Totem Pole'; document.getElementById('comments').innerHTML = 'TW20 0HN '; }); // handler for a603 google.maps.event.addListener(a603,'click',function() { map.setCenter(a603.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Windsor Great Park, Lake Visitor Center'; document.getElementById('comments').innerHTML = 'TW20 0HN '; }); // handler for a604 google.maps.event.addListener(a604,'click',function() { map.setCenter(a604.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Bailiwick'; document.getElementById('comments').innerHTML = 'TW20 0HN '; }); // handler for a605 google.maps.event.addListener(a605,'click',function() { map.setCenter(a605.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A40 near Talybont-on-Usk'; document.getElementById('comments').innerHTML = 'LD3 7JQ '; }); // handler for a606 google.maps.event.addListener(a606,'click',function() { map.setCenter(a606.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Talybont Reservoir'; document.getElementById('comments').innerHTML = 'LD3 7YS '; }); // handler for a607 google.maps.event.addListener(a607,'click',function() { map.setCenter(a607.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pontsticill Reservoir'; document.getElementById('comments').innerHTML = 'CF48 2UR '; }); // handler for a608 google.maps.event.addListener(a608,'click',function() { map.setCenter(a608.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Pontsticill Reservoir'; document.getElementById('comments').innerHTML = 'CF48 2UP '; }); // handler for a609 google.maps.event.addListener(a609,'click',function() { map.setCenter(a609.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brecon Mountain Railway, Pant Station'; document.getElementById('comments').innerHTML = 'CF48 2DD Free parking'; }); // handler for a610 google.maps.event.addListener(a610,'click',function() { map.setCenter(a610.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brecon Mountain Railway, Pontsticill Station'; document.getElementById('comments').innerHTML = 'CF48 2DD Free parking. Postcode is for departure station'; }); // handler for a611 google.maps.event.addListener(a611,'click',function() { map.setCenter(a611.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brecon Mountain Railway, Torpantau Station'; document.getElementById('comments').innerHTML = 'CF48 2DD Free parking. Postcode is for departure station'; }); // handler for a612 google.maps.event.addListener(a612,'click',function() { map.setCenter(a612.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Port Talbot, Aberavon Beach'; document.getElementById('comments').innerHTML = 'SA12 6QP '; }); // handler for a613 google.maps.event.addListener(a613,'click',function() { map.setCenter(a613.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ogmore Valley'; document.getElementById('comments').innerHTML = 'CF32 7RD '; }); // handler for a614 google.maps.event.addListener(a614,'click',function() { map.setCenter(a614.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Cwm-parc'; document.getElementById('comments').innerHTML = 'CF42 6LL '; }); // handler for a615 google.maps.event.addListener(a615,'click',function() { map.setCenter(a615.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A4107, view over A4061'; document.getElementById('comments').innerHTML = 'SA13 3YW '; }); // handler for a616 google.maps.event.addListener(a616,'click',function() { map.setCenter(a616.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A470 near Pont ar Daf'; document.getElementById('comments').innerHTML = 'LD3 8NL '; }); // handler for a617 google.maps.event.addListener(a617,'click',function() { map.setCenter(a617.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A4059 vew over A470'; document.getElementById('comments').innerHTML = 'LD3 8NL '; }); // handler for a618 google.maps.event.addListener(a618,'click',function() { map.setCenter(a618.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rhigos Viewpoint Carpark'; document.getElementById('comments').innerHTML = 'CF44 9UF '; }); // handler for a619 google.maps.event.addListener(a619,'click',function() { map.setCenter(a619.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A4061 approaching Blaenrhondda'; document.getElementById('comments').innerHTML = 'CF42 5RY '; }); // handler for a620 google.maps.event.addListener(a620,'click',function() { map.setCenter(a620.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Speedwell Cavern'; document.getElementById('comments').innerHTML = 'S33 8WP '; }); // handler for a621 google.maps.event.addListener(a621,'click',function() { map.setCenter(a621.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak Cavern'; document.getElementById('comments').innerHTML = 'S33 8WS '; }); // handler for a622 google.maps.event.addListener(a622,'click',function() { map.setCenter(a622.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Winnats Pass'; document.getElementById('comments').innerHTML = 'S33 8WP '; }); // handler for a623 google.maps.event.addListener(a623,'click',function() { map.setCenter(a623.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Isle of Dogs'; document.getElementById('comments').innerHTML = 'E14 9UW '; }); // handler for a624 google.maps.event.addListener(a624,'click',function() { map.setCenter(a624.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sherlock Holmes Museum'; document.getElementById('comments').innerHTML = 'NW1 6XE '; }); // handler for a625 google.maps.event.addListener(a625,'click',function() { map.setCenter(a625.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'King`s Cross Station'; document.getElementById('comments').innerHTML = 'N1C 4TB '; }); // handler for a626 google.maps.event.addListener(a626,'click',function() { map.setCenter(a626.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Novello Theatre'; document.getElementById('comments').innerHTML = 'WC2B 4LD '; }); // handler for a627 google.maps.event.addListener(a627,'click',function() { map.setCenter(a627.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lake District, Wrynose Pass, little bridge'; document.getElementById('comments').innerHTML = 'LA22 9PE '; }); // handler for a628 google.maps.event.addListener(a628,'click',function() { map.setCenter(a628.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brookfield Hall, Westhoughton'; document.getElementById('comments').innerHTML = 'BL5 3SP '; }); // handler for a629 google.maps.event.addListener(a629,'click',function() { map.setCenter(a629.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Redfield, Bristol'; document.getElementById('comments').innerHTML = 'BS5 9EN '; }); // handler for a630 google.maps.event.addListener(a630,'click',function() { map.setCenter(a630.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Swansea'; document.getElementById('comments').innerHTML = 'SA1 1JW '; }); // handler for a631 google.maps.event.addListener(a631,'click',function() { map.setCenter(a631.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'University of Bath'; document.getElementById('comments').innerHTML = 'BA2 7PD '; }); // handler for a632 google.maps.event.addListener(a632,'click',function() { map.setCenter(a632.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bristol Balloon Fiesta'; document.getElementById('comments').innerHTML = 'BS41 9JN '; }); // handler for a633 google.maps.event.addListener(a633,'click',function() { map.setCenter(a633.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Donnington'; document.getElementById('comments').innerHTML = 'TF2 8HH '; }); // handler for a634 google.maps.event.addListener(a634,'click',function() { map.setCenter(a634.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lilleshall Hall National Sports Centre'; document.getElementById('comments').innerHTML = 'TF10 9AT '; }); // handler for a635 google.maps.event.addListener(a635,'click',function() { map.setCenter(a635.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aston Clinton'; document.getElementById('comments').innerHTML = 'HP22 5ND '; }); // handler for a636 google.maps.event.addListener(a636,'click',function() { map.setCenter(a636.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chesham'; document.getElementById('comments').innerHTML = 'HP5 1BX '; }); // handler for a637 google.maps.event.addListener(a637,'click',function() { map.setCenter(a637.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Little Missenden'; document.getElementById('comments').innerHTML = 'HP7 0RF '; }); // handler for a638 google.maps.event.addListener(a638,'click',function() { map.setCenter(a638.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Morden'; document.getElementById('comments').innerHTML = 'SM4 5NE '; }); // handler for a639 google.maps.event.addListener(a639,'click',function() { map.setCenter(a639.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chorleywood'; document.getElementById('comments').innerHTML = 'WD3 5LN '; }); // handler for a640 google.maps.event.addListener(a640,'click',function() { map.setCenter(a640.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Botany Bay'; document.getElementById('comments').innerHTML = 'CT10 3LG '; }); // handler for a641 google.maps.event.addListener(a641,'click',function() { map.setCenter(a641.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Richmond'; document.getElementById('comments').innerHTML = 'TW9 1TH '; }); // handler for a642 google.maps.event.addListener(a642,'click',function() { map.setCenter(a642.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Old Orchard'; document.getElementById('comments').innerHTML = 'UB9 6HJ '; }); // handler for a643 google.maps.event.addListener(a643,'click',function() { map.setCenter(a643.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Coy Carp'; document.getElementById('comments').innerHTML = 'UB9 6HZ '; }); // handler for a644 google.maps.event.addListener(a644,'click',function() { map.setCenter(a644.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Liverpool Street Station'; document.getElementById('comments').innerHTML = 'EC2M 2QA '; }); // handler for a645 google.maps.event.addListener(a645,'click',function() { map.setCenter(a645.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bethnal Green'; document.getElementById('comments').innerHTML = 'E2 0ET '; }); // handler for a646 google.maps.event.addListener(a646,'click',function() { map.setCenter(a646.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Royal Opera House'; document.getElementById('comments').innerHTML = 'WC2E 9DD '; }); // handler for a647 google.maps.event.addListener(a647,'click',function() { map.setCenter(a647.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Parliament Hill Viewpoint'; document.getElementById('comments').innerHTML = 'NW5 1QR '; }); // handler for a648 google.maps.event.addListener(a648,'click',function() { map.setCenter(a648.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'North Greenwich Pier'; document.getElementById('comments').innerHTML = 'SE10 0DX '; }); // handler for a649 google.maps.event.addListener(a649,'click',function() { map.setCenter(a649.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Crystal Palace Park'; document.getElementById('comments').innerHTML = 'SE19 2BF '; }); // handler for a650 google.maps.event.addListener(a650,'click',function() { map.setCenter(a650.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dulwich Park'; document.getElementById('comments').innerHTML = 'SE21 7BQ '; }); // handler for a651 google.maps.event.addListener(a651,'click',function() { map.setCenter(a651.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Spike Island'; document.getElementById('comments').innerHTML = 'WA8 0DR '; }); // handler for a652 google.maps.event.addListener(a652,'click',function() { map.setCenter(a652.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Amalthea Greek Cafe'; document.getElementById('comments').innerHTML = 'LS16 6AA '; }); // handler for a653 google.maps.event.addListener(a653,'click',function() { map.setCenter(a653.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cotswold Lodge Hotel, Oxford'; document.getElementById('comments').innerHTML = 'OX2 6JP '; }); // handler for a654 google.maps.event.addListener(a654,'click',function() { map.setCenter(a654.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Penwortham'; document.getElementById('comments').innerHTML = 'PR1 0PB '; }); // handler for a655 google.maps.event.addListener(a655,'click',function() { map.setCenter(a655.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ponteland, Newcastle upon Tyne'; document.getElementById('comments').innerHTML = 'NE20 0DH Catch Seafood Ponteland - great seafood restaurant (was)'; }); // handler for a656 google.maps.event.addListener(a656,'click',function() { map.setCenter(a656.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Planet Ice Widnes'; document.getElementById('comments').innerHTML = 'WA8 0TA '; }); // handler for a657 google.maps.event.addListener(a657,'click',function() { map.setCenter(a657.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Booth Wood, view over damb'; document.getElementById('comments').innerHTML = 'HX6 4RQ '; }); // handler for a658 google.maps.event.addListener(a658,'click',function() { map.setCenter(a658.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chatham'; document.getElementById('comments').innerHTML = 'ME1 1DU '; }); // handler for a659 google.maps.event.addListener(a659,'click',function() { map.setCenter(a659.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Durdle Door'; document.getElementById('comments').innerHTML = 'BH20 5PU '; }); // handler for a660 google.maps.event.addListener(a660,'click',function() { map.setCenter(a660.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bo Peep Farm'; document.getElementById('comments').innerHTML = 'OX17 3NP '; }); // handler for a661 google.maps.event.addListener(a661,'click',function() { map.setCenter(a661.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tynemouth Pier Lighthouse'; document.getElementById('comments').innerHTML = 'NE30 4BZ '; }); // handler for a662 google.maps.event.addListener(a662,'click',function() { map.setCenter(a662.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Riley`s Fish Shack'; document.getElementById('comments').innerHTML = 'NE30 4EB '; }); // handler for a663 google.maps.event.addListener(a663,'click',function() { map.setCenter(a663.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Yr Ocar'; document.getElementById('comments').innerHTML = 'LL57 4DQ '; }); // handler for a664 google.maps.event.addListener(a664,'click',function() { map.setCenter(a664.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Penrhyn Quarry'; document.getElementById('comments').innerHTML = 'LL57 4YS '; }); // handler for a665 google.maps.event.addListener(a665,'click',function() { map.setCenter(a665.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Llyn Idwal'; document.getElementById('comments').innerHTML = 'LL57 3LZ Postcode is for visitor centre and parking'; }); // handler for a666 google.maps.event.addListener(a666,'click',function() { map.setCenter(a666.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llyn Idwal'; document.getElementById('comments').innerHTML = 'LL57 3LZ Postcode is for visitor centre and parking'; }); // handler for a667 google.maps.event.addListener(a667,'click',function() { map.setCenter(a667.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Slaithwaite'; document.getElementById('comments').innerHTML = 'HD7 5HL '; }); // handler for a668 google.maps.event.addListener(a668,'click',function() { map.setCenter(a668.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lower Royal George Inn'; document.getElementById('comments').innerHTML = 'HD3 3FW '; }); // handler for a669 google.maps.event.addListener(a669,'click',function() { map.setCenter(a669.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackburn Canal - Rishton'; document.getElementById('comments').innerHTML = 'BB1 4EB '; }); // handler for a670 google.maps.event.addListener(a670,'click',function() { map.setCenter(a670.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Woolpack Inn, Hardknott Pass'; document.getElementById('comments').innerHTML = 'CA19 1TH '; }); // handler for a671 google.maps.event.addListener(a671,'click',function() { map.setCenter(a671.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Seven Sisters Car Park'; document.getElementById('comments').innerHTML = 'BN20 7YA '; }); // handler for a672 google.maps.event.addListener(a672,'click',function() { map.setCenter(a672.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Willesden Green'; document.getElementById('comments').innerHTML = 'NW2 4AA '; }); // handler for a673 google.maps.event.addListener(a673,'click',function() { map.setCenter(a673.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Kingsgate Bay'; document.getElementById('comments').innerHTML = 'CT10 3LT '; }); // handler for a674 google.maps.event.addListener(a674,'click',function() { map.setCenter(a674.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Amersham Station'; document.getElementById('comments').innerHTML = 'HP7 0AD '; }); // handler for a675 google.maps.event.addListener(a675,'click',function() { map.setCenter(a675.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nottingham Waterfront'; document.getElementById('comments').innerHTML = 'NG1 7EH '; }); // handler for a676 google.maps.event.addListener(a676,'click',function() { map.setCenter(a676.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Belmont Reservoir'; document.getElementById('comments').innerHTML = 'BL7 8BD '; }); // handler for a677 google.maps.event.addListener(a677,'click',function() { map.setCenter(a677.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Crushing Cirlce'; document.getElementById('comments').innerHTML = 'S33 8WA '; }); // handler for a678 google.maps.event.addListener(a678,'click',function() { map.setCenter(a678.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bingley Three-Rise Locks'; document.getElementById('comments').innerHTML = 'BD16 4BN '; }); // handler for a679 google.maps.event.addListener(a679,'click',function() { map.setCenter(a679.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bingley Five-Rise Locks'; document.getElementById('comments').innerHTML = 'BD16 4DS '; }); // handler for a680 google.maps.event.addListener(a680,'click',function() { map.setCenter(a680.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bingley'; document.getElementById('comments').innerHTML = 'BD16 2RH '; }); // handler for a681 google.maps.event.addListener(a681,'click',function() { map.setCenter(a681.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Porth Eirias'; document.getElementById('comments').innerHTML = 'LL29 8HH '; }); // handler for a682 google.maps.event.addListener(a682,'click',function() { map.setCenter(a682.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cemaes - Traeth Mawr'; document.getElementById('comments').innerHTML = 'LL67 0NH '; }); // handler for a683 google.maps.event.addListener(a683,'click',function() { map.setCenter(a683.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Burnley Canal'; document.getElementById('comments').innerHTML = 'BB11 1JG Park at Tesco Extra (53.785372, -2.239829)'; }); // handler for a684 google.maps.event.addListener(a684,'click',function() { map.setCenter(a684.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wigan Pier'; document.getElementById('comments').innerHTML = 'WN3 4EU Park at B and Q (53.543282, -2.648142 )'; }); // handler for a685 google.maps.event.addListener(a685,'click',function() { map.setCenter(a685.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak Forest Canal - Romiley'; document.getElementById('comments').innerHTML = 'SK6 4DX '; }); // handler for a686 google.maps.event.addListener(a686,'click',function() { map.setCenter(a686.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brabyns Park'; document.getElementById('comments').innerHTML = 'SK6 5EX '; }); // handler for a687 google.maps.event.addListener(a687,'click',function() { map.setCenter(a687.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aber Falls'; document.getElementById('comments').innerHTML = 'LL33 0LP '; }); // handler for a688 google.maps.event.addListener(a688,'click',function() { map.setCenter(a688.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Llanfairfechan Promenade'; document.getElementById('comments').innerHTML = 'LL33 0DA '; }); // handler for a689 google.maps.event.addListener(a689,'click',function() { map.setCenter(a689.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Penmaenmawr Beach Car Park'; document.getElementById('comments').innerHTML = 'LL34 6ND '; }); // handler for a690 google.maps.event.addListener(a690,'click',function() { map.setCenter(a690.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Otley'; document.getElementById('comments').innerHTML = 'LS21 3AQ '; }); // handler for a691 google.maps.event.addListener(a691,'click',function() { map.setCenter(a691.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chevin Forest Park'; document.getElementById('comments').innerHTML = 'LS21 3DG '; }); // handler for a692 google.maps.event.addListener(a692,'click',function() { map.setCenter(a692.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Harewood House'; document.getElementById('comments').innerHTML = 'LS17 9LE '; }); // handler for a693 google.maps.event.addListener(a693,'click',function() { map.setCenter(a693.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Danson House'; document.getElementById('comments').innerHTML = 'DA6 8HL '; }); // handler for a694 google.maps.event.addListener(a694,'click',function() { map.setCenter(a694.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Slade Green'; document.getElementById('comments').innerHTML = 'DA8 2BT '; }); // handler for a695 google.maps.event.addListener(a695,'click',function() { map.setCenter(a695.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Trafalgar Tavern'; document.getElementById('comments').innerHTML = 'SE10 9NW '; }); // handler for a696 google.maps.event.addListener(a696,'click',function() { map.setCenter(a696.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bluewater Nature Trail'; document.getElementById('comments').innerHTML = 'DA9 9SU '; }); // handler for a697 google.maps.event.addListener(a697,'click',function() { map.setCenter(a697.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bradwell, Hope Valley'; document.getElementById('comments').innerHTML = 'S33 9HJ '; }); // handler for a698 google.maps.event.addListener(a698,'click',function() { map.setCenter(a698.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Parsonage Gardens'; document.getElementById('comments').innerHTML = 'M20 2RQ '; }); // handler for a699 google.maps.event.addListener(a699,'click',function() { map.setCenter(a699.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Simon`s Bridge'; document.getElementById('comments').innerHTML = 'M20 2RQ Postcode is for parking'; }); // handler for a700 google.maps.event.addListener(a700,'click',function() { map.setCenter(a700.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Anns Bethesda'; document.getElementById('comments').innerHTML = 'LL57 4BQ '; }); // handler for a701 google.maps.event.addListener(a701,'click',function() { map.setCenter(a701.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Carneddi Bethesda'; document.getElementById('comments').innerHTML = 'LL57 3NG '; }); // handler for a702 google.maps.event.addListener(a702,'click',function() { map.setCenter(a702.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = '20 Stories Restaurant'; document.getElementById('comments').innerHTML = 'M3 3EB '; }); // handler for a703 google.maps.event.addListener(a703,'click',function() { map.setCenter(a703.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ego at The Fox Cub, Little Hoole'; document.getElementById('comments').innerHTML = 'PR4 5JT '; }); // handler for a704 google.maps.event.addListener(a704,'click',function() { map.setCenter(a704.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Singer Hall Coventry'; document.getElementById('comments').innerHTML = 'CV1 5NS '; }); // handler for a705 google.maps.event.addListener(a705,'click',function() { map.setCenter(a705.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Park, Bristol'; document.getElementById('comments').innerHTML = 'BS1 3AF Park at Wapping Wharf Car Park, BS1 4RH, (51.447325, -2.597610)'; }); // handler for a706 google.maps.event.addListener(a706,'click',function() { map.setCenter(a706.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dnipro'; document.getElementById('comments').innerHTML = 'M8 8XB '; }); // handler for a707 google.maps.event.addListener(a707,'click',function() { map.setCenter(a707.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Minikin Paint a Pot'; document.getElementById('comments').innerHTML = 'M33 7HF '; }); // handler for a708 google.maps.event.addListener(a708,'click',function() { map.setCenter(a708.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Altrincham Little Theatre'; document.getElementById('comments').innerHTML = 'WA14 2ED '; }); // handler for a709 google.maps.event.addListener(a709,'click',function() { map.setCenter(a709.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Atherton Community School'; document.getElementById('comments').innerHTML = 'M46 0AY '; }); // handler for a710 google.maps.event.addListener(a710,'click',function() { map.setCenter(a710.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cosmo Sheffield'; document.getElementById('comments').innerHTML = 'S1 2PT '; }); // handler for a711 google.maps.event.addListener(a711,'click',function() { map.setCenter(a711.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sale Water Park'; document.getElementById('comments').innerHTML = 'M33 2LX '; }); // handler for a712 google.maps.event.addListener(a712,'click',function() { map.setCenter(a712.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Glen Mary Car Park'; document.getElementById('comments').innerHTML = 'LA21 8DP '; }); // handler for a713 google.maps.event.addListener(a713,'click',function() { map.setCenter(a713.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Holme Fell'; document.getElementById('comments').innerHTML = 'LA21 8DP Coordinates approximate, could also be (54.396284, -3.056493)'; }); // handler for a714 google.maps.event.addListener(a714,'click',function() { map.setCenter(a714.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hodge Close'; document.getElementById('comments').innerHTML = 'LA21 8DJ '; }); // handler for a715 google.maps.event.addListener(a715,'click',function() { map.setCenter(a715.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cathedral Cave'; document.getElementById('comments').innerHTML = 'LA22 9NT '; }); // handler for a716 google.maps.event.addListener(a716,'click',function() { map.setCenter(a716.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Black Crag'; document.getElementById('comments').innerHTML = 'LA21 8DP Coords are VERY approximate'; }); // handler for a717 google.maps.event.addListener(a717,'click',function() { map.setCenter(a717.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Iron Keld'; document.getElementById('comments').innerHTML = 'LA21 8DP Coords are VERY approximate'; }); // handler for a718 google.maps.event.addListener(a718,'click',function() { map.setCenter(a718.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tarn Hows'; document.getElementById('comments').innerHTML = 'LA21 8DP Coords are approximate'; }); // handler for a719 google.maps.event.addListener(a719,'click',function() { map.setCenter(a719.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Great John Street Hotel'; document.getElementById('comments').innerHTML = 'M3 4FD '; }); // handler for a720 google.maps.event.addListener(a720,'click',function() { map.setCenter(a720.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newcastle Airport'; document.getElementById('comments').innerHTML = 'NE13 8BZ '; }); // handler for a721 google.maps.event.addListener(a721,'click',function() { map.setCenter(a721.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peak District, Holme Moss'; document.getElementById('comments').innerHTML = 'HD9 2QH '; }); // handler for a722 google.maps.event.addListener(a722,'click',function() { map.setCenter(a722.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Infinity Pool, Snowdonia'; document.getElementById('comments').innerHTML = 'LL55 4UL Park at (53.093157, -4.061341)'; }); // handler for a723 google.maps.event.addListener(a723,'click',function() { map.setCenter(a723.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Porthmadog'; document.getElementById('comments').innerHTML = 'LL49 9LP '; }); // handler for a724 google.maps.event.addListener(a724,'click',function() { map.setCenter(a724.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Conwy Castle'; document.getElementById('comments').innerHTML = 'LL32 8LD Try parking for free at Benarth Rd (53.278749, -3.825657)'; }); // handler for a725 google.maps.event.addListener(a725,'click',function() { map.setCenter(a725.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Delamere Forest'; document.getElementById('comments').innerHTML = 'WA6 6NZ Postcode is for parking along Ashton Rd'; }); // handler for a726 google.maps.event.addListener(a726,'click',function() { map.setCenter(a726.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Vale Royal Abbey Arms'; document.getElementById('comments').innerHTML = 'CW8 2HB '; }); // handler for a727 google.maps.event.addListener(a727,'click',function() { map.setCenter(a727.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Morfa Nefyn'; document.getElementById('comments').innerHTML = 'LL53 6DA '; }); // handler for a728 google.maps.event.addListener(a728,'click',function() { map.setCenter(a728.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nefyn'; document.getElementById('comments').innerHTML = 'LL53 6DU '; }); // handler for a729 google.maps.event.addListener(a729,'click',function() { map.setCenter(a729.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Criccieth'; document.getElementById('comments').innerHTML = 'LL52 0HL '; }); // handler for a730 google.maps.event.addListener(a730,'click',function() { map.setCenter(a730.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A498 near Beddgelert'; document.getElementById('comments').innerHTML = 'LL55 4YE '; }); // handler for a731 google.maps.event.addListener(a731,'click',function() { map.setCenter(a731.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Beddgelert'; document.getElementById('comments').innerHTML = 'LL55 4YB '; }); // handler for a732 google.maps.event.addListener(a732,'click',function() { map.setCenter(a732.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ettiley Heath near Sandbach'; document.getElementById('comments').innerHTML = 'CW11 3TU '; }); // handler for a733 google.maps.event.addListener(a733,'click',function() { map.setCenter(a733.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Moston Green near Sandbach'; document.getElementById('comments').innerHTML = 'CW11 3PD '; }); // handler for a734 google.maps.event.addListener(a734,'click',function() { map.setCenter(a734.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Saint James Mount and Gardens'; document.getElementById('comments').innerHTML = 'L1 7AZ '; }); // handler for a735 google.maps.event.addListener(a735,'click',function() { map.setCenter(a735.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rickmansworth Aquadrome'; document.getElementById('comments').innerHTML = 'WD3 1NB '; }); // handler for a736 google.maps.event.addListener(a736,'click',function() { map.setCenter(a736.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lowndes Park Chesham'; document.getElementById('comments').innerHTML = 'HP5 1EP '; }); // handler for a737 google.maps.event.addListener(a737,'click',function() { map.setCenter(a737.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Beaconsfield'; document.getElementById('comments').innerHTML = 'HP9 2JH '; }); // handler for a738 google.maps.event.addListener(a738,'click',function() { map.setCenter(a738.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Marston Field Chesham'; document.getElementById('comments').innerHTML = 'HP5 2PR '; }); // handler for a739 google.maps.event.addListener(a739,'click',function() { map.setCenter(a739.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cranage'; document.getElementById('comments').innerHTML = 'CW4 8HQ '; }); // handler for a740 google.maps.event.addListener(a740,'click',function() { map.setCenter(a740.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chirk'; document.getElementById('comments').innerHTML = 'LL14 5HD '; }); // handler for a741 google.maps.event.addListener(a741,'click',function() { map.setCenter(a741.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chirk Aqueduct'; document.getElementById('comments').innerHTML = 'LL14 5DA '; }); // handler for a742 google.maps.event.addListener(a742,'click',function() { map.setCenter(a742.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Poachers Chirk'; document.getElementById('comments').innerHTML = 'LL14 5DL '; }); // handler for a743 google.maps.event.addListener(a743,'click',function() { map.setCenter(a743.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pistyll Waterfall'; document.getElementById('comments').innerHTML = 'SY10 0BZ '; }); // handler for a744 google.maps.event.addListener(a744,'click',function() { map.setCenter(a744.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Anderton Boat Lift'; document.getElementById('comments').innerHTML = 'CW9 6FW '; }); // handler for a745 google.maps.event.addListener(a745,'click',function() { map.setCenter(a745.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Holland Park'; document.getElementById('comments').innerHTML = 'W11 4DL '; }); // handler for a746 google.maps.event.addListener(a746,'click',function() { map.setCenter(a746.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hemel Hempstead'; document.getElementById('comments').innerHTML = 'HP1 1JQ '; }); // handler for a747 google.maps.event.addListener(a747,'click',function() { map.setCenter(a747.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Eastney Beach, Portsmouth'; document.getElementById('comments').innerHTML = 'PO4 9NB '; }); // handler for a748 google.maps.event.addListener(a748,'click',function() { map.setCenter(a748.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gunwharf Quays, Portsmouth'; document.getElementById('comments').innerHTML = 'PO1 3TD '; }); // handler for a749 google.maps.event.addListener(a749,'click',function() { map.setCenter(a749.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Westcliff-on-Sea'; document.getElementById('comments').innerHTML = 'SS0 8JH '; }); // handler for a750 google.maps.event.addListener(a750,'click',function() { map.setCenter(a750.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Leigh-on-Sea'; document.getElementById('comments').innerHTML = 'SS9 2EN '; }); // handler for a751 google.maps.event.addListener(a751,'click',function() { map.setCenter(a751.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Chiltern Hospital'; document.getElementById('comments').innerHTML = 'HP16 0EN '; }); // handler for a752 google.maps.event.addListener(a752,'click',function() { map.setCenter(a752.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hinchley Wood'; document.getElementById('comments').innerHTML = 'KT7 0EF '; }); // handler for a753 google.maps.event.addListener(a753,'click',function() { map.setCenter(a753.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gerrards Cross'; document.getElementById('comments').innerHTML = 'SL9 8PE '; }); // handler for a754 google.maps.event.addListener(a754,'click',function() { map.setCenter(a754.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Orassy'; document.getElementById('comments').innerHTML = 'E14 8ED '; }); // handler for a755 google.maps.event.addListener(a755,'click',function() { map.setCenter(a755.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chesham Underground Station'; document.getElementById('comments').innerHTML = 'HP5 1BP '; }); // handler for a756 google.maps.event.addListener(a756,'click',function() { map.setCenter(a756.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wetton'; document.getElementById('comments').innerHTML = 'DE6 2AF '; }); // handler for a757 google.maps.event.addListener(a757,'click',function() { map.setCenter(a757.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hinchley Wood Train Station'; document.getElementById('comments').innerHTML = 'KT10 0SR '; }); // handler for a758 google.maps.event.addListener(a758,'click',function() { map.setCenter(a758.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Notting Hill'; document.getElementById('comments').innerHTML = 'W10 6LA '; }); // handler for a759 google.maps.event.addListener(a759,'click',function() { map.setCenter(a759.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Portobello'; document.getElementById('comments').innerHTML = 'W11 2DZ '; }); // handler for a760 google.maps.event.addListener(a760,'click',function() { map.setCenter(a760.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Consulate of Ukraine'; document.getElementById('comments').innerHTML = 'W11 2PL '; }); // handler for a761 google.maps.event.addListener(a761,'click',function() { map.setCenter(a761.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Field near A40'; document.getElementById('comments').innerHTML = 'UB9 4HB '; }); // handler for a762 google.maps.event.addListener(a762,'click',function() { map.setCenter(a762.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Classic Bridge at Chiswick Park'; document.getElementById('comments').innerHTML = 'W4 3ER '; }); // handler for a763 google.maps.event.addListener(a763,'click',function() { map.setCenter(a763.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Best Western Mornington Hotel'; document.getElementById('comments').innerHTML = 'W2 3LG '; }); // handler for a764 google.maps.event.addListener(a764,'click',function() { map.setCenter(a764.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Owler Tor'; document.getElementById('comments').innerHTML = 'S32 1DA Park at Surprise View Car Park (53.317118, -1.623427)'; }); // handler for a765 google.maps.event.addListener(a765,'click',function() { map.setCenter(a765.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lawrencefield'; document.getElementById('comments').innerHTML = 'S32 1DA Park at Surprise View Car Park (53.317118, -1.623427)'; }); // handler for a766 google.maps.event.addListener(a766,'click',function() { map.setCenter(a766.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Richmond Park'; document.getElementById('comments').innerHTML = 'TW10 5HR '; }); // handler for a767 google.maps.event.addListener(a767,'click',function() { map.setCenter(a767.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Herne Bay'; document.getElementById('comments').innerHTML = 'CT6 5JP '; }); // handler for a768 google.maps.event.addListener(a768,'click',function() { map.setCenter(a768.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Combe Car Park'; document.getElementById('comments').innerHTML = 'SN14 7HH '; }); // handler for a769 google.maps.event.addListener(a769,'click',function() { map.setCenter(a769.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Combe, Cotswolds'; document.getElementById('comments').innerHTML = 'SN14 7HU Park at Castle Combe Free Visitor Car Park (51.498003, -2.223844)'; }); // handler for a770 google.maps.event.addListener(a770,'click',function() { map.setCenter(a770.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Combe West Street, Cotswolds'; document.getElementById('comments').innerHTML = 'SN14 7HP Park at Castle Combe Free Visitor Car Park (51.498003, -2.223844)'; }); // handler for a771 google.maps.event.addListener(a771,'click',function() { map.setCenter(a771.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Combe Manor House, Cotswolds'; document.getElementById('comments').innerHTML = 'SN14 7HR '; }); // handler for a772 google.maps.event.addListener(a772,'click',function() { map.setCenter(a772.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Combe Gardens, Cotswolds'; document.getElementById('comments').innerHTML = 'SN14 7HR Park at Castle Combe Free Visitor Car Park (51.498003, -2.223844)'; }); // handler for a773 google.maps.event.addListener(a773,'click',function() { map.setCenter(a773.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Combe Water Stream, Cotswolds'; document.getElementById('comments').innerHTML = 'SN14 7HR Park at Castle Combe Free Visitor Car Park (51.498003, -2.223844)'; }); // handler for a774 google.maps.event.addListener(a774,'click',function() { map.setCenter(a774.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Combe Bridge, Cotswolds'; document.getElementById('comments').innerHTML = 'SN14 7HX Park at Castle Combe Free Visitor Car Park (51.498003, -2.223844)'; }); // handler for a775 google.maps.event.addListener(a775,'click',function() { map.setCenter(a775.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lacock'; document.getElementById('comments').innerHTML = 'SN15 2LG Did not see much - must visit again'; }); // handler for a776 google.maps.event.addListener(a776,'click',function() { map.setCenter(a776.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Great Comp Garden'; document.getElementById('comments').innerHTML = 'TN15 8QS Small place but worth a visit'; }); // handler for a777 google.maps.event.addListener(a777,'click',function() { map.setCenter(a777.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Alexandra Park Viewpoint, Bath'; document.getElementById('comments').innerHTML = 'BA2 4RQ Fantastic view over Bath; there is another viewpoint to the west'; }); // handler for a778 google.maps.event.addListener(a778,'click',function() { map.setCenter(a778.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Burford, Cotswolds'; document.getElementById('comments').innerHTML = 'OX18 4QA One-time visit. Free car park at the end of village'; }); // handler for a779 google.maps.event.addListener(a779,'click',function() { map.setCenter(a779.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bibury, Cotswolds'; document.getElementById('comments').innerHTML = 'GL7 5NP Iconic Cotswolds place - must visit'; }); // handler for a780 google.maps.event.addListener(a780,'click',function() { map.setCenter(a780.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cirencester'; document.getElementById('comments').innerHTML = 'GL7 1FN Depressing place. Forum car park (GL7 1FN, 51.715514 -1.965357) is free after 3pm'; }); // handler for a781 google.maps.event.addListener(a781,'click',function() { map.setCenter(a781.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Roman Catholic Church, Bristol'; document.getElementById('comments').innerHTML = 'BS16 1NQ '; }); // handler for a782 google.maps.event.addListener(a782,'click',function() { map.setCenter(a782.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Circus Lane, Edinburgh'; document.getElementById('comments').innerHTML = 'EH3 6SU '; }); // handler for a783 google.maps.event.addListener(a783,'click',function() { map.setCenter(a783.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dean Village'; document.getElementById('comments').innerHTML = 'EH4 3BJ '; }); // handler for a784 google.maps.event.addListener(a784,'click',function() { map.setCenter(a784.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Royal Yacht Britannia'; document.getElementById('comments').innerHTML = 'EH6 6JJ '; }); // handler for a785 google.maps.event.addListener(a785,'click',function() { map.setCenter(a785.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fisherrow Harbour, Musselburgh'; document.getElementById('comments').innerHTML = 'EH21 6DH '; }); // handler for a786 google.maps.event.addListener(a786,'click',function() { map.setCenter(a786.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Morrisons Haven, Prestonpans'; document.getElementById('comments').innerHTML = 'EH32 9RX '; }); // handler for a787 google.maps.event.addListener(a787,'click',function() { map.setCenter(a787.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hampton Court Park'; document.getElementById('comments').innerHTML = 'KT1 4AD '; }); // handler for a788 google.maps.event.addListener(a788,'click',function() { map.setCenter(a788.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Isabella Plantation, Richmond Park'; document.getElementById('comments').innerHTML = 'TW10 5HP Park at (51.432373,-0.268560)'; }); // handler for a789 google.maps.event.addListener(a789,'click',function() { map.setCenter(a789.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Crompton Moor'; document.getElementById('comments').innerHTML = 'OL2 8LX '; }); // handler for a790 google.maps.event.addListener(a790,'click',function() { map.setCenter(a790.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Alverstoke'; document.getElementById('comments').innerHTML = 'PO12 2LA '; }); // handler for a791 google.maps.event.addListener(a791,'click',function() { map.setCenter(a791.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fareham'; document.getElementById('comments').innerHTML = 'PO16 0BP '; }); // handler for a792 google.maps.event.addListener(a792,'click',function() { map.setCenter(a792.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Haslar Peninsula'; document.getElementById('comments').innerHTML = 'PO12 2NJ '; }); // handler for a793 google.maps.event.addListener(a793,'click',function() { map.setCenter(a793.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Southsea'; document.getElementById('comments').innerHTML = 'PO5 3PA '; }); // handler for a794 google.maps.event.addListener(a794,'click',function() { map.setCenter(a794.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Southsea Beach'; document.getElementById('comments').innerHTML = 'PO4 0SP '; }); // handler for a795 google.maps.event.addListener(a795,'click',function() { map.setCenter(a795.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pokesdown'; document.getElementById('comments').innerHTML = 'BH5 2HG '; }); // handler for a796 google.maps.event.addListener(a796,'click',function() { map.setCenter(a796.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sandbanks Beach'; document.getElementById('comments').innerHTML = 'BH13 7QQ '; }); // handler for a797 google.maps.event.addListener(a797,'click',function() { map.setCenter(a797.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Bliss Tweed Mill'; document.getElementById('comments').innerHTML = 'OX7 5XW '; }); // handler for a798 google.maps.event.addListener(a798,'click',function() { map.setCenter(a798.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Moreton-in-Marsh'; document.getElementById('comments').innerHTML = 'GL56 0AF '; }); // handler for a799 google.maps.event.addListener(a799,'click',function() { map.setCenter(a799.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Days Inn Strensham'; document.getElementById('comments').innerHTML = 'WR8 0BZ '; }); // handler for a800 google.maps.event.addListener(a800,'click',function() { map.setCenter(a800.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Broadway Tower'; document.getElementById('comments').innerHTML = 'WR12 7LB '; }); // handler for a801 google.maps.event.addListener(a801,'click',function() { map.setCenter(a801.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chipping Campden'; document.getElementById('comments').innerHTML = 'GL55 6AJ '; }); // handler for a802 google.maps.event.addListener(a802,'click',function() { map.setCenter(a802.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Stow-on-the-Wold'; document.getElementById('comments').innerHTML = 'GL54 1HH Park at (51.927883, -1.717623)'; }); // handler for a803 google.maps.event.addListener(a803,'click',function() { map.setCenter(a803.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Minchinhampton'; document.getElementById('comments').innerHTML = 'GL6 9BN '; }); // handler for a804 google.maps.event.addListener(a804,'click',function() { map.setCenter(a804.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Minchinhampton Common 1'; document.getElementById('comments').innerHTML = 'GL6 9JU '; }); // handler for a805 google.maps.event.addListener(a805,'click',function() { map.setCenter(a805.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Minchinhampton Common 2'; document.getElementById('comments').innerHTML = 'GL6 9EE '; }); // handler for a806 google.maps.event.addListener(a806,'click',function() { map.setCenter(a806.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Walshaw Lodge'; document.getElementById('comments').innerHTML = 'HX7 7AL Park at Hardcastle Crags'; }); // handler for a807 google.maps.event.addListener(a807,'click',function() { map.setCenter(a807.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lumb Hole Falls'; document.getElementById('comments').innerHTML = 'HX7 7AL Park at Hardcastle Crags'; }); // handler for a808 google.maps.event.addListener(a808,'click',function() { map.setCenter(a808.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridgnorth Town Park'; document.getElementById('comments').innerHTML = 'WV15 6BB '; }); // handler for a809 google.maps.event.addListener(a809,'click',function() { map.setCenter(a809.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Smoke Stop BBQ'; document.getElementById('comments').innerHTML = 'SY5 9LH '; }); // handler for a810 google.maps.event.addListener(a810,'click',function() { map.setCenter(a810.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'A4120'; document.getElementById('comments').innerHTML = 'SY23 4NF '; }); // handler for a811 google.maps.event.addListener(a811,'click',function() { map.setCenter(a811.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Aberystwyth Cliff Railway'; document.getElementById('comments').innerHTML = 'SY23 2DN '; }); // handler for a812 google.maps.event.addListener(a812,'click',function() { map.setCenter(a812.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Field near A4120'; document.getElementById('comments').innerHTML = 'SY23 4EJ '; }); // handler for a813 google.maps.event.addListener(a813,'click',function() { map.setCenter(a813.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Devil`s Bridge Train Station'; document.getElementById('comments').innerHTML = 'SY23 3JL '; }); // handler for a814 google.maps.event.addListener(a814,'click',function() { map.setCenter(a814.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Devil`s Bridge'; document.getElementById('comments').innerHTML = 'SY23 3JW '; }); // handler for a815 google.maps.event.addListener(a815,'click',function() { map.setCenter(a815.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Devil`s Bridge Waterfalls'; document.getElementById('comments').innerHTML = 'SY23 3JW '; }); // handler for a816 google.maps.event.addListener(a816,'click',function() { map.setCenter(a816.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over A44 valley'; document.getElementById('comments').innerHTML = 'SY23 3LD '; }); // handler for a817 google.maps.event.addListener(a817,'click',function() { map.setCenter(a817.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bramcote Avenue, Bolton'; document.getElementById('comments').innerHTML = 'BL2 1LF '; }); // handler for a818 google.maps.event.addListener(a818,'click',function() { map.setCenter(a818.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Peg`s Pond, Richmond Park'; document.getElementById('comments').innerHTML = 'TW10 5HP '; }); // handler for a819 google.maps.event.addListener(a819,'click',function() { map.setCenter(a819.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Minnow, Weybridge'; document.getElementById('comments').innerHTML = 'KT13 8NG '; }); // handler for a820 google.maps.event.addListener(a820,'click',function() { map.setCenter(a820.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cambridge parking'; document.getElementById('comments').innerHTML = 'CB5 8HQ '; }); // handler for a821 google.maps.event.addListener(a821,'click',function() { map.setCenter(a821.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pembroke Lodge, Richmond Park'; document.getElementById('comments').innerHTML = 'TW10 5HX '; }); // handler for a822 google.maps.event.addListener(a822,'click',function() { map.setCenter(a822.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Rose Of York, Richmond'; document.getElementById('comments').innerHTML = 'TW10 6UY '; }); // handler for a823 google.maps.event.addListener(a823,'click',function() { map.setCenter(a823.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Westerham'; document.getElementById('comments').innerHTML = 'TN16 1AN '; }); // handler for a824 google.maps.event.addListener(a824,'click',function() { map.setCenter(a824.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ukrainian Social Club'; document.getElementById('comments').innerHTML = 'BL2 1JP '; }); // handler for a825 google.maps.event.addListener(a825,'click',function() { map.setCenter(a825.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rivington small waterfall'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a826 google.maps.event.addListener(a826,'click',function() { map.setCenter(a826.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rivington Terraced Gardens'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a827 google.maps.event.addListener(a827,'click',function() { map.setCenter(a827.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Lever`s Bridge'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a828 google.maps.event.addListener(a828,'click',function() { map.setCenter(a828.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Viewpoint between Pigeon Tower and Italian Lake'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a829 google.maps.event.addListener(a829,'click',function() { map.setCenter(a829.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pigeon Tower'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a830 google.maps.event.addListener(a830,'click',function() { map.setCenter(a830.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rivington Pike Tower'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a831 google.maps.event.addListener(a831,'click',function() { map.setCenter(a831.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Great Lawn'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a832 google.maps.event.addListener(a832,'click',function() { map.setCenter(a832.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lever`s Bridge'; document.getElementById('comments').innerHTML = 'BL6 7SA '; }); // handler for a833 google.maps.event.addListener(a833,'click',function() { map.setCenter(a833.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rivington Hall Barn'; document.getElementById('comments').innerHTML = 'BL6 7SB '; }); // handler for a834 google.maps.event.addListener(a834,'click',function() { map.setCenter(a834.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Forest near Go Ape'; document.getElementById('comments').innerHTML = 'BL6 7SB '; }); // handler for a835 google.maps.event.addListener(a835,'click',function() { map.setCenter(a835.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Portsmouth car ferry (Wightlink Ferries)'; document.getElementById('comments').innerHTML = 'PO1 2LA '; }); // handler for a836 google.maps.event.addListener(a836,'click',function() { map.setCenter(a836.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fishbourne Ferry Terminal'; document.getElementById('comments').innerHTML = 'PO33 4EU '; }); // handler for a837 google.maps.event.addListener(a837,'click',function() { map.setCenter(a837.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Esplanade, East Cowes'; document.getElementById('comments').innerHTML = 'PO32 6AA '; }); // handler for a838 google.maps.event.addListener(a838,'click',function() { map.setCenter(a838.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cowes Marina'; document.getElementById('comments').innerHTML = 'PO31 7BD Park on-street or at PO31 7LT (50.761353, -1.302519)'; }); // handler for a839 google.maps.event.addListener(a839,'click',function() { map.setCenter(a839.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cowes Beach'; document.getElementById('comments').innerHTML = 'PO31 8AU Park on-street or at PO31 7LT (50.761353, -1.302519)'; }); // handler for a840 google.maps.event.addListener(a840,'click',function() { map.setCenter(a840.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Freshwater Beach'; document.getElementById('comments').innerHTML = 'PO40 9RR Parking at (50.688794, -1.537963) is extremely limited'; }); // handler for a841 google.maps.event.addListener(a841,'click',function() { map.setCenter(a841.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Needles Chair Lift'; document.getElementById('comments').innerHTML = 'PO39 0JD '; }); // handler for a842 google.maps.event.addListener(a842,'click',function() { map.setCenter(a842.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Freshwater Bay'; document.getElementById('comments').innerHTML = 'PO40 9TU Park at Freshwater Bay Clifftop Car Park'; }); // handler for a843 google.maps.event.addListener(a843,'click',function() { map.setCenter(a843.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackgang Viewpoint Car Park'; document.getElementById('comments').innerHTML = 'PO38 2JB '; }); // handler for a844 google.maps.event.addListener(a844,'click',function() { map.setCenter(a844.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Buddle Inn, Niton'; document.getElementById('comments').innerHTML = 'PO38 2NE '; }); // handler for a845 google.maps.event.addListener(a845,'click',function() { map.setCenter(a845.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Shanklin Beach'; document.getElementById('comments').innerHTML = 'PO37 6BJ '; }); // handler for a846 google.maps.event.addListener(a846,'click',function() { map.setCenter(a846.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Perowne Way, Sandown'; document.getElementById('comments').innerHTML = 'PO36 9PW '; }); // handler for a847 google.maps.event.addListener(a847,'click',function() { map.setCenter(a847.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Old Trafford'; document.getElementById('comments').innerHTML = 'M16 0SZ '; }); // handler for a848 google.maps.event.addListener(a848,'click',function() { map.setCenter(a848.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Old Hall, Sandbach'; document.getElementById('comments').innerHTML = 'CW11 1AL '; }); // handler for a849 google.maps.event.addListener(a849,'click',function() { map.setCenter(a849.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lost and Found (Knutsford)'; document.getElementById('comments').innerHTML = 'WA16 6BY Park either at the front (free on Sundays), or at (53.304097, -2.371407)'; }); // handler for a850 google.maps.event.addListener(a850,'click',function() { map.setCenter(a850.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wetton Mill parking'; document.getElementById('comments').innerHTML = 'DE6 2AG '; }); // handler for a851 google.maps.event.addListener(a851,'click',function() { map.setCenter(a851.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nothing of note has happened here'; document.getElementById('comments').innerHTML = 'ST13 7SS Postcode is very approximate'; }); // handler for a852 google.maps.event.addListener(a852,'click',function() { map.setCenter(a852.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ecton Hill (Ecton Mine Engine House)'; document.getElementById('comments').innerHTML = 'DE6 2AJ '; }); // handler for a853 google.maps.event.addListener(a853,'click',function() { map.setCenter(a853.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Trigpoint on Ecton Hill'; document.getElementById('comments').innerHTML = 'DE6 2AJ '; }); // handler for a854 google.maps.event.addListener(a854,'click',function() { map.setCenter(a854.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Thor`s Cave'; document.getElementById('comments').innerHTML = 'DE6 2AF Postcode is for parking in the village'; }); // handler for a855 google.maps.event.addListener(a855,'click',function() { map.setCenter(a855.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nan Tor Cave'; document.getElementById('comments').innerHTML = 'DE6 2AG '; }); // handler for a856 google.maps.event.addListener(a856,'click',function() { map.setCenter(a856.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hartington'; document.getElementById('comments').innerHTML = 'SK17 0AL Haven`t seen much'; }); // handler for a857 google.maps.event.addListener(a857,'click',function() { map.setCenter(a857.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Royal Oak, Hurdlow'; document.getElementById('comments').innerHTML = 'SK17 9QJ Haven`t seen much'; }); // handler for a858 google.maps.event.addListener(a858,'click',function() { map.setCenter(a858.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Hanging Gate, Chapel-en-le-Frith'; document.getElementById('comments').innerHTML = 'SK23 9UH '; }); // handler for a859 google.maps.event.addListener(a859,'click',function() { map.setCenter(a859.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Valley Gardens'; document.getElementById('comments').innerHTML = 'HG1 2SZ '; }); // handler for a860 google.maps.event.addListener(a860,'click',function() { map.setCenter(a860.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Back Streets of Harrogate'; document.getElementById('comments').innerHTML = 'HG1 5EE '; }); // handler for a861 google.maps.event.addListener(a861,'click',function() { map.setCenter(a861.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Winter Hill Parking'; document.getElementById('comments').innerHTML = 'BL6 6RT '; }); // handler for a862 google.maps.event.addListener(a862,'click',function() { map.setCenter(a862.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Two Lads'; document.getElementById('comments').innerHTML = 'BL6 6RT '; }); // handler for a863 google.maps.event.addListener(a863,'click',function() { map.setCenter(a863.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Winter Hill'; document.getElementById('comments').innerHTML = 'BL6 6RT '; }); // handler for a864 google.maps.event.addListener(a864,'click',function() { map.setCenter(a864.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View from Winter Hill'; document.getElementById('comments').innerHTML = 'BL6 6RT '; }); // handler for a865 google.maps.event.addListener(a865,'click',function() { map.setCenter(a865.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dean Ditch'; document.getElementById('comments').innerHTML = 'BL6 6RT '; }); // handler for a866 google.maps.event.addListener(a866,'click',function() { map.setCenter(a866.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Smithills'; document.getElementById('comments').innerHTML = 'BL6 6RT '; }); // handler for a867 google.maps.event.addListener(a867,'click',function() { map.setCenter(a867.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Port Sunlight'; document.getElementById('comments').innerHTML = 'CH62 5DZ '; }); // handler for a868 google.maps.event.addListener(a868,'click',function() { map.setCenter(a868.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dell Bridge'; document.getElementById('comments').innerHTML = 'CH62 4UJ '; }); // handler for a869 google.maps.event.addListener(a869,'click',function() { map.setCenter(a869.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Huyton'; document.getElementById('comments').innerHTML = 'L14 6TX '; }); // handler for a870 google.maps.event.addListener(a870,'click',function() { map.setCenter(a870.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Roundhay Fox'; document.getElementById('comments').innerHTML = 'LS8 2EP '; }); // handler for a871 google.maps.event.addListener(a871,'click',function() { map.setCenter(a871.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Upper Lake, Roundhay Park'; document.getElementById('comments').innerHTML = 'LS8 2HH '; }); // handler for a872 google.maps.event.addListener(a872,'click',function() { map.setCenter(a872.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Poulton-le-Fylde'; document.getElementById('comments').innerHTML = 'FY6 7UG '; }); // handler for a873 google.maps.event.addListener(a873,'click',function() { map.setCenter(a873.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'River Wyre'; document.getElementById('comments').innerHTML = 'FY6 7JZ '; }); // handler for a874 google.maps.event.addListener(a874,'click',function() { map.setCenter(a874.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Castle Gardens Pub'; document.getElementById('comments').innerHTML = 'FY6 7NH '; }); // handler for a875 google.maps.event.addListener(a875,'click',function() { map.setCenter(a875.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Edale Train Station'; document.getElementById('comments').innerHTML = 'S33 7ZQ '; }); // handler for a876 google.maps.event.addListener(a876,'click',function() { map.setCenter(a876.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hope Train Station'; document.getElementById('comments').innerHTML = 'S33 6RR '; }); // handler for a877 google.maps.event.addListener(a877,'click',function() { map.setCenter(a877.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hope'; document.getElementById('comments').innerHTML = 'S33 6RH '; }); // handler for a878 google.maps.event.addListener(a878,'click',function() { map.setCenter(a878.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lose Hill Lane'; document.getElementById('comments').innerHTML = 'S33 6AF '; }); // handler for a879 google.maps.event.addListener(a879,'click',function() { map.setCenter(a879.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Approaching Losehill Pike'; document.getElementById('comments').innerHTML = 'S33 6AF '; }); // handler for a880 google.maps.event.addListener(a880,'click',function() { map.setCenter(a880.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Losehill Pike Ward`s Piece'; document.getElementById('comments').innerHTML = 'S33 6AF '; }); // handler for a881 google.maps.event.addListener(a881,'click',function() { map.setCenter(a881.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Lose Hill'; document.getElementById('comments').innerHTML = 'S33 6AF '; }); // handler for a882 google.maps.event.addListener(a882,'click',function() { map.setCenter(a882.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Back Tor'; document.getElementById('comments').innerHTML = 'S33 6AF '; }); // handler for a883 google.maps.event.addListener(a883,'click',function() { map.setCenter(a883.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Great Ridge'; document.getElementById('comments').innerHTML = 'S33 6AF '; }); // handler for a884 google.maps.event.addListener(a884,'click',function() { map.setCenter(a884.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mam Tor Bridleway'; document.getElementById('comments').innerHTML = 'S33 6AF '; }); // handler for a885 google.maps.event.addListener(a885,'click',function() { map.setCenter(a885.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mud from Mam Tor to Edale'; document.getElementById('comments').innerHTML = 'S33 7ZQ '; }); // handler for a886 google.maps.event.addListener(a886,'click',function() { map.setCenter(a886.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Rambler Inn, Edale'; document.getElementById('comments').innerHTML = 'S33 7ZQ '; }); // handler for a887 google.maps.event.addListener(a887,'click',function() { map.setCenter(a887.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Worthing'; document.getElementById('comments').innerHTML = 'BN11 4EW '; }); // handler for a888 google.maps.event.addListener(a888,'click',function() { map.setCenter(a888.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'David Lloyd Worthing'; document.getElementById('comments').innerHTML = 'BN13 3DL '; }); // handler for a889 google.maps.event.addListener(a889,'click',function() { map.setCenter(a889.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Surrenden Park'; document.getElementById('comments').innerHTML = 'BN1 6XA '; }); // handler for a890 google.maps.event.addListener(a890,'click',function() { map.setCenter(a890.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Storrington Rise Car Park'; document.getElementById('comments').innerHTML = 'BN14 0HT '; }); // handler for a891 google.maps.event.addListener(a891,'click',function() { map.setCenter(a891.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cissbury Ring'; document.getElementById('comments').innerHTML = 'BN14 0HT '; }); // handler for a892 google.maps.event.addListener(a892,'click',function() { map.setCenter(a892.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Arundel'; document.getElementById('comments').innerHTML = 'BN18 9AA '; }); // handler for a893 google.maps.event.addListener(a893,'click',function() { map.setCenter(a893.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Nicholas Church, Arundel'; document.getElementById('comments').innerHTML = 'BN18 9AR '; }); // handler for a894 google.maps.event.addListener(a894,'click',function() { map.setCenter(a894.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Worthing Pier'; document.getElementById('comments').innerHTML = 'BN11 3PX '; }); // handler for a895 google.maps.event.addListener(a895,'click',function() { map.setCenter(a895.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Long Bench'; document.getElementById('comments').innerHTML = 'BN17 5GB '; }); // handler for a896 google.maps.event.addListener(a896,'click',function() { map.setCenter(a896.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Littlehampton Pier'; document.getElementById('comments').innerHTML = 'BN17 5GB '; }); // handler for a897 google.maps.event.addListener(a897,'click',function() { map.setCenter(a897.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pier Road'; document.getElementById('comments').innerHTML = 'BN17 5GB '; }); // handler for a898 google.maps.event.addListener(a898,'click',function() { map.setCenter(a898.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bognor Regis Beach'; document.getElementById('comments').innerHTML = 'PO21 1BL '; }); // handler for a899 google.maps.event.addListener(a899,'click',function() { map.setCenter(a899.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pagham Beach'; document.getElementById('comments').innerHTML = 'PO21 4SX '; }); // handler for a900 google.maps.event.addListener(a900,'click',function() { map.setCenter(a900.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Selsey Beach'; document.getElementById('comments').innerHTML = 'PO20 0JA '; }); // handler for a901 google.maps.event.addListener(a901,'click',function() { map.setCenter(a901.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Selsey Beach Car Park'; document.getElementById('comments').innerHTML = 'PO20 0FP '; }); // handler for a902 google.maps.event.addListener(a902,'click',function() { map.setCenter(a902.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cattlemarket Car Park'; document.getElementById('comments').innerHTML = 'PO19 1JW '; }); // handler for a903 google.maps.event.addListener(a903,'click',function() { map.setCenter(a903.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chichester Cross'; document.getElementById('comments').innerHTML = 'PO19 1JW '; }); // handler for a904 google.maps.event.addListener(a904,'click',function() { map.setCenter(a904.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chichester Cathedral'; document.getElementById('comments').innerHTML = 'PO19 1JW '; }); // handler for a905 google.maps.event.addListener(a905,'click',function() { map.setCenter(a905.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Endcliffe Park'; document.getElementById('comments').innerHTML = 'S11 7AB '; }); // handler for a906 google.maps.event.addListener(a906,'click',function() { map.setCenter(a906.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mellor Country House'; document.getElementById('comments').innerHTML = 'SK6 5PP '; }); // handler for a907 google.maps.event.addListener(a907,'click',function() { map.setCenter(a907.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View from Higher Banks'; document.getElementById('comments').innerHTML = 'SK6 5NL '; }); // handler for a908 google.maps.event.addListener(a908,'click',function() { map.setCenter(a908.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Horses near Mellor Cross'; document.getElementById('comments').innerHTML = 'SK6 5NL '; }); // handler for a909 google.maps.event.addListener(a909,'click',function() { map.setCenter(a909.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mellor Cross'; document.getElementById('comments').innerHTML = 'SK6 5NL '; }); // handler for a910 google.maps.event.addListener(a910,'click',function() { map.setCenter(a910.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridle Way in mud'; document.getElementById('comments').innerHTML = 'SK6 5NG '; }); // handler for a911 google.maps.event.addListener(a911,'click',function() { map.setCenter(a911.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Shilon Road'; document.getElementById('comments').innerHTML = 'SK22 1DX '; }); // handler for a912 google.maps.event.addListener(a912,'click',function() { map.setCenter(a912.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Little Mill at Rowarth'; document.getElementById('comments').innerHTML = 'SK22 1EB '; }); // handler for a913 google.maps.event.addListener(a913,'click',function() { map.setCenter(a913.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackshaw Farm'; document.getElementById('comments').innerHTML = 'SK22 2NS '; }); // handler for a914 google.maps.event.addListener(a914,'click',function() { map.setCenter(a914.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Back Rowarth'; document.getElementById('comments').innerHTML = 'SK13 6ED '; }); // handler for a915 google.maps.event.addListener(a915,'click',function() { map.setCenter(a915.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Goddard Lane'; document.getElementById('comments').innerHTML = 'SK22 1EF '; }); // handler for a916 google.maps.event.addListener(a916,'click',function() { map.setCenter(a916.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Thomas Church'; document.getElementById('comments').innerHTML = 'SK6 5LX '; }); // handler for a917 google.maps.event.addListener(a917,'click',function() { map.setCenter(a917.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Hut'; document.getElementById('comments').innerHTML = 'SK6 5LX '; }); // handler for a918 google.maps.event.addListener(a918,'click',function() { map.setCenter(a918.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Devonshire Arms, Mellor'; document.getElementById('comments').innerHTML = 'SK6 5PP '; }); // handler for a919 google.maps.event.addListener(a919,'click',function() { map.setCenter(a919.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bowden Bridge Car Park'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a920 google.maps.event.addListener(a920,'click',function() { map.setCenter(a920.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Footpath towards Kinder Reservoir'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a921 google.maps.event.addListener(a921,'click',function() { map.setCenter(a921.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Kinder Reservoir'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a922 google.maps.event.addListener(a922,'click',function() { map.setCenter(a922.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'William Clough'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a923 google.maps.event.addListener(a923,'click',function() { map.setCenter(a923.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pennine Way'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a924 google.maps.event.addListener(a924,'click',function() { map.setCenter(a924.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kinder Scout Charged Rock'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a925 google.maps.event.addListener(a925,'click',function() { map.setCenter(a925.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kinder Downfall'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a926 google.maps.event.addListener(a926,'click',function() { map.setCenter(a926.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Kinder valley'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a927 google.maps.event.addListener(a927,'click',function() { map.setCenter(a927.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kinder Low Trig Point'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a928 google.maps.event.addListener(a928,'click',function() { map.setCenter(a928.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Edale Cross'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a929 google.maps.event.addListener(a929,'click',function() { map.setCenter(a929.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kinder Low End High Peak Estate'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a930 google.maps.event.addListener(a930,'click',function() { map.setCenter(a930.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Kinder Estate'; document.getElementById('comments').innerHTML = 'SK22 2LH '; }); // handler for a931 google.maps.event.addListener(a931,'click',function() { map.setCenter(a931.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mushroom Lane'; document.getElementById('comments').innerHTML = 'S3 7PZ '; }); // handler for a932 google.maps.event.addListener(a932,'click',function() { map.setCenter(a932.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Springfield Road'; document.getElementById('comments').innerHTML = 'HP5 1GL '; }); // handler for a933 google.maps.event.addListener(a933,'click',function() { map.setCenter(a933.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bastion Steps'; document.getElementById('comments').innerHTML = 'BN10 8LS '; }); // handler for a934 google.maps.event.addListener(a934,'click',function() { map.setCenter(a934.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Undercliff Walk'; document.getElementById('comments').innerHTML = 'BN10 8LS '; }); // handler for a935 google.maps.event.addListener(a935,'click',function() { map.setCenter(a935.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Shoreham Lighthouse'; document.getElementById('comments').innerHTML = 'BN43 6RG '; }); // handler for a936 google.maps.event.addListener(a936,'click',function() { map.setCenter(a936.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Handley Way'; document.getElementById('comments').innerHTML = 'TF3 5FF '; }); // handler for a937 google.maps.event.addListener(a937,'click',function() { map.setCenter(a937.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Newdale Pool'; document.getElementById('comments').innerHTML = 'TF3 5ES '; }); // handler for a938 google.maps.event.addListener(a938,'click',function() { map.setCenter(a938.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wrekin Way'; document.getElementById('comments').innerHTML = 'TF3 5ES '; }); // handler for a939 google.maps.event.addListener(a939,'click',function() { map.setCenter(a939.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wombwell'; document.getElementById('comments').innerHTML = 'S73 0LZ '; }); // handler for a940 google.maps.event.addListener(a940,'click',function() { map.setCenter(a940.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Mere Golf Resort and Spa'; document.getElementById('comments').innerHTML = 'WA16 6LJ '; }); // handler for a941 google.maps.event.addListener(a941,'click',function() { map.setCenter(a941.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Ship'; document.getElementById('comments').innerHTML = 'SK9 4JE '; }); // handler for a942 google.maps.event.addListener(a942,'click',function() { map.setCenter(a942.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Styal Cross'; document.getElementById('comments').innerHTML = 'SK9 4JQ '; }); // handler for a943 google.maps.event.addListener(a943,'click',function() { map.setCenter(a943.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Norcliffe Chapel'; document.getElementById('comments').innerHTML = 'SK9 4JQ '; }); // handler for a944 google.maps.event.addListener(a944,'click',function() { map.setCenter(a944.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chapel Woods'; document.getElementById('comments').innerHTML = 'SK9 4JQ '; }); // handler for a945 google.maps.event.addListener(a945,'click',function() { map.setCenter(a945.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'River Bollin'; document.getElementById('comments').innerHTML = 'SK9 4JQ '; }); // handler for a946 google.maps.event.addListener(a946,'click',function() { map.setCenter(a946.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Giants Castle Bridge'; document.getElementById('comments').innerHTML = 'SK9 4JQ '; }); // handler for a947 google.maps.event.addListener(a947,'click',function() { map.setCenter(a947.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Manchester Airport'; document.getElementById('comments').innerHTML = 'SK9 4LR '; }); // handler for a948 google.maps.event.addListener(a948,'click',function() { map.setCenter(a948.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Near Airport Inn'; document.getElementById('comments').innerHTML = 'SK9 4LR '; }); // handler for a949 google.maps.event.addListener(a949,'click',function() { map.setCenter(a949.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'House Farm off Altrincham road'; document.getElementById('comments').innerHTML = 'SK9 4LR '; }); // handler for a950 google.maps.event.addListener(a950,'click',function() { map.setCenter(a950.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Quarry Bank House Facilities'; document.getElementById('comments').innerHTML = 'SK9 4LA '; }); // handler for a951 google.maps.event.addListener(a951,'click',function() { map.setCenter(a951.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Styal Weir'; document.getElementById('comments').innerHTML = 'SK9 4LA '; }); // handler for a952 google.maps.event.addListener(a952,'click',function() { map.setCenter(a952.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Carrs Car Park'; document.getElementById('comments').innerHTML = 'SK9 4HW '; }); // handler for a953 google.maps.event.addListener(a953,'click',function() { map.setCenter(a953.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Methodist Chapel'; document.getElementById('comments').innerHTML = 'SK9 4JF '; }); // handler for a954 google.maps.event.addListener(a954,'click',function() { map.setCenter(a954.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Promenade'; document.getElementById('comments').innerHTML = 'CH45 3QW '; }); // handler for a955 google.maps.event.addListener(a955,'click',function() { map.setCenter(a955.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Appleton Thorn'; document.getElementById('comments').innerHTML = 'WA4 4QS '; }); // handler for a956 google.maps.event.addListener(a956,'click',function() { map.setCenter(a956.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Towers Business Park'; document.getElementById('comments').innerHTML = 'M20 2JE '; }); // handler for a957 google.maps.event.addListener(a957,'click',function() { map.setCenter(a957.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pritchard Street'; document.getElementById('comments').innerHTML = 'BB11 4JY '; }); // handler for a958 google.maps.event.addListener(a958,'click',function() { map.setCenter(a958.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Old Moat Park'; document.getElementById('comments').innerHTML = 'M20 3EQ '; }); // handler for a959 google.maps.event.addListener(a959,'click',function() { map.setCenter(a959.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sakura streets'; document.getElementById('comments').innerHTML = 'OL8 3AQ '; }); // handler for a960 google.maps.event.addListener(a960,'click',function() { map.setCenter(a960.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Beech Road Park'; document.getElementById('comments').innerHTML = 'M21 9FL '; }); // handler for a961 google.maps.event.addListener(a961,'click',function() { map.setCenter(a961.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Manchester Home Cinema'; document.getElementById('comments').innerHTML = 'M15 4FN '; }); // handler for a962 google.maps.event.addListener(a962,'click',function() { map.setCenter(a962.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Headstone Viaduct'; document.getElementById('comments').innerHTML = 'DE45 1NL '; }); // handler for a963 google.maps.event.addListener(a963,'click',function() { map.setCenter(a963.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'River Wye'; document.getElementById('comments').innerHTML = 'DE45 1NL '; }); // handler for a964 google.maps.event.addListener(a964,'click',function() { map.setCenter(a964.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridge over River Wye'; document.getElementById('comments').innerHTML = 'DE45 1NL '; }); // handler for a965 google.maps.event.addListener(a965,'click',function() { map.setCenter(a965.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Walk along River Wye'; document.getElementById('comments').innerHTML = 'DE45 1NL '; }); // handler for a966 google.maps.event.addListener(a966,'click',function() { map.setCenter(a966.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'White Lodge Car Park'; document.getElementById('comments').innerHTML = 'DE45 1NL '; }); // handler for a967 google.maps.event.addListener(a967,'click',function() { map.setCenter(a967.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Deep Dale Nature Reserve'; document.getElementById('comments').innerHTML = 'SK17 9UH '; }); // handler for a968 google.maps.event.addListener(a968,'click',function() { map.setCenter(a968.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Metal-Can Bidon'; document.getElementById('comments').innerHTML = 'SK17 9UH '; }); // handler for a969 google.maps.event.addListener(a969,'click',function() { map.setCenter(a969.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mini Stables'; document.getElementById('comments').innerHTML = 'SK17 9UH '; }); // handler for a970 google.maps.event.addListener(a970,'click',function() { map.setCenter(a970.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bath in the Field'; document.getElementById('comments').innerHTML = 'SK17 9UH '; }); // handler for a971 google.maps.event.addListener(a971,'click',function() { map.setCenter(a971.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Town End'; document.getElementById('comments').innerHTML = 'SK17 9UD '; }); // handler for a972 google.maps.event.addListener(a972,'click',function() { map.setCenter(a972.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Queens Arms'; document.getElementById('comments').innerHTML = 'SK17 9UD '; }); // handler for a973 google.maps.event.addListener(a973,'click',function() { map.setCenter(a973.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Michael and All Angels Church'; document.getElementById('comments').innerHTML = 'SK17 9TU '; }); // handler for a974 google.maps.event.addListener(a974,'click',function() { map.setCenter(a974.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rock Lodge Farm'; document.getElementById('comments').innerHTML = 'SK17 9TU '; }); // handler for a975 google.maps.event.addListener(a975,'click',function() { map.setCenter(a975.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hollow O`the Moor'; document.getElementById('comments').innerHTML = 'SK17 9TL '; }); // handler for a976 google.maps.event.addListener(a976,'click',function() { map.setCenter(a976.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Long Lane'; document.getElementById('comments').innerHTML = 'SK17 9TL '; }); // handler for a977 google.maps.event.addListener(a977,'click',function() { map.setCenter(a977.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Miller`s Dale Monsal Trail'; document.getElementById('comments').innerHTML = 'SK17 8TD '; }); // handler for a978 google.maps.event.addListener(a978,'click',function() { map.setCenter(a978.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Monsal Trail'; document.getElementById('comments').innerHTML = 'SK17 8TD '; }); // handler for a979 google.maps.event.addListener(a979,'click',function() { map.setCenter(a979.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Litton Mill'; document.getElementById('comments').innerHTML = 'SK17 8SW '; }); // handler for a980 google.maps.event.addListener(a980,'click',function() { map.setCenter(a980.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'River Wye Trail'; document.getElementById('comments').innerHTML = 'SK17 8SW '; }); // handler for a981 google.maps.event.addListener(a981,'click',function() { map.setCenter(a981.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Water-Cum-Jolly Dale'; document.getElementById('comments').innerHTML = 'SK17 8SA '; }); // handler for a982 google.maps.event.addListener(a982,'click',function() { map.setCenter(a982.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Monsal Trail'; document.getElementById('comments').innerHTML = 'SK17 8SA '; }); // handler for a983 google.maps.event.addListener(a983,'click',function() { map.setCenter(a983.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Headstone Viaduct'; document.getElementById('comments').innerHTML = 'DE45 1NL '; }); // handler for a984 google.maps.event.addListener(a984,'click',function() { map.setCenter(a984.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Anchor Inn'; document.getElementById('comments').innerHTML = 'SK17 8RB '; }); // handler for a985 google.maps.event.addListener(a985,'click',function() { map.setCenter(a985.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Salt Ayre Lane'; document.getElementById('comments').innerHTML = 'LA1 5JP '; }); // handler for a986 google.maps.event.addListener(a986,'click',function() { map.setCenter(a986.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Milking Stile Lane'; document.getElementById('comments').innerHTML = 'LA1 5QB '; }); // handler for a987 google.maps.event.addListener(a987,'click',function() { map.setCenter(a987.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fields of Lancaster'; document.getElementById('comments').innerHTML = 'LA2 9HB '; }); // handler for a988 google.maps.event.addListener(a988,'click',function() { map.setCenter(a988.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Ship Inn'; document.getElementById('comments').innerHTML = 'LA2 9QJ '; }); // handler for a989 google.maps.event.addListener(a989,'click',function() { map.setCenter(a989.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Venus and Cupid'; document.getElementById('comments').innerHTML = 'LA4 6AJ '; }); // handler for a990 google.maps.event.addListener(a990,'click',function() { map.setCenter(a990.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blacon'; document.getElementById('comments').innerHTML = 'CH1 5HH '; }); // handler for a991 google.maps.event.addListener(a991,'click',function() { map.setCenter(a991.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Yorkshire Bridge'; document.getElementById('comments').innerHTML = 'S33 0BP '; }); // handler for a992 google.maps.event.addListener(a992,'click',function() { map.setCenter(a992.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Win Hill'; document.getElementById('comments').innerHTML = 'S33 6RA '; }); // handler for a993 google.maps.event.addListener(a993,'click',function() { map.setCenter(a993.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hope Cross'; document.getElementById('comments').innerHTML = 'S33 7ZH '; }); // handler for a994 google.maps.event.addListener(a994,'click',function() { map.setCenter(a994.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Ladybower Reservoir'; document.getElementById('comments').innerHTML = 'S33 7ZH '; }); // handler for a995 google.maps.event.addListener(a995,'click',function() { map.setCenter(a995.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ladybower Dam'; document.getElementById('comments').innerHTML = 'S33 6RA '; }); // handler for a996 google.maps.event.addListener(a996,'click',function() { map.setCenter(a996.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Croydon'; document.getElementById('comments').innerHTML = 'CR9 5AB '; }); // handler for a997 google.maps.event.addListener(a997,'click',function() { map.setCenter(a997.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Devils Dyke Fort'; document.getElementById('comments').innerHTML = 'BN1 8YL '; }); // handler for a998 google.maps.event.addListener(a998,'click',function() { map.setCenter(a998.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Jack And Jill Windmills'; document.getElementById('comments').innerHTML = 'BN6 9PG '; }); // handler for a999 google.maps.event.addListener(a999,'click',function() { map.setCenter(a999.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ukrainian Club Bury'; document.getElementById('comments').innerHTML = 'BL9 7EH '; }); // handler for a1000 google.maps.event.addListener(a1000,'click',function() { map.setCenter(a1000.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tarasivka'; document.getElementById('comments').innerHTML = 'DE72 2BU '; }); // handler for a1001 google.maps.event.addListener(a1001,'click',function() { map.setCenter(a1001.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ukrainian Country Social Club'; document.getElementById('comments').innerHTML = 'DE72 2BU '; }); // handler for a1002 google.maps.event.addListener(a1002,'click',function() { map.setCenter(a1002.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridge over Trent and Mersey Canal'; document.getElementById('comments').innerHTML = 'DE72 2BU '; }); // handler for a1003 google.maps.event.addListener(a1003,'click',function() { map.setCenter(a1003.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chelford Carboot'; document.getElementById('comments').innerHTML = 'WA16 8SU '; }); // handler for a1004 google.maps.event.addListener(a1004,'click',function() { map.setCenter(a1004.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Hub Altrincham'; document.getElementById('comments').innerHTML = 'WA14 2SZ '; }); // handler for a1005 google.maps.event.addListener(a1005,'click',function() { map.setCenter(a1005.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Millers Dale Car Park'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1006 google.maps.event.addListener(a1006,'click',function() { map.setCenter(a1006.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Old East Buxton Lime Kilns'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1007 google.maps.event.addListener(a1007,'click',function() { map.setCenter(a1007.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Monsal Trail Abseiling'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1008 google.maps.event.addListener(a1008,'click',function() { map.setCenter(a1008.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mini bridge1 over River Wye'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1009 google.maps.event.addListener(a1009,'click',function() { map.setCenter(a1009.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over vertical cliff'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1010 google.maps.event.addListener(a1010,'click',function() { map.setCenter(a1010.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Vertical Abseiling'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1011 google.maps.event.addListener(a1011,'click',function() { map.setCenter(a1011.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chee Dale Stepping Stones'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1012 google.maps.event.addListener(a1012,'click',function() { map.setCenter(a1012.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Swimming in River Wye'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1013 google.maps.event.addListener(a1013,'click',function() { map.setCenter(a1013.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mini bridge2 over River Wye'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1014 google.maps.event.addListener(a1014,'click',function() { map.setCenter(a1014.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Under the bridge over River Wye'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1015 google.maps.event.addListener(a1015,'click',function() { map.setCenter(a1015.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nothing interesting just couple of photos'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1016 google.maps.event.addListener(a1016,'click',function() { map.setCenter(a1016.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Blackwell Mill Area'; document.getElementById('comments').innerHTML = 'SK17 8SN '; }); // handler for a1017 google.maps.event.addListener(a1017,'click',function() { map.setCenter(a1017.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pennine Bridleway round puddle'; document.getElementById('comments').innerHTML = 'SK17 9TQ '; }); // handler for a1018 google.maps.event.addListener(a1018,'click',function() { map.setCenter(a1018.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Beech Croft Farm'; document.getElementById('comments').innerHTML = 'SK17 9TQ '; }); // handler for a1019 google.maps.event.addListener(a1019,'click',function() { map.setCenter(a1019.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nothing interesting just a farm'; document.getElementById('comments').innerHTML = 'SK17 9TQ '; }); // handler for a1020 google.maps.event.addListener(a1020,'click',function() { map.setCenter(a1020.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Nothing interesting just a field'; document.getElementById('comments').innerHTML = 'SK17 9TQ '; }); // handler for a1021 google.maps.event.addListener(a1021,'click',function() { map.setCenter(a1021.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Altrincham Baptist Church'; document.getElementById('comments').innerHTML = 'WA14 2EW '; }); // handler for a1022 google.maps.event.addListener(a1022,'click',function() { map.setCenter(a1022.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Breightmet Aldi'; document.getElementById('comments').innerHTML = 'BL2 6PP '; }); // handler for a1023 google.maps.event.addListener(a1023,'click',function() { map.setCenter(a1023.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Victoria Inn'; document.getElementById('comments').innerHTML = 'BL1 5AG '; }); // handler for a1024 google.maps.event.addListener(a1024,'click',function() { map.setCenter(a1024.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Breightmet'; document.getElementById('comments').innerHTML = 'BL2 6UD '; }); // handler for a1025 google.maps.event.addListener(a1025,'click',function() { map.setCenter(a1025.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Beech Hill'; document.getElementById('comments').innerHTML = 'LA23 3PR '; }); // handler for a1026 google.maps.event.addListener(a1026,'click',function() { map.setCenter(a1026.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hampton'; document.getElementById('comments').innerHTML = 'TW12 2AL '; }); // handler for a1027 google.maps.event.addListener(a1027,'click',function() { map.setCenter(a1027.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chudleigh'; document.getElementById('comments').innerHTML = 'TQ13 0NE '; }); // handler for a1028 google.maps.event.addListener(a1028,'click',function() { map.setCenter(a1028.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Babbacombe Downs'; document.getElementById('comments').innerHTML = 'TQ1 3LP '; }); // handler for a1029 google.maps.event.addListener(a1029,'click',function() { map.setCenter(a1029.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ship Inn Wool'; document.getElementById('comments').innerHTML = 'BH20 6EQ '; }); // handler for a1030 google.maps.event.addListener(a1030,'click',function() { map.setCenter(a1030.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'University of Surrey Residence'; document.getElementById('comments').innerHTML = 'GU2 9PL '; }); // handler for a1031 google.maps.event.addListener(a1031,'click',function() { map.setCenter(a1031.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bowdon'; document.getElementById('comments').innerHTML = 'WA14 2SJ '; }); // handler for a1032 google.maps.event.addListener(a1032,'click',function() { map.setCenter(a1032.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ukrainian Social Club'; document.getElementById('comments').innerHTML = 'SK2 7AA '; }); // handler for a1033 google.maps.event.addListener(a1033,'click',function() { map.setCenter(a1033.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Junction Inn'; document.getElementById('comments').innerHTML = 'OL3 5SE '; }); // handler for a1034 google.maps.event.addListener(a1034,'click',function() { map.setCenter(a1034.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Dowry Reservoir'; document.getElementById('comments').innerHTML = 'OL3 5UB '; }); // handler for a1035 google.maps.event.addListener(a1035,'click',function() { map.setCenter(a1035.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'John Leigh Park'; document.getElementById('comments').innerHTML = 'WA14 4EQ '; }); // handler for a1036 google.maps.event.addListener(a1036,'click',function() { map.setCenter(a1036.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Astley'; document.getElementById('comments').innerHTML = 'M29 7BP '; }); // handler for a1037 google.maps.event.addListener(a1037,'click',function() { map.setCenter(a1037.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Heaton Park Northern play area'; document.getElementById('comments').innerHTML = 'M25 2SW '; }); // handler for a1038 google.maps.event.addListener(a1038,'click',function() { map.setCenter(a1038.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brinscall'; document.getElementById('comments').innerHTML = 'PR6 8QU '; }); // handler for a1039 google.maps.event.addListener(a1039,'click',function() { map.setCenter(a1039.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Worsley Boothstown'; document.getElementById('comments').innerHTML = 'M28 1HP '; }); // handler for a1040 google.maps.event.addListener(a1040,'click',function() { map.setCenter(a1040.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Worsley Mosley Common'; document.getElementById('comments').innerHTML = 'M28 1AH '; }); // handler for a1041 google.maps.event.addListener(a1041,'click',function() { map.setCenter(a1041.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pennington Flash Car Park'; document.getElementById('comments').innerHTML = 'WN7 3UG '; }); // handler for a1042 google.maps.event.addListener(a1042,'click',function() { map.setCenter(a1042.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Let Loose Soft Play'; document.getElementById('comments').innerHTML = 'SK7 5DP '; }); // handler for a1043 google.maps.event.addListener(a1043,'click',function() { map.setCenter(a1043.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Moor Rd'; document.getElementById('comments').innerHTML = 'PR6 9BU '; }); // handler for a1044 google.maps.event.addListener(a1044,'click',function() { map.setCenter(a1044.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bamburgh Castle'; document.getElementById('comments').innerHTML = 'NE69 7DF '; }); // handler for a1045 google.maps.event.addListener(a1045,'click',function() { map.setCenter(a1045.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bamburgh Beach'; document.getElementById('comments').innerHTML = 'NE69 7DF '; }); // handler for a1046 google.maps.event.addListener(a1046,'click',function() { map.setCenter(a1046.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Victoria Hotel'; document.getElementById('comments').innerHTML = 'NE69 7BP '; }); // handler for a1047 google.maps.event.addListener(a1047,'click',function() { map.setCenter(a1047.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Waterside Bistro'; document.getElementById('comments').innerHTML = 'EH41 4AT '; }); // handler for a1048 google.maps.event.addListener(a1048,'click',function() { map.setCenter(a1048.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Brae'; document.getElementById('comments').innerHTML = 'EH8 7HN '; }); // handler for a1049 google.maps.event.addListener(a1049,'click',function() { map.setCenter(a1049.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hunts Fld'; document.getElementById('comments').innerHTML = 'PR6 7TT '; }); // handler for a1050 google.maps.event.addListener(a1050,'click',function() { map.setCenter(a1050.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Tockholes Village Hall'; document.getElementById('comments').innerHTML = 'BB3 0LR '; }); // handler for a1051 google.maps.event.addListener(a1051,'click',function() { map.setCenter(a1051.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Horwich Park'; document.getElementById('comments').innerHTML = 'BL6 6LB '; }); // handler for a1052 google.maps.event.addListener(a1052,'click',function() { map.setCenter(a1052.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Imperial War Museum'; document.getElementById('comments').innerHTML = 'M17 1TZ '; }); // handler for a1053 google.maps.event.addListener(a1053,'click',function() { map.setCenter(a1053.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Poynton'; document.getElementById('comments').innerHTML = 'SK12 1RE '; }); // handler for a1054 google.maps.event.addListener(a1054,'click',function() { map.setCenter(a1054.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hale Barns'; document.getElementById('comments').innerHTML = 'WA15 8SX '; }); // handler for a1055 google.maps.event.addListener(a1055,'click',function() { map.setCenter(a1055.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Concorde Conference Centre'; document.getElementById('comments').innerHTML = 'WA15 8XQ '; }); // handler for a1056 google.maps.event.addListener(a1056,'click',function() { map.setCenter(a1056.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ash Road Recycling Centre'; document.getElementById('comments').innerHTML = 'M43 6QU '; }); // handler for a1057 google.maps.event.addListener(a1057,'click',function() { map.setCenter(a1057.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Axe & Cleaver'; document.getElementById('comments').innerHTML = 'WA14 4SE '; }); // handler for a1058 google.maps.event.addListener(a1058,'click',function() { map.setCenter(a1058.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridgeman Street'; document.getElementById('comments').innerHTML = 'BL3 6RR '; }); // handler for a1059 google.maps.event.addListener(a1059,'click',function() { map.setCenter(a1059.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Three Pigeons'; document.getElementById('comments').innerHTML = 'BL3 4RD '; }); // handler for a1060 google.maps.event.addListener(a1060,'click',function() { map.setCenter(a1060.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sale Canal'; document.getElementById('comments').innerHTML = 'M33 4FS '; }); // handler for a1061 google.maps.event.addListener(a1061,'click',function() { map.setCenter(a1061.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Southside MCR Viewing area'; document.getElementById('comments').innerHTML = 'SK9 4LR '; }); // handler for a1062 google.maps.event.addListener(a1062,'click',function() { map.setCenter(a1062.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Canal near Dunham Massey'; document.getElementById('comments').innerHTML = 'WA14 4SH '; }); // handler for a1063 google.maps.event.addListener(a1063,'click',function() { map.setCenter(a1063.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Derwent Valley Way'; document.getElementById('comments').innerHTML = 'DE45 1PP '; }); // handler for a1064 google.maps.event.addListener(a1064,'click',function() { map.setCenter(a1064.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Beeley Hill Top Farm'; document.getElementById('comments').innerHTML = 'DE4 2NW '; }); // handler for a1065 google.maps.event.addListener(a1065,'click',function() { map.setCenter(a1065.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Chatsworth Lakes'; document.getElementById('comments').innerHTML = 'DE45 1PP '; }); // handler for a1066 google.maps.event.addListener(a1066,'click',function() { map.setCenter(a1066.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hunting Tower'; document.getElementById('comments').innerHTML = 'DE45 1PP '; }); // handler for a1067 google.maps.event.addListener(a1067,'click',function() { map.setCenter(a1067.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Unity Theatre'; document.getElementById('comments').innerHTML = 'L1 9BG '; }); // handler for a1068 google.maps.event.addListener(a1068,'click',function() { map.setCenter(a1068.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Carlton Club'; document.getElementById('comments').innerHTML = 'M16 8BE '; }); // handler for a1069 google.maps.event.addListener(a1069,'click',function() { map.setCenter(a1069.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hotel Anfield'; document.getElementById('comments').innerHTML = 'L4 0TE '; }); // handler for a1070 google.maps.event.addListener(a1070,'click',function() { map.setCenter(a1070.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Drumgelloch'; document.getElementById('comments').innerHTML = 'ML6 7HW '; }); // handler for a1071 google.maps.event.addListener(a1071,'click',function() { map.setCenter(a1071.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Drumgelloch Train Station'; document.getElementById('comments').innerHTML = 'ML6 8FY '; }); // handler for a1072 google.maps.event.addListener(a1072,'click',function() { map.setCenter(a1072.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Consulate of Ukraine (Edinburgh)'; document.getElementById('comments').innerHTML = 'EH7 5JR '; }); // handler for a1073 google.maps.event.addListener(a1073,'click',function() { map.setCenter(a1073.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Vennel Viewpoint'; document.getElementById('comments').innerHTML = 'EH1 2HU '; }); // handler for a1074 google.maps.event.addListener(a1074,'click',function() { map.setCenter(a1074.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Edinburgh Castle'; document.getElementById('comments').innerHTML = 'EH1 2NG '; }); // handler for a1075 google.maps.event.addListener(a1075,'click',function() { map.setCenter(a1075.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Overflow parking for Dovestone Reservoir'; document.getElementById('comments').innerHTML = 'OL3 7DR '; }); // handler for a1076 google.maps.event.addListener(a1076,'click',function() { map.setCenter(a1076.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Yeoman Hey Reservoir'; document.getElementById('comments').innerHTML = 'OL3 7NN '; }); // handler for a1077 google.maps.event.addListener(a1077,'click',function() { map.setCenter(a1077.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Checkpoint 1 for Dovestones Edge'; document.getElementById('comments').innerHTML = 'OL3 7NN '; }); // handler for a1078 google.maps.event.addListener(a1078,'click',function() { map.setCenter(a1078.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Dovestones Edge'; document.getElementById('comments').innerHTML = 'OL3 7NN '; }); // handler for a1079 google.maps.event.addListener(a1079,'click',function() { map.setCenter(a1079.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Checkpoint 2 for Dovestones Edge'; document.getElementById('comments').innerHTML = 'OL3 7NN '; }); // handler for a1080 google.maps.event.addListener(a1080,'click',function() { map.setCenter(a1080.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brookside Miniature Railway'; document.getElementById('comments').innerHTML = 'SK12 1BZ '; }); // handler for a1081 google.maps.event.addListener(a1081,'click',function() { map.setCenter(a1081.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ryal Fold'; document.getElementById('comments').innerHTML = 'BB3 0PA '; }); // handler for a1082 google.maps.event.addListener(a1082,'click',function() { map.setCenter(a1082.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Upper Roddlesworth Reservoir'; document.getElementById('comments').innerHTML = 'BB3 0PA '; }); // handler for a1083 google.maps.event.addListener(a1083,'click',function() { map.setCenter(a1083.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Brewhouse and Kitchen'; document.getElementById('comments').innerHTML = 'BN11 4JD '; }); // handler for a1084 google.maps.event.addListener(a1084,'click',function() { map.setCenter(a1084.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'UCLan Media Factory'; document.getElementById('comments').innerHTML = 'PR1 1JN '; }); // handler for a1085 google.maps.event.addListener(a1085,'click',function() { map.setCenter(a1085.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Anytime Fitness'; document.getElementById('comments').innerHTML = 'BL9 0QF '; }); // handler for a1086 google.maps.event.addListener(a1086,'click',function() { map.setCenter(a1086.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'West Kennet Avenue'; document.getElementById('comments').innerHTML = 'SN8 1RD '; }); // handler for a1087 google.maps.event.addListener(a1087,'click',function() { map.setCenter(a1087.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Avebury Henge and Stone Circles'; document.getElementById('comments').innerHTML = 'SN8 1RD '; }); // handler for a1088 google.maps.event.addListener(a1088,'click',function() { map.setCenter(a1088.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Avebury Stone Alley'; document.getElementById('comments').innerHTML = 'SN8 1RF '; }); // handler for a1089 google.maps.event.addListener(a1089,'click',function() { map.setCenter(a1089.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Henge and Avebury Community Shops'; document.getElementById('comments').innerHTML = 'SN8 1RF '; }); // handler for a1090 google.maps.event.addListener(a1090,'click',function() { map.setCenter(a1090.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Red Lion Avebury'; document.getElementById('comments').innerHTML = 'SN8 1RF '; }); // handler for a1091 google.maps.event.addListener(a1091,'click',function() { map.setCenter(a1091.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Seaford Beach'; document.getElementById('comments').innerHTML = 'BN25 2PY '; }); // handler for a1092 google.maps.event.addListener(a1092,'click',function() { map.setCenter(a1092.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Birling Gap'; document.getElementById('comments').innerHTML = 'BN20 0AB '; }); // handler for a1093 google.maps.event.addListener(a1093,'click',function() { map.setCenter(a1093.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ouse Valley Viaduct'; document.getElementById('comments').innerHTML = 'RH17 6QR '; }); // handler for a1094 google.maps.event.addListener(a1094,'click',function() { map.setCenter(a1094.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ardingly Activity Centre'; document.getElementById('comments').innerHTML = 'RH17 6SQ '; }); // handler for a1095 google.maps.event.addListener(a1095,'click',function() { map.setCenter(a1095.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ardingly Reservoir'; document.getElementById('comments').innerHTML = 'RH17 6SQ '; }); // handler for a1096 google.maps.event.addListener(a1096,'click',function() { map.setCenter(a1096.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hayling Island Beach'; document.getElementById('comments').innerHTML = 'PO11 9HL '; }); // handler for a1097 google.maps.event.addListener(a1097,'click',function() { map.setCenter(a1097.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Crescent Avenue'; document.getElementById('comments').innerHTML = 'CV3 1HE '; }); // handler for a1098 google.maps.event.addListener(a1098,'click',function() { map.setCenter(a1098.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Factory International'; document.getElementById('comments').innerHTML = 'M3 4JQ '; }); // handler for a1099 google.maps.event.addListener(a1099,'click',function() { map.setCenter(a1099.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Fleece Inn'; document.getElementById('comments').innerHTML = 'HD9 2QG '; }); // handler for a1100 google.maps.event.addListener(a1100,'click',function() { map.setCenter(a1100.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'John Rylands Library'; document.getElementById('comments').innerHTML = 'M13 9PP '; }); // handler for a1101 google.maps.event.addListener(a1101,'click',function() { map.setCenter(a1101.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Pingot Quarry Waterfall'; document.getElementById('comments').innerHTML = 'OL2 8LX '; }); // handler for a1102 google.maps.event.addListener(a1102,'click',function() { map.setCenter(a1102.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Piethorne Brook Waterfall'; document.getElementById('comments').innerHTML = 'OL3 5UN '; }); // handler for a1103 google.maps.event.addListener(a1103,'click',function() { map.setCenter(a1103.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Poynton Park'; document.getElementById('comments').innerHTML = 'SK12 1BS '; }); // handler for a1104 google.maps.event.addListener(a1104,'click',function() { map.setCenter(a1104.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Buxworth'; document.getElementById('comments').innerHTML = 'SK23 7NJ '; }); // handler for a1105 google.maps.event.addListener(a1105,'click',function() { map.setCenter(a1105.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bugsworth Basin'; document.getElementById('comments').innerHTML = 'SK23 7NE '; }); // handler for a1106 google.maps.event.addListener(a1106,'click',function() { map.setCenter(a1106.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Black Brook Canal'; document.getElementById('comments').innerHTML = 'SK23 7NE '; }); // handler for a1107 google.maps.event.addListener(a1107,'click',function() { map.setCenter(a1107.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rievaulx Abbey'; document.getElementById('comments').innerHTML = 'YO62 5LB '; }); // handler for a1108 google.maps.event.addListener(a1108,'click',function() { map.setCenter(a1108.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Clay Bank Car Park'; document.getElementById('comments').innerHTML = 'TS9 7HX '; }); // handler for a1109 google.maps.event.addListener(a1109,'click',function() { map.setCenter(a1109.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Redcar Beacon'; document.getElementById('comments').innerHTML = 'TS10 3AA '; }); // handler for a1110 google.maps.event.addListener(a1110,'click',function() { map.setCenter(a1110.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Redcar Lake'; document.getElementById('comments').innerHTML = 'TS10 5BJ '; }); // handler for a1111 google.maps.event.addListener(a1111,'click',function() { map.setCenter(a1111.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Redcar Beach'; document.getElementById('comments').innerHTML = 'TS10 3AA '; }); // handler for a1112 google.maps.event.addListener(a1112,'click',function() { map.setCenter(a1112.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Oil Radiator'; document.getElementById('comments').innerHTML = 'BL7 0AW '; }); // handler for a1113 google.maps.event.addListener(a1113,'click',function() { map.setCenter(a1113.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Spare Tyre'; document.getElementById('comments').innerHTML = 'NG7 1AN '; }); // handler for a1114 google.maps.event.addListener(a1114,'click',function() { map.setCenter(a1114.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Fallowfield Retail Park'; document.getElementById('comments').innerHTML = 'M14 6FS '; }); // handler for a1115 google.maps.event.addListener(a1115,'click',function() { map.setCenter(a1115.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Platt Fields Park'; document.getElementById('comments').innerHTML = 'M14 6LA '; }); // handler for a1116 google.maps.event.addListener(a1116,'click',function() { map.setCenter(a1116.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Sycamore Road'; document.getElementById('comments').innerHTML = 'BL8 3EH '; }); // handler for a1117 google.maps.event.addListener(a1117,'click',function() { map.setCenter(a1117.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Booth Street'; document.getElementById('comments').innerHTML = 'BL8 3JH '; }); // handler for a1118 google.maps.event.addListener(a1118,'click',function() { map.setCenter(a1118.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Ainsworth'; document.getElementById('comments').innerHTML = 'BL2 5SW '; }); // handler for a1119 google.maps.event.addListener(a1119,'click',function() { map.setCenter(a1119.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Black Bull Inn'; document.getElementById('comments').innerHTML = 'BL7 0AF '; }); // handler for a1120 google.maps.event.addListener(a1120,'click',function() { map.setCenter(a1120.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'St Oswald`s Church'; document.getElementById('comments').innerHTML = 'LA22 9SW '; }); // handler for a1121 google.maps.event.addListener(a1121,'click',function() { map.setCenter(a1121.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Broadgate'; document.getElementById('comments').innerHTML = 'LA22 9TA '; }); // handler for a1122 google.maps.event.addListener(a1122,'click',function() { map.setCenter(a1122.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Three Shires Inn'; document.getElementById('comments').innerHTML = 'LA22 9NZ '; }); // handler for a1123 google.maps.event.addListener(a1123,'click',function() { map.setCenter(a1123.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Little Langdale walk start'; document.getElementById('comments').innerHTML = 'LA22 9NY '; }); // handler for a1124 google.maps.event.addListener(a1124,'click',function() { map.setCenter(a1124.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridge over River Brathay'; document.getElementById('comments').innerHTML = 'LA22 9NY '; }); // handler for a1125 google.maps.event.addListener(a1125,'click',function() { map.setCenter(a1125.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Forest path towards Hodge Close'; document.getElementById('comments').innerHTML = 'LA21 8DJ '; }); // handler for a1126 google.maps.event.addListener(a1126,'click',function() { map.setCenter(a1126.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Green Slate Quarry'; document.getElementById('comments').innerHTML = 'LA21 8DJ '; }); // handler for a1127 google.maps.event.addListener(a1127,'click',function() { map.setCenter(a1127.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Hodge Close Green Slate Quarry'; document.getElementById('comments').innerHTML = 'LA21 8DJ '; }); // handler for a1128 google.maps.event.addListener(a1128,'click',function() { map.setCenter(a1128.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'View over Fitz Steps'; document.getElementById('comments').innerHTML = 'LA22 9PB '; }); // handler for a1129 google.maps.event.addListener(a1129,'click',function() { map.setCenter(a1129.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Slater`s Bridge'; document.getElementById('comments').innerHTML = 'LA22 9PA '; }); // handler for a1130 google.maps.event.addListener(a1130,'click',function() { map.setCenter(a1130.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Rowlands Road'; document.getElementById('comments').innerHTML = 'BL9 5NF '; }); // handler for a1131 google.maps.event.addListener(a1131,'click',function() { map.setCenter(a1131.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Rock Shopping Centre'; document.getElementById('comments').innerHTML = 'BL9 0BZ '; }); // handler for a1132 google.maps.event.addListener(a1132,'click',function() { map.setCenter(a1132.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mellor Waterfall 1'; document.getElementById('comments').innerHTML = 'SK6 5NL '; }); // handler for a1133 google.maps.event.addListener(a1133,'click',function() { map.setCenter(a1133.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mellor Trig'; document.getElementById('comments').innerHTML = 'SK6 5NL '; }); // handler for a1134 google.maps.event.addListener(a1134,'click',function() { map.setCenter(a1134.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Bridle swing'; document.getElementById('comments').innerHTML = 'SK6 5NG '; }); // handler for a1135 google.maps.event.addListener(a1135,'click',function() { map.setCenter(a1135.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Podnor Lane'; document.getElementById('comments').innerHTML = 'SK6 5PT '; }); // handler for a1136 google.maps.event.addListener(a1136,'click',function() { map.setCenter(a1136.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Mellor Waterfall 2'; document.getElementById('comments').innerHTML = 'SK6 5PT '; }); // handler for a1137 google.maps.event.addListener(a1137,'click',function() { map.setCenter(a1137.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Commercial Road'; document.getElementById('comments').innerHTML = 'E1 2PS '; }); // handler for a1138 google.maps.event.addListener(a1138,'click',function() { map.setCenter(a1138.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Gift Box Britain gift shop'; document.getElementById('comments').innerHTML = 'WC2N 5AQ '; }); // handler for a1139 google.maps.event.addListener(a1139,'click',function() { map.setCenter(a1139.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Diana Memorial Playground'; document.getElementById('comments').innerHTML = 'W2 4RU '; }); // handler for a1140 google.maps.event.addListener(a1140,'click',function() { map.setCenter(a1140.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Kensington Gardens'; document.getElementById('comments').innerHTML = 'W8 4PU '; }); // handler for a1141 google.maps.event.addListener(a1141,'click',function() { map.setCenter(a1141.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Anchor Bankside'; document.getElementById('comments').innerHTML = 'SE1 9EF '; }); // handler for a1142 google.maps.event.addListener(a1142,'click',function() { map.setCenter(a1142.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Cabot Square Fountain'; document.getElementById('comments').innerHTML = 'E14 4QT '; }); // handler for a1143 google.maps.event.addListener(a1143,'click',function() { map.setCenter(a1143.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'The Clew'; document.getElementById('comments').innerHTML = 'E14 4QA '; }); // handler for a1144 google.maps.event.addListener(a1144,'click',function() { map.setCenter(a1144.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Canary Wharf Promenade'; document.getElementById('comments').innerHTML = 'E14 8RP '; }); // handler for a1145 google.maps.event.addListener(a1145,'click',function() { map.setCenter(a1145.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Canary Wharf Pier'; document.getElementById('comments').innerHTML = 'E14 8RR '; }); // handler for a1146 google.maps.event.addListener(a1146,'click',function() { map.setCenter(a1146.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Warburton Toll Bridge'; document.getElementById('comments').innerHTML = 'WA13 9ST '; }); // handler for a1147 google.maps.event.addListener(a1147,'click',function() { map.setCenter(a1147.getPosition()); map.setZoom(map.getZoom() + 1); document.getElementById('content').innerHTML = 'Wood Lane'; document.getElementById('comments').innerHTML = 'M31 4JW '; }); // // final touches // document.getElementById('total_places').innerHTML = 1147; //////////////////////////////////////////////////////////////////////////////// // end of places ////////////////////////////////////////////////////////////////////////////////