var map; var geocoder; var centerChangedLast; var reverseGeocodedLast; var currentReverseGeocodeResponse; var visibleInfoWindow= null; var markers=Array(); function initialize() { var latlng = new google.maps.LatLng(51.5476447, -0.0601675); var myOptions = { zoom: 13, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP, navigationControl: true, navigationControlOptions: google.maps.NavigationControlStyle.SMALL, mapTypeControl: false, scaleControl: true }; map = new google.maps.Map(document.getElementById("googleMap"), myOptions); geocoder = new google.maps.Geocoder(); setMarkers(); setupEvents(); centerChanged(); } function setupEvents() { reverseGeocodedLast = new Date(); centerChangedLast = new Date(); //get address every 1 sec /* setInterval(function() { if((new Date()).getSeconds() - centerChangedLast.getSeconds() > 1) { if(reverseGeocodedLast.getTime() < centerChangedLast.getTime()) reverseGeocode(); } }, 1000); */ google.maps.event.addListener(map, 'zoom_changed', function() { //document.getElementById("zoom_level").innerHTML = map.get_zoom(); }); google.maps.event.addListener(map, 'center_changed', centerChanged); google.maps.event.addDomListener(document.getElementById('crosshair'),'dblclick', function() { map.set_zoom(map.get_zoom() + 1); }); } function getCenterLatLngText() { return map.getCenter().lat() +', '+ map.getCenter().lng(); } function centerChanged() { centerChangedLast = new Date(); var latlng = getCenterLatLngText(); document.getElementById('latlng').value = latlng; //document.getElementById('formatedAddress').innerHTML = ''; currentReverseGeocodeResponse = null; } function reverseGeocode() { reverseGeocodedLast = new Date(); geocoder.geocode({latLng:map.getCenter()},reverseGeocodeResult); } function reverseGeocodeResult(results, status) { currentReverseGeocodeResponse = results; if(status == 'OK') { if(results.length == 0) { document.getElementById('address').value = 'None'; } else { document.getElementById('address').value = results[0].formatted_address; } } else { document.getElementById('address').value = 'Error'; } } function geocode() { var error=''; if (document.getElementById("address").value!="" && document.getElementById("area").value=="") error=error+'Please enter the area\r\n'; if (document.getElementById("address").value=="" && document.getElementById("area").value=="" && document.getElementById("postcode").value=="") error=error+'Please enter the area and/or the postcode\r\n'; //if (document.getElementById("postcode").value=="") error=error+'- the postcode\r\n'; if (error) { //error='Please enter:\r\n'+error; alert (error); } else { document.getElementById('proximityresults').innerHTML='searching...'; var address = document.getElementById("address").value+', '+document.getElementById("area").value+', '+document.getElementById("postcode").value+', UK'; geocoder.geocode({ 'address': address, 'partialmatch': true}, geocodeResult); } } function geocodeResult(results, status) { if (status == 'OK' && results.length > 0) { map.fitBounds(results[0].geometry.viewport); getNearest(map.getCenter().lat(), map.getCenter().lng()); } else { alert("Geocode was not successful for the following reason: " + status); } } function setMarkers(){ var shape = { coord: [9, 34, 0, 8, 9, 0, 19 , 9], type: 'poly' }; var icons=Array(); markerGroups = Array(); icons['event-youth']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-youth']= Array(); icons['event-sport']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-sport']= Array(); icons['event-entertainment']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-entertainment']= Array(); icons['event-music']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-music']= Array(); icons['event-arts']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-arts']= Array(); icons['event-']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-']= Array(); icons['event-- select -']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-- select -']= Array(); icons['event-general']=new google.maps.MarkerImage('/images/map-icons/event-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['event-general']= Array(); icons['org-youth-clubs']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-youth-clubs']= Array(); icons['org-volunteering']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-volunteering']= Array(); icons['org-workshops']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-workshops']= Array(); icons['org-sports']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-sports']= Array(); icons['org-libraries']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-libraries']= Array(); icons['org-music']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-music']= Array(); icons['org-colleges']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-colleges']= Array(); icons['org-artscrafts']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-artscrafts']= Array(); icons['org-council']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-council']= Array(); icons['org-initiative']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-initiative']= Array(); icons['org-leisure-centres']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-leisure-centres']= Array(); icons['org-forumsparliaments']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-forumsparliaments']= Array(); icons['org-other']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-other']= Array(); icons['org-museums']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-museums']= Array(); icons['org-playgrounds']=new google.maps.MarkerImage('/images/map-icons/org-blank.png', new google.maps.Size(37, 34), new google.maps.Point(0,0), new google.maps.Point(9, 34)); markerGroups['org-playgrounds']= Array(); var locations=Array(); locations.push(['Blue Hut (Skyway)', 51.529467700000005, -0.0888833, 'org-youth-clubs', '/organisations/youth-clubs/blue-hut-skyway.php','']); locations.push(['Hackney Play Association', 51.527277586595545, -0.0759174313354527, 'org-volunteering', '/organisations/volunteering/hackney-play-association.php','']); locations.push(['Elevate', 51.5741399, -0.07234310000000001, 'org-workshops', '/organisations/workshops/elevate.php','']); locations.push(['SkyWay Sports Programme', 51.5476447, -0.0601675, 'org-sports', '/organisations/sports/skyway-sports-programme.php','']); locations.push(['Stamford Hill Library', 51.56422321086915, -0.06911742777099938, 'org-libraries', '/organisations/libraries/stamford-hill-library.php','']); locations.push(['Urban Voice Music', 51.54785819943592, -0.06016750000000348, 'org-music', '/organisations/music/urban-voice-music.php','']); locations.push(['Hackney Community College', 51.53077570881283, -0.07869695000000343, 'org-colleges', '/organisations/colleges/hackney-community-college.php','']); locations.push(['Hackney Youth Offer', 51.545082628623014, -0.0560047116088902, 'org-council', '/organisations/council/hackney-youth-offer.php','']); locations.push(['Frampton Park Youth Club', 51.542219708857466, -0.049516499999981534, 'org-youth-clubs', '/organisations/youth-clubs/frampton-park-youth-club.php','']); locations.push(['Hoxton Hall', 51.5304916, -0.0802494, 'org-youth-clubs', '/organisations/youth-clubs/hoxton-hall.php','']); locations.push(['Laburnum Boat Club', 51.535311708830534, -0.07354980000002342, 'org-youth-clubs', '/organisations/youth-clubs/laburnum-boat-club.php','']); locations.push(['Parkside Youth Club', 51.57250960897571, -0.09370115000001533, 'org-youth-clubs', '/organisations/youth-clubs/parkside-youth-club.php','']); locations.push(['The Pedro Youth Club', 51.555001471163656, -0.0434891616393962, 'org-youth-clubs', '/organisations/youth-clubs/the-pedro-youth-club.php','']); locations.push(['Volunteer Centre Hackney', 51.54777619116664, -0.0684499740600586, 'org-volunteering', '/organisations/volunteering/volunteer-centre-hackney.php','']); locations.push(['London Wildlife Trust', 51.5476447, -0.0601675, 'org-volunteering', '/organisations/volunteering/london-wildlife-trust.php','']); locations.push(['Fellows Court Community Centre', 51.532607899999995, -0.07248164999998607, 'org-youth-clubs', '/organisations/youth-clubs/fellows-court-community-centre.php','']); locations.push(['National Playday', 51.5302618, -0.1021855, 'org-initiative', '/organisations/initiative/national-playday.php','']); locations.push(['Urban Griots', 51.547187958880315, -0.07418854999999835, 'org-workshops', '/organisations/workshops/urban-griots.php','']); locations.push(['The Access to Sports Project', 51.55482540890663, -0.11128799999999605, 'org-sports', '/organisations/sports/the-access-to-sports-project.php','']); locations.push(['Leyton Orient Kickz Programme', 51.545762908871296, -0.05548009999995429, 'org-sports', '/organisations/sports/leyton-orient-kickz-programme.php','']); locations.push(['Nemesis Street Dance', 51.545786515898925, -0.05541840000000686, 'org-sports', '/organisations/sports/nemesis-street-dance.php','']); locations.push(['Queensbridge Sport & Community Centre', 51.5420841, -0.0717019, 'org-leisure-centres', '/organisations/leisure-centres/queensbridge-sport-and-community-centre.php','']); locations.push(['London Fields Lido', 51.542317149999995, -0.062140449999999986, 'org-sports', '/organisations/sports/london-fields-lido.php','']); locations.push(['Stoke Newington West Reservoir Centre', 51.565704705945286, -0.09397844999999183, 'org-sports', '/organisations/sports/stoke-newington-west-reservoir-centre.php','']); locations.push(['Britannia Leisure Centre', 51.535836158836034, -0.08331760000000354, 'org-leisure-centres', '/organisations/leisure-centres/britannia-leisure-centre.php','']); locations.push(['Kings Hall Leisure Centre', 51.5507014, -0.0528502, 'org-leisure-centres', '/organisations/leisure-centres/kings-hall-leisure-centre.php','']); locations.push(['Hackney Central Library', 51.54456886257014, -0.05596179626465192, 'org-libraries', '/organisations/libraries/hackney-central-library.php','']); locations.push(['Stoke Newington Library', 51.5622133, -0.0771404, 'org-libraries', '/organisations/libraries/stoke-newington-library.php','']); locations.push(['Shoreditch Library', 51.530212158814074, -0.08024964999999717, 'org-libraries', '/organisations/libraries/shoreditch-library.php','']); locations.push(['Homerton Children\'s Library', 51.54857905, -0.044860000000000004, 'org-libraries', '/organisations/libraries/homerton-childrens-library.php','']); locations.push(['Clapton Library', 51.56271915894096, -0.06207250000000997, 'org-libraries', '/organisations/libraries/clapton-library.php','']); locations.push(['CLR James Library', 51.548363310507845, -0.06780624389648438, 'org-libraries', '/organisations/libraries/clr-james-library.php','']); locations.push(['Skyway Charity', 51.53546995883462, -0.07693405000000375, 'org-initiative', '/organisations/initiative/skyway-charity.php','']); locations.push(['Mouth That Roars', 51.52850410880399, -0.07603500000004715, 'org-artscrafts', '/organisations/artscrafts/mouth-that-roars.php','']); locations.push(['Rising Tide', 51.54477570414633, -0.05503375194549909, 'org-artscrafts', '/organisations/artscrafts/rising-tide.php','']); locations.push(['Greenwich Leisure Limited (GLL)', 51.54444208823651, -0.05621928833008161, 'org-leisure-centres', '/organisations/leisure-centres/greenwich-leisure-limited-gll.php','']); locations.push(['Hackney Youth Parliament', 51.544486628993134, -0.056293237573250554, 'org-forumsparliaments', '/organisations/forumsparliaments/hackney-youth-parliament.php','']); locations.push(['Hackney Homes', 51.54540765887338, -0.056112899999996024, 'org-other', '/organisations/other/hackney-homes.php','']); locations.push(['Crown and Manor Club', 51.536237332606895, -0.08668522936095657, 'org-sports', '/organisations/sports/crown-and-manor-club.php','']); locations.push(['Geffrye Museum', 51.53245095, -0.07739485000000001, 'org-museums', '/organisations/museums/geffrye-museum.php','']); locations.push(['Centerprise', 51.549967200000005, -0.0752438, 'org-artscrafts', '/organisations/artscrafts/centerprise.php','']); locations.push(['Hackney Marsh Partnership Youth Club', 51.55055464277972, -0.033467333081049766, 'org-youth-clubs', '/organisations/youth-clubs/hackney-marsh-partnership-youth-club.php','']); locations.push(['Lion Club for Young People', 51.52858555056994, -0.08335816931151374, 'org-youth-clubs', '/organisations/youth-clubs/lion-club-for-young-people.php','']); locations.push(['Markfield Project', 51.58321616882933, -0.06397673068848197, 'org-youth-clubs', '/organisations/youth-clubs/markfield-project.php','']); locations.push(['Pembury Estate Youth Club', 51.55121430889256, -0.05869850000000065, 'org-youth-clubs', '/organisations/youth-clubs/pembury-estate-youth-club.php','']); locations.push(['S. Pinter Youth Project', 51.5690421, -0.086184, 'org-playgrounds', '/organisations/playgrounds/s-pinter-youth-project.php','']); locations.push(['Senegambia Youth Association', 51.549967200000005, -0.0752438, 'org-youth-clubs', '/organisations/youth-clubs/senegambia-youth-association.php','']); locations.push(['Stepping Up Youth Project', 51.55342219358514, -0.03428272462156201, 'org-youth-clubs', '/organisations/youth-clubs/stepping-up-youth-project.php','']); locations.push(['Scout Association', 51.650151609279526, 0.002600099999985339, 'org-initiative', '/organisations/initiative/scout-association.php','']); locations.push(['Girlguiding London and South East England', 51.4471771, -0.1576494, 'org-initiative', '/organisations/initiative/girlguiding-london-and-south-east-england.php','']); locations.push(['Hackney Modern', 51.56772515, -0.06963405, 'org-artscrafts', '/organisations/artscrafts/hackney-modern.php','']); locations.push(['Hackney Quest', 51.54415849269001, -0.0464447957702987, 'org-youth-clubs', '/organisations/youth-clubs/hackney-quest.php','']); locations.push(['Tropical Isles', 51.549252599999995, -0.0753207, 'org-workshops', '/organisations/workshops/tropical-isles.php','']); locations.push(['Hackney Recruitment Partnership', 51.5485729, -0.0758013, 'org-initiative', '/organisations/initiative/hackney-recruitment-partnership.php','']); locations.push(['Drake Music Project', 51.5246384087889, -0.0722670999999897, 'org-music', '/organisations/music/drake-music-project.php','']); locations.push(['Arcola Theatre', 51.55199245, -0.07344455, 'org-artscrafts', '/organisations/artscrafts/arcola-theatre.php','']); locations.push(['Chats Palace', 51.54991499999999, -0.0428447, 'org-artscrafts', '/organisations/artscrafts/chats-palace.php','']); locations.push(['Hackney Empire', 51.545380800000004, -0.0552503, 'org-artscrafts', '/organisations/artscrafts/hackney-empire.php','']); locations.push(['Immediate Theatre', 51.5304405, -0.0802531, 'org-artscrafts', '/organisations/artscrafts/immediate-theatre.php','']); locations.push(['Quicksilver Theatre', 51.5403691, -0.0778297, 'org-artscrafts', '/organisations/artscrafts/quicksilver-theatre.php','']); locations.push(['Theatre Centre', 51.526852414573106, -0.0793143561767673, 'org-artscrafts', '/organisations/artscrafts/theatre-centre.php','']); locations.push(['Hackney Music Development Trust', 51.544679408867076, -0.05653959999995095, 'org-music', '/organisations/music/hackney-music-development-trust.php','']); locations.push(['The Hackney Music Service', 51.539493108846855, -0.06912294999999346, 'org-music', '/organisations/music/the-hackney-music-service.php','']); locations.push(['Carol Straker Dance Foundation', 51.55442846630866, -0.05424986704101187, 'org-artscrafts', '/organisations/artscrafts/carol-straker-dance-foundation.php','']); locations.push(['Hackney Museum', 51.54476041332971, -0.05559682846069336, 'org-museums', '/organisations/museums/hackney-museum.php','']); locations.push(['Museum of Childhood', 51.52906446684804, -0.055747032165527344, 'org-museums', '/organisations/museums/museum-of-childhood.php','']); locations.push(['Ragged School Museum', 51.51990669999999, -0.03510515, 'org-museums', '/organisations/museums/ragged-school-museum.php','']); locations.push(['Hackney City Tennis Clubs', 51.56130358393049, -0.08675425659178781, 'org-sports', '/organisations/sports/hackney-city-tennis-clubs.php','']); locations.push(['Hackney Women\'s Football Club', 51.55249961840673, -0.023560523986816406, 'org-sports', '/organisations/sports/hackney-womens-football-club.php','']); locations.push(['Lee Valley Riding Centre', 51.56952095, -0.027273199999999997, 'org-sports', '/organisations/sports/lee-valley-riding-centre.php','']); locations.push(['Shoreditch Youth F.C.', 51.527863023475135, -0.08737564086914062, 'org-sports', '/organisations/sports/shoreditch-youth-fc.php','']); locations.push(['Victoria Park Harriers & Tower Hamlets AC', 51.54452021004045, -0.03325939178466797, 'org-sports', '/organisations/sports/victoria-park-harriers-and-tower-hamlets-ac.php','']); locations.push(['Purple Bus', 51.545189384477496, -0.056133457641605045, 'org-youth-clubs', '/organisations/youth-clubs/purple-bus.php','']); locations.push(['BSix Brooke House 6th Form College', 51.55875472282431, -0.057638540722650955, 'org-colleges', '/organisations/colleges/bsix-brooke-house-6th-form-college.php','']); locations.push(['Clissold Leisure Centre', 51.5566239, -0.0865004, 'org-leisure-centres', '/organisations/leisure-centres/clissold-leisure-centre.php','']); locations.push(['Shoreditch Trust', 51.529467700000005, -0.0888833, 'org-initiative', '/organisations/initiative/shoreditch-trust.php','']); locations.push(['Eastside Summer Dance Programme ', 51.5277161088009, -0.07659084999998455, 'org-workshops', '/organisations/workshops/eastside-summer-dance-programme-.php','']); locations.push(['Headliners', 51.5241593, -0.0733135, 'org-initiative', '/organisations/initiative/headliners.php','']); locations.push(['Forest Road Young People\'s Centre', 51.543035063091864, -0.07299485634462144, 'org-youth-clubs', '/organisations/youth-clubs/forest-road-young-peoples-centre.php','']); locations.push(['Rolling Sound', 51.48074715862144, -0.03405270000000682, 'org-artscrafts', '/organisations/artscrafts/rolling-sound.php','']); locations.push(['Yorkshire Grove', 51.55654110000001, -0.0816347852112358, 'org-youth-clubs', '/organisations/youth-clubs/yorkshire-grove.php','']); locations.push(['Catch 22 @ Hackney / South Hackney Youth Inclusion Project', 51.539972899999995, -0.0766362, 'org-initiative', '/organisations/initiative/catch-22--hackney--south-hackney-youth-inclusion-project.php','']); locations.push(['The Crib', 51.53810215, -0.0839578, 'org-youth-clubs', '/organisations/youth-clubs/the-crib.php','']); locations.push(['Daymer Centre', 51.552782527804226, -0.08245598465577153, 'org-youth-clubs', '/organisations/youth-clubs/daymer-centre.php','']); locations.push(['North London Muslim Community Centre', 51.56515025895044, -0.06918669999999238, 'org-youth-clubs', '/organisations/youth-clubs/north-london-muslim-community-centre.php','']); locations.push(['TEDA (Turkish Education and Development Association)', 51.555374, -0.0746591, 'org-youth-clubs', '/organisations/youth-clubs/teda-turkish-education-and-development-association.php','']); locations.push(['Hackney Marsh Play Association', 51.55348890379382, -0.03501228547360791, 'org-playgrounds', '/organisations/playgrounds/hackney-marsh-play-association.php','']); locations.push(['Homerton Grove Adventure Playground', 51.54911645000001, -0.043912849999999996, 'org-playgrounds', '/organisations/playgrounds/homerton-grove-adventure-playground.php','']); locations.push(['Shakespeare Walk Adventure Playground', 51.5552237, -0.0819052, 'org-playgrounds', '/organisations/playgrounds/shakespeare-walk-adventure-playground.php','']); locations.push(['Shoreditch Park Adventure Playground', 51.533004549999994, -0.0860333, 'org-playgrounds', '/organisations/playgrounds/shoreditch-park-adventure-playground.php','']); locations.push(['Youth Opportunity Fund (YOF)', 51.5462615, -0.0467424, 'org-initiative', '/organisations/initiative/youth-opportunity-fund-yof.php','']); locations.push(['Skyway Volunteering', 51.53546995883462, -0.07693405000000375, 'org-volunteering', '/organisations/volunteering/skyway-volunteering.php','']); locations.push(['Rio Cinema', 51.548137950000004, -0.07544775, 'org-artscrafts', '/organisations/artscrafts/rio-cinema.php','']); locations.push(['Create Festival', 51.545786515898925, -0.05541840000000686, 'org-music', '/organisations/music/create-festival.php','']); locations.push(['Circus Space', 51.52706675880183, -0.0828660000000081, 'org-artscrafts', '/organisations/artscrafts/circus-space.php','']); locations.push(['Rich Mix', 51.5241593, -0.0733135, 'org-artscrafts', '/organisations/artscrafts/rich-mix.php','']); locations.push(['Museum of London', 51.517676599999994, -0.0964342, 'org-museums', '/organisations/museums/museum-of-london.php','']); locations.push(['Mile End Park Stadium', 51.5165535, -0.0342383, 'org-leisure-centres', '/organisations/leisure-centres/mile-end-park-stadium.php','']); locations.push(['Shoreditch Park', 51.53197665, -0.085835, 'org-leisure-centres', '/organisations/leisure-centres/shoreditch-park.php','']); locations.push(['British Waterways London', 51.53446914992602, -0.05095520419922561, 'org-sports', '/organisations/sports/british-waterways-london.php','']); locations.push(['Waterworks Golf Centre', 51.56952095, -0.027273199999999997, 'org-sports', '/organisations/sports/waterworks-golf-centre.php','']); locations.push(['Lee Valley Ice Centre', 51.56952095, -0.027273199999999997, 'org-sports', '/organisations/sports/lee-valley-ice-centre.php','']); locations.push(['London Youth Rowing', 51.57322886201344, -0.059223175048828125, 'org-sports', '/organisations/sports/london-youth-rowing.php','']); locations.push(['VLC Centre ', 51.53513832911727, -0.0706787301635714, 'org-youth-clubs', '/organisations/youth-clubs/vlc-centre-.php','']); locations.push(['Apples and Pears Adventure Play', 51.5329605, -0.0755769, 'org-playgrounds', '/organisations/playgrounds/apples-and-pears-adventure-play.php','']); locations.push(['Evergreen Play Association', 51.543013349999995, -0.06562035, 'org-playgrounds', '/organisations/playgrounds/evergreen-play-association.php','']); locations.push(['KIDS Adventure Playground', 51.57000703188053, -0.05572705988769577, 'org-playgrounds', '/organisations/playgrounds/kids-adventure-playground.php','']); locations.push(['ATC Theatre', 51.52738438421911, -0.07596034667969098, 'org-artscrafts', '/organisations/artscrafts/atc-theatre.php','']); locations.push(['Homerton Youth Forum', 51.542219708857466, -0.049516499999981534, 'org-forumsparliaments', '/organisations/forumsparliaments/homerton-youth-forum.php','']); locations.push(['Shoreditch Youth Forum', 51.53531161998953, -0.07354980000002342, 'org-forumsparliaments', '/organisations/forumsparliaments/shoreditch-youth-forum.php','']); locations.push(['North East Youth Forum', 51.55143799361247, -0.05292020000001685, 'org-forumsparliaments', '/organisations/forumsparliaments/north-east-youth-forum.php','']); locations.push(['Stoke Newington Youth Forum', 51.553258620002424, -0.08200499999998101, 'org-forumsparliaments', '/organisations/forumsparliaments/stoke-newington-youth-forum.php','']); locations.push(['Eastside Educational Trust', 51.52823680925529, -0.07630348205566406, 'org-initiative', '/organisations/initiative/eastside-educational-trust.php','']); locations.push(['WORLDbytes', 51.556920850000004, -0.0472179, 'org-initiative', '/organisations/initiative/worldbytes.php','']); locations.push(['1-2-3-4 Shoreditch Now Festival', 51.542491607784434, -0.11229917690430469, 'org-music', '/organisations/music/1-2-3-4-shoreditch-now-festival.php','']); locations.push(['Hackney City Farm', 51.5312462, -0.0662667, 'org-other', '/organisations/other/hackney-city-farm.php','']); locations.push(['Rathbone', 51.54835645, -0.06149725000000217, 'org-colleges', '/organisations/colleges/rathbone.php','']); locations.push(['British Gospel Arts', 51.5899845, -0.0234686, 'org-artscrafts', '/organisations/artscrafts/british-gospel-arts.php','']); locations.push(['Sev Necati Training', 51.562062279047986, -0.07362299999999777, 'org-workshops', '/organisations/workshops/sev-necati-training.php','']); locations.push(['CHYPS Plus', 51.5510649, -0.0515011, 'org-other', '/organisations/other/chyps-plus.php','']); locations.push(['The Building Exploratory', 51.536223, -0.0778227, 'org-workshops', '/organisations/workshops/the-building-exploratory.php','']); locations.push(['Hackney Council for Voluntary Service', 51.54684260000002, -0.07193904947510488, 'org-volunteering', '/organisations/volunteering/hackney-council-for-voluntary-service.php','']); locations.push(['The Golden Company', 51.53750232273988, -0.06342906616211286, 'org-other', '/organisations/other/the-golden-company.php','']); locations.push(['Inspire Magazine Design ', 51.53697102206922, -0.0744875037353454, 'org-artscrafts', '/organisations/artscrafts/inspire-magazine-design-.php','']); locations.push(['Kinetika', 51.51971611579458, -0.0677880809509368, 'org-artscrafts', '/organisations/artscrafts/kinetika.php','']); locations.push(['RCC Youth Club', 51.5372524164886, -0.06336123865356313, 'org-youth-clubs', '/organisations/youth-clubs/rcc-youth-club.php','']); locations.push(['Whats Up Information', 51.5476447, -0.0601675, 'org-other', '/organisations/other/whats-up-information.php','']); locations.push(['MTR OELTV', 51.5256219, -0.0811391, 'org-other', '/organisations/other/mtr-oeltv.php','']); locations.push(['Salvation Army', 51.55424239999999, -0.05434532275390591, 'org-volunteering', '/organisations/volunteering/salvation-army.php','']); locations.push(['Cycling Club Hackney ', 51.545218108869165, -0.05733499999999392, 'org-sports', '/organisations/sports/cycling-club-hackney-.php','']); locations.push(['Future Leaders at the City Academy Hackney', 51.54922840888483, -0.0472248500000072, 'org-forumsparliaments', '/organisations/forumsparliaments/future-leaders-at-the-city-academy-hackney.php','']); locations.push(['Pembury Learning Centre', 51.547901483213245, -0.06843042645874098, 'org-other', '/organisations/other/pembury-learning-centre.php','']); locations.push(['SPACE', 51.54756530887833, -0.054849450000014066, 'org-artscrafts', '/organisations/artscrafts/space.php','']); locations.push(['HITZ Rugby', 51.545786515898925, -0.05541840000000686, 'org-sports', '/organisations/sports/hitz-rugby.php','']); locations.push(['The Huddleston Centre', 51.55618425399653, -0.058307064294431665, 'org-youth-clubs', '/organisations/youth-clubs/the-huddleston-centre.php','']); locations.push(['Tobacco Control Youth Advocacy Group', 51.53431270882661, -0.07882099999999559, 'org-initiative', '/organisations/initiative/tobacco-control-youth-advocacy-group.php','']); locations.push(['Point Blank Music College', 51.53608894742612, -0.08580941721197632, 'org-colleges', '/organisations/colleges/point-blank-music-college.php','']); locations.push(['ActionDog Ltd', 51.5476447, -0.0601675, 'org-workshops', '/organisations/workshops/actiondog-ltd.php','']); locations.push(['ReachOut!', 51.54932598093718, -0.06312865875244489, 'org-other', '/organisations/other/reachout.php','']); locations.push(['MyPlace', 51.54367012544205, -0.05536089416500545, 'org-initiative', '/organisations/initiative/myplace.php','']); locations.push(['Tolerance in Diversity', 51.50925645873243, -0.028348650000014075, 'org-volunteering', '/organisations/volunteering/tolerance-in-diversity.php','']); locations.push(['Hackney Shed', 51.558434658924206, -0.060041799999994705, 'org-artscrafts', '/organisations/artscrafts/hackney-shed.php','']); locations.push(['deep:black', 51.5476447, -0.0601675, 'org-initiative', '/organisations/initiative/deepblack.php','']); locations.push(['Street League', 51.54976975457408, -0.029583212866211017, 'org-sports', '/organisations/sports/street-league.php','']); locations.push(['The Drawing Room', 51.53547380883115, -0.07179495000001257, 'org-artscrafts', '/organisations/artscrafts/the-drawing-room.php','']); locations.push(['moving east', 51.55333660890087, -0.07920034999998826, 'org-sports', '/organisations/sports/moving-east.php','']); locations.push(['Pump Aid', 51.5028010587073, -0.10037155000000242, 'org-initiative', '/organisations/initiative/pump-aid.php','']); locations.push(['Contrast Magazine', 51.52946870880774, -0.0888833, 'org-other', '/organisations/other/contrast-magazine.php','']); locations.push(['Concorde Centre', 51.55127359230047, -0.032119153442382586, 'org-youth-clubs', '/organisations/youth-clubs/concorde-centre.php','']); locations.push(['Off Centre', 51.54428200930669, -0.05675187976066809, 'org-initiative', '/organisations/initiative/off-centre.php','']); locations.push(['H-Town-Saints', 51.55114450889228, -0.05141295000000934, 'org-youth-clubs', '/organisations/youth-clubs/h-town-saints.php','']); locations.push(['Shoreditch Spa', 51.53129039950152, -0.08314866586913938, 'org-initiative', '/organisations/initiative/shoreditch-spa.php','']); locations.push(['Guinness Trust Youth Centre', 51.567509961700296, -0.07345980688478448, 'org-youth-clubs', '/organisations/youth-clubs/guinness-trust-youth-centre.php','']); locations.push(['Teen Caribbean', 51.5476447, -0.0601675, 'org-other', '/organisations/other/teen-caribbean.php','']); locations.push(['Hospital and Prison Action Network', 51.5469628045484, -0.07196050714720403, 'org-volunteering', '/organisations/volunteering/hospital-and-prison-action-network.php','']); locations.push(['Lea Valley Football Club', 51.5776635589993, -0.03703890000000376, 'org-sports', '/organisations/sports/lea-valley-football-club.php','']); locations.push(['CSV', 51.55072965889412, -0.052617750000014674, 'org-volunteering', '/organisations/volunteering/csv.php','']); locations.push(['Anna Fiorentini Theatre and Film School', 51.53558702916361, -0.1063230000000015, 'org-artscrafts', '/organisations/artscrafts/anna-fiorentini-theatre-and-film-school.php','']); locations.push(['VIP’s in Transition', 51.492559658667396, -0.1428227500000001, 'org-initiative', '/organisations/initiative/vips-in-transition.php','']); locations.push(['Other', 51.545786515898925, -0.05541840000000686, 'org-other', '/organisations/other/other.php','']); locations.push(['Genesis Youth Projects', 51.57228640897483, -0.09025230000000217, 'org-other', '/organisations/other/genesis-youth-projects.php','']); locations.push(['London Gypsy and Traveller Unit', 51.537949158844285, -0.05747195000001426, 'org-youth-clubs', '/organisations/youth-clubs/london-gypsy-and-traveller-unit.php','']); locations.push(['Lubavitch Foundation', 51.57252235897923, -0.07427419999999074, 'org-youth-clubs', '/organisations/youth-clubs/lubavitch-foundation.php','']); locations.push(['The Twist Partnership', 51.522447808780356, -0.0829906000000058, 'org-volunteering', '/organisations/volunteering/the-twist-partnership.php','']); locations.push(['Children\'s Scrap Project', 51.54871710888282, -0.04163534999999996, 'org-initiative', '/organisations/initiative/childrens-scrap-project.php','']); locations.push(['Clapton Park Skate Park', 51.553150231675175, -0.03600521318360084, 'org-sports', '/organisations/sports/clapton-park-skate-park.php','']); locations.push(['Stoke Newington Youth Forum 27/10', 51.5476447, -0.0601675, 'org-leisure-centres', '/organisations/leisure-centres/stoke-newington-youth-forum-2710.php','']); locations.push(['Rising Youth', 51.558091402711305, -0.07494689206542171, 'org-youth-clubs', '/organisations/youth-clubs/rising-youth.php','']); locations.push(['One Music', 51.54835655888487, -0.06149725000001549, 'org-initiative', '/organisations/initiative/one-music.php','']); locations.push(['Here to Help Programme', 51.5476447, -0.0601675, 'org-initiative', '/organisations/initiative/here-to-help-programme.php','']); locations.push(['Access to Music', 51.53078490881286, -0.009058800000008027, 'org-colleges', '/organisations/colleges/access-to-music.php','']); locations.push(['Come Correct Condom Distribution Scheme', 51.545786515898925, -0.05541840000000775, 'org-initiative', '/organisations/initiative/come-correct-condom-distribution-scheme.php','']); locations.push(['Homerton Rangers FC', 51.5495164587534, -0.032295873046872536, 'org-sports', '/organisations/sports/homerton-rangers-fc.php','']); locations.push(['Recreativo Football Club', 51.56005217905561, -0.09164539999999999, 'org-sports', '/organisations/sports/recreativo-football-club.php','']); locations.push(['Phoenix FC', 51.53337757917508, -0.06989609999999535, 'org-sports', '/organisations/sports/phoenix-fc.php','']); locations.push(['Hackney Sparrows Wheelchair Basketball', 51.530295708810954, -0.07839999999999403, 'org-sports', '/organisations/sports/hackney-sparrows-wheelchair-basketball.php','']); locations.push(['Hackney Goalball', 51.551143858895756, -0.05288269999999429, 'org-sports', '/organisations/sports/hackney-goalball.php','']); locations.push(['Beeraahaar Sweet Combination', 51.57238890897525, -0.08073395000000039, 'org-artscrafts', '/organisations/artscrafts/beeraahaar-sweet-combination.php','']); locations.push(['African Arts Project', 51.55254340889776, -0.08060709999999638, 'org-artscrafts', '/organisations/artscrafts/african-arts-project.php','']); locations.push(['Reach Out FC', 51.55234065890041, -0.0715572999999936, 'org-sports', '/organisations/sports/reach-out-fc.php','']); locations.push(['Full Frequency', 51.53095315881698, -0.07169150000000623, 'org-music', '/organisations/music/full-frequency.php','']); locations.push(['Huddleston Centre Saturday Night Youth Club', 51.55722485891949, -0.05714834999999807, 'org-youth-clubs', '/organisations/youth-clubs/huddleston-centre-saturday-night-youth-club.php','']); locations.push(['Stomp Studios', 51.53792617915461, -0.05794829999990725, 'org-music', '/organisations/music/stomp-studios.php','']); locations.push(['Newington Youth Dance', 51.56013155893084, -0.08621980000000473, 'org-artscrafts', '/organisations/artscrafts/newington-youth-dance.php','']); locations.push(['Mimbre Acrobatics & Streetdance Classes ', 51.552014174864404, -0.0738509716735658, 'org-workshops', '/organisations/workshops/mimbre-acrobatics-and-streetdance-classes-.php','']); locations.push(['StrangeWorks', 51.55770775892138, -0.07274574999998507, 'org-artscrafts', '/organisations/artscrafts/strangeworks.php','']); locations.push(['YoungDads.TV', 51.52515940879096, -0.08380600000000626, 'org-artscrafts', '/organisations/artscrafts/youngdadstv.php','']); locations.push(['Open The Gate', 51.558119508919525, -0.07444454999999683, 'org-other', '/organisations/other/open-the-gate.php','']); locations.push(['St Marys Tennants and Residents Association', 51.5333025088227, -0.07038639999999541, 'org-other', '/organisations/other/st-marys-tennants-and-residents-association.php','']); locations.push(['Clapton Rangers FC', 51.5547819089065, -0.03977579999999703, 'org-sports', '/organisations/sports/clapton-rangers-fc.php','']); locations.push(['Young Hackney Stoke Newington YPC', 51.55325870890056, -0.08200499999998101, 'org-youth-clubs', '/organisations/youth-clubs/young-hackney-stoke-newington-ypc.php','']); locations.push(['YEP', 51.54391170886408, -0.05507309999999377, 'org-initiative', '/organisations/initiative/yep.php','']); locations.push(['Air Training Corps', 51.561060508931, -0.08348339999999288, 'org-other', '/organisations/other/air-training-corps.php','']); locations.push(['St John Ambulance', 51.556095382588495, -0.053609404785162074, 'org-initiative', '/organisations/initiative/st-john-ambulance.php','']); locations.push(['Abney Park Cemetery Trust', 51.56490002903313, -0.07809999999999206, 'org-volunteering', '/organisations/volunteering/abney-park-cemetery-trust.php','']); locations.push(['New International Company of Live Arts (NICOLA)', 51.494547708671696, -0.19657909999999834, 'org-other', '/organisations/other/new-international-company-of-live-arts-nicola.php','']); locations.push(['Diverse Associates Ltd', 51.548680708882685, 0.02349749999998707, 'org-artscrafts', '/organisations/artscrafts/diverse-associates-ltd.php','']); locations.push(['City Dogs', 51.5476447, -0.0601675, 'org-other', '/organisations/other/city-dogs.php','']); locations.push(['North East Gymnastics Club', 51.55308200889988, -0.08336479999999202, 'org-sports', '/organisations/sports/north-east-gymnastics-club.php','']); locations.push(['vinvolved East London', 51.534043758829036, -0.12197520000000628, 'org-volunteering', '/organisations/volunteering/vinvolved-east-london.php','']); locations.push(['Street Chance Cricket', 51.562062279047986, -0.0736230000000071, 'org-sports', '/organisations/sports/street-chance-cricket.php','']); locations.push(['Victoria Park Cricket Club', 51.54081218905662, -0.03733653686523786, 'org-sports', '/organisations/sports/victoria-park-cricket-club.php','']); locations.push(['White Heat Basketball', 51.545786515898925, -0.05541840000000686, 'org-sports', '/organisations/sports/white-heat-basketball.php','']); locations.push(['Street Level', 51.53053400881192, -0.08362349999999408, 'org-youth-clubs', '/organisations/youth-clubs/street-level.php','']); locations.push(['Central Africa\'s Rights & AIDS (CARA) Society', 51.547103858879986, -0.0752226500000086, 'org-other', '/organisations/other/central-africas-rights-and-aids-cara-society.php','']); locations.push(['The Hackney Society', 51.552738708898524, -0.04991760000000456, 'org-volunteering', '/organisations/volunteering/the-hackney-society.php','']); locations.push(['Starz Academy', 51.548161858884114, -0.05010295000001275, 'org-other', '/organisations/other/starz-academy.php','']); locations.push(['St Matthias Club', 51.5476447, -0.0601675, 'org-sports', '/organisations/sports/st-matthias-club.php','']); locations.push(['Impact Youth Academy', 51.52220960877945, -0.07852905000000021, 'org-workshops', '/organisations/workshops/impact-youth-academy.php','']); locations.push(['YH World', 51.54105327913763, -0.05882479999999912, 'org-workshops', '/organisations/workshops/yh-world.php','']); locations.push(['Family Mosaic Football Academy', 51.553768829081385, -0.062443000000009796, 'org-sports', '/organisations/sports/family-mosaic-football-academy.php','']); locations.push(['Scouts: 7th Stoke Newington', 51.56449560894443, -0.07991999999999999, 'org-other', '/organisations/other/scouts-7th-stoke-newington.php','']); locations.push(['Scouts: 12th Hackney (119th North London)', 51.57125225897426, -0.07001865000000329, 'org-other', '/organisations/other/scouts-12th-hackney-119th-north-london.php','']); locations.push(['Scouts: 14th Hackney', 51.547724150241926, -0.05493681691895347, 'org-other', '/organisations/other/scouts-14th-hackney.php','']); locations.push(['Scouts: 29th Hackney', 51.55793470891879, -0.05794720000000808, 'org-other', '/organisations/other/scouts-29th-hackney.php','']); locations.push(['Scouts: 63rd Hackney', 51.56800580895813, -0.05845600000000006, 'org-other', '/organisations/other/scouts-63rd-hackney.php','']); locations.push(['Scouts: 65th Hackney (St George\'s) ', 51.545874158875186, -0.07271489999999048, 'org-other', '/organisations/other/scouts-65th-hackney-st-georges--.php','']); locations.push(['Guides: 2nd Hoxton', 51.531740908816616, -0.08578935000000065, 'org-other', '/organisations/other/guides-2nd-hoxton.php','']); locations.push(['Guides: 8th Haggerston', 51.54098405885611, -0.06364999999999732, 'org-other', '/organisations/other/guides-8th-haggerston.php','']); locations.push(['Guides: 1st Hackney', 51.54662720887465, -0.055214550000006746, 'org-other', '/organisations/other/guides-1st-hackney.php','']); locations.push(['Guides: 4th Hackney', 51.54545627301779, -0.03021258972168317, 'org-other', '/organisations/other/guides-4th-hackney.php','']); locations.push(['Hackney Girls Basketball Club', 51.5507086088906, -0.05285299999999493, 'org-sports', '/organisations/sports/hackney-girls-basketball-club.php','']); locations.push(['Hackney Hawks Athletics Club', 51.530733108812676, -0.079304299999996, 'org-sports', '/organisations/sports/hackney-hawks-athletics-club.php','']); locations.push(['Halkevi Turkish & Kurdish Community Centre', 51.5393167588496, -0.08217579999999502, 'org-other', '/organisations/other/halkevi-turkish-and-kurdish-community-centre.php','']); locations.push(['High Hill Estate Youth Club', 51.565679708949034, -0.06135429999999831, 'org-youth-clubs', '/organisations/youth-clubs/high-hill-estate-youth-club.php','']); locations.push(['Hope F.C', 51.54194487142568, -0.05183588605958356, 'org-sports', '/organisations/sports/hope-fc.php','']); locations.push(['Rainbow Drama', 51.531733608816566, -0.08018269999999328, 'org-artscrafts', '/organisations/artscrafts/rainbow-drama.php','']); locations.push(['Kingsmead Community Sports', 51.549044079797376, -0.03269564252931012, 'org-sports', '/organisations/sports/kingsmead-community-sports.php','']); locations.push(['Leaside Trust', 51.57099110896979, -0.05665049999999283, 'org-youth-clubs', '/organisations/youth-clubs/leaside-trust.php','']); locations.push(['London Heathside Athletics', 51.56883696980712, -0.09943055361329112, 'org-sports', '/organisations/sports/london-heathside-athletics.php','']); locations.push(['Adrenalindance', 51.55114450889228, -0.05141295000000934, 'org-artscrafts', '/organisations/artscrafts/adrenalindance.php','']); locations.push(['Grand Union Youth Orchestra', 51.530756558816215, -0.07267555000001202, 'org-music', '/organisations/music/grand-union-youth-orchestra.php','']); locations.push(['St John-at-Hackney Music', 51.55114450889228, -0.05141295000000934, 'org-music', '/organisations/music/st-john-at-hackney-music.php','']); locations.push(['Capoeira ceara', 51.52734525880294, -0.05670114999998699, 'org-sports', '/organisations/sports/capoeira-ceara.php','']); locations.push(['2012 Ambassadors', 51.5476447, -0.0601675, 'org-council', '/organisations/council/2012-ambassadors.php','']); locations.push(['M2Music Record Label', 51.576259720018896, -0.09903369999994993, 'org-music', '/organisations/music/m2music-record-label.php','']); locations.push(['Hands Inc', 51.5476447, -0.0601675, 'org-other', '/organisations/other/hands-inc.php','']); locations.push(['East London Capoeira', 51.54745160887788, -0.041850499999995794, 'org-sports', '/organisations/sports/east-london-capoeira.php','']); locations.push(['The Capoeira Kids Project', 51.5297002588121, -0.08010060000003705, 'org-sports', '/organisations/sports/the-capoeira-kids-project.php','']); locations.push(['Makin’ It Happen ', 51.55195870889689, -0.06472159999998439, 'org-forumsparliaments', '/organisations/forumsparliaments/makin-it-happen-.php','']); locations.push(['The Gap Project', 51.52933117918983, -0.05590759999995498, 'org-initiative', '/organisations/initiative/the-gap-project.php','']); locations.push(['MDMD Arts and Sports', 51.55706620891542, -0.0619801999999936, 'org-music', '/organisations/music/mdmd-arts-and-sports.php','']); locations.push(['ALBION KIDS SHOW', 51.547666008878714, -0.028341199999999844, 'org-other', '/organisations/other/albion-kids-show.php','']); locations.push(['Fairbridge in London, Hackney Centre', 51.5476447, -0.060167500000034124, 'org-other', '/organisations/other/fairbridge-in-london-hackney-centre.php','']); locations.push(['Youth Skills Network', 51.54441427912512, -0.07350320000000465, 'org-workshops', '/organisations/workshops/youth-skills-network.php','']); locations.push(['Sutton House ', 51.548702558886234, -0.050385549999987234, 'org-museums', '/organisations/museums/sutton-house-.php','']); locations.push(['Hawksley Court Youth Club', 51.55916900892361, -0.08214590000000044, 'org-youth-clubs', '/organisations/youth-clubs/hawksley-court-youth-club.php','']); locations.push(['Pantonic Steel Orchestra', 51.5476447, -0.060167500000034124, 'org-music', '/organisations/music/pantonic-steel-orchestra.php','']); locations.push(['Salvation Army- OPEN HOUSE', 51.561134108931306, 0.007045999999945707, 'org-volunteering', '/organisations/volunteering/salvation-army--open-house.php','']); locations.push(['Shoreditch Youth Dance Company', 51.52423440878733, -0.07316645000003063, 'org-artscrafts', '/organisations/artscrafts/shoreditch-youth-dance-company.php','']); locations.push(['Pillars of Transformation', 51.541001708852725, -0.04961935000005724, 'org-artscrafts', '/organisations/artscrafts/pillars-of-transformation.php','']); locations.push(['104 Films', 53.37767121632142, -1.4653341000000637, 'org-workshops', '/organisations/workshops/104-films.php','']); locations.push(['Springboard Hackney/Bromley', 51.550813308891, -0.05203749999998308, 'org-colleges', '/organisations/colleges/springboard-hackneybromley.php','']); locations.push(['In The Picture', 51.53666745883725, -0.07930465000004006, 'org-workshops', '/organisations/workshops/in-the-picture.php','']); locations.push(['Grab The Mic', 51.5503849588928, -0.07519694999996318, 'org-music', '/organisations/music/grab-the-mic.php','']); locations.push(['Adrenalin Dance', 51.55048680889117, -0.05214660000001459, 'org-artscrafts', '/organisations/artscrafts/adrenalin-dance.php','']); locations.push(['Pip Productions', 51.54609815887404, -0.05207349947511375, 'org-artscrafts', '/organisations/artscrafts/pip-productions.php','']); locations.push(['STM\' Impack fc', 51.532721458821854, -0.08296760000007452, 'org-sports', '/organisations/sports/stm-impack-fc.php','']); locations.push(['Zuhtu Kurtulmus High School', 51.5476447, -0.060167500000034124, 'org-other', '/organisations/other/zuhtu-kurtulmus-high-school.php','']); locations.push(['Urban Youth', 51.53010921998581, -0.05431154999996579, 'org-youth-clubs', '/organisations/youth-clubs/urban-youth.php','']); locations.push(['Springfield Club for Young People', 51.568238070013145, -0.05438579999997728, 'org-youth-clubs', '/organisations/youth-clubs/springfield-club-for-young-people.php','']); locations.push(['Capital London Judo Club', 51.54016819725635, -0.04512705000001915, 'org-sports', '/organisations/sports/capital-london-judo-club.php','']); locations.push(['Bombo Productions', 51.55376010890393, -0.07714729999997871, 'org-other', '/organisations/other/bombo-productions.php','']); locations.push(['Alpha-ville', 51.537994019991444, -0.05873444999997446, 'org-artscrafts', '/organisations/artscrafts/alpha-ville.php','']); locations.push(['Shoreditch Youth FC', 51.52746371998391, -0.08295195000005151, 'org-youth-clubs', '/organisations/youth-clubs/shoreditch-youth-fc2.php','']); locations.push(['DV8 Training', 51.57876772002069, -0.03454824999994344, 'org-colleges', '/organisations/colleges/dv8-training.php','']); locations.push(['Tulin Dance School of Ballet', 51.54208411999441, -0.07170195000003332, 'org-youth-clubs', '/organisations/youth-clubs/tulin-dance-school-of-ballet.php','']); locations.push(['Hackney Bike workshop', 51.54194096999431, -0.05213060000005498, 'org-workshops', '/organisations/workshops/hackney-bike-workshop.php','']); locations.push(['Malaika Youth Project', 51.544295969995986, -0.048120899999958056, 'org-sports', '/organisations/sports/malaika-youth-project.php','']); locations.push(['The Mad Experience ', 51.5476447, -0.060167500000034124, 'org-workshops', '/organisations/workshops/the-mad-experience-.php','']); locations.push(['Eye With A View (EWAV)', 51.52944081998534, -0.07753590000004351, 'org-artscrafts', '/organisations/artscrafts/eye-with-a-view-ewav.php','']); locations.push(['The Kindest', 51.535360619989596, -0.06680970000002162, 'org-workshops', '/organisations/workshops/the-kindest.php','']); locations.push(['Capital Girls League', 51.606199195190825, -0.23424529999999777, 'org-sports', '/organisations/sports/capital-girls-league.php','']); locations.push(['Threads - Fashion Project', 51.5476447, -0.060167500000034124, 'org-artscrafts', '/organisations/artscrafts/threads---fashion-project.php','']); locations.push(['Ignite Creative', 51.52615144270344, -0.08000939999999446, 'org-workshops', '/organisations/workshops/ignite-creative.php','']); locations.push(['Academy of Sports East London', 51.537505019991116, -0.02945810000005622, 'org-sports', '/organisations/sports/academy-of-sports-east-london.php','']); locations.push(['Ushine Ishine ', 51.523343919980974, -0.1026796999999533, 'org-workshops', '/organisations/workshops/ushine-ishine-.php','']); locations.push(['Hackney BMX', 51.53163801998692, -0.0699846999999636, 'org-sports', '/organisations/sports/hackney-bmx.php','']); locations.push(['British Youth Council', 51.52830892345438, -0.08799685385747047, 'org-volunteering', '/organisations/volunteering/british-youth-council.php','']); locations.push(['Hackney Exchange Time Bank', 51.5476447, -0.060167500000034124, 'org-volunteering', '/organisations/volunteering/hackney-exchange-time-bank.php','']); locations.push(['Young Hackney Website', 51.54867543703071, -0.0513723999999911, 'org-artscrafts', '/organisations/artscrafts/young-hackney-website.php','']); locations.push(['Community Space Challenge', 51.5529659700022, -0.05114920000005441, 'org-volunteering', '/organisations/volunteering/community-space-challenge.php','']); locations.push(['Zinc Arts', 51.711022320115916, 0.24576170000000275, 'org-workshops', '/organisations/workshops/zinc-arts.php','']); locations.push(['Groundwork East London', 51.55059192000047, -0.05223069999999552, 'org-volunteering', '/organisations/volunteering/groundwork-east-london.php','']); locations.push(['Rainbow F.C', 51.53342176998821, -0.06651979999992363, 'org-sports', '/organisations/sports/rainbow-fc.php','']); locations.push(['Voice of Youth', 51.5476447, -0.060167500000034124, 'org-youth-clubs', '/organisations/youth-clubs/voice-of-youth.php','']); locations.push(['Hackney Young Peoples University (HYPU)', 51.55261759471924, -0.07175229999995736, 'org-volunteering', '/organisations/volunteering/hackney-young-peoples-university-hypu.php','']); locations.push(['Step by Step', 51.56842812001329, -0.05827254999996967, 'org-sports', '/organisations/sports/step-by-step.php','']); locations.push(['Hitz Rugby', 51.54122237389858, -0.060380042529232014, 'event-sport','/whatson/sport/342.php','@ HITZ Rugby
from 11th Jan 12 to 26th Dec 12']); locations.push(['Football Coaching', 51.55562448087735, -0.11325921552736418, 'event-sport','/whatson/sport/445.php','@ Blue Hut (Skyway)
from 11th Jan 12 to 26th Sep 12']); locations.push(['Skyway football session', 51.53126491998665, -0.08268450000002758, 'event-sport','/whatson/sport/473.php','@ SkyWay Sports Programme
from 11th Jan 12 to 28th Dec 12']); locations.push(['Hitz Rugby', 51.53360491350803, -0.06729144714358881, 'event-sport','/whatson/sport/578.php','@ HITZ Rugby
from 13th Jan 12 to 21st Dec 12']); locations.push(['Hitz Rugby', 51.553768829081385, -0.062443000000030224, 'event-sport','/whatson/sport/659.php','@ HITZ Rugby
from 9th Jan 12 to 17th Dec 12']); locations.push(['Street League Football Training', 51.547686208878815, -0.034369200000014644, 'event-sport','/whatson/sport/909.php','@ Street League - changes lives through football
from 17th Jan 12 to 19th Feb 13']); locations.push(['St Matthias Club ', 51.5476447, -0.060167500000034124, 'event-youth','/whatson/youth/928.php','@ St Matthias Club
from 6th Jan 12 to 30th Mar 12']); locations.push(['Concorde Youth Club', 51.55193198028225, -0.033464699999967706, 'event-youth','/whatson/youth/1019.php','@ Concorde Centre
from 24th Jan 12 to 25th Dec 12']); locations.push(['Concorde Youth Club', 51.55193198028225, -0.033464699999967706, 'event-youth','/whatson/youth/1021.php','@ Concorde Centre
from 25th Jan 12 to 19th Dec 12']); locations.push(['Disability Athletics', 51.51881987923446, -0.03285809999999856, 'event-sport','/whatson/sport/1108.php','@ Hackney Youth Offer
from 11th Jan 12 to 19th Dec 12']); locations.push(['Young Hackney Stoke Newington', 51.55325870890056, -0.08200499999998101, 'event-general','/whatson/general/1138.php','@ Young Hackney Stoke Newington YPC
from 24th Jan 12 to 25th Dec 12']); locations.push(['Young Hackney Stoke Newington', 51.55325870890056, -0.08200499999998101, 'event-general','/whatson/general/1139.php','@ Young Hackney Stoke Newington YPC
from 26th Jan 12 to 20th Dec 12']); locations.push(['Young Hackney Stoke Newington', 51.55325870890056, -0.08200499999998101, 'event-general','/whatson/general/1140.php','@ Young Hackney Stoke Newington YPC
from 27th Jan 12 to 21st Dec 12']); locations.push(['Young Hackney Stoke Newington', 51.553258620002424, -0.08200499999998101, 'event-general','/whatson/general/1452.php','@ Young Hackney Stoke Newington YPC
from 25th Jan 12 to 19th Dec 12']); locations.push(['Street League', 51.5476447, -0.060167500000034124, 'event-sport','/whatson/sport/1525.php','@ Street League
from 12th Jan 12 to 6th Sep 12']); locations.push(['Springfield Club for Young People', 51.56858955834191, -0.05476016662601069, 'event-general','/whatson/general/1664.php','@ Springfield Club for Young People
from 16th Jan 12 to 26th Mar 12']); locations.push(['Springfield Club for Young People', 51.56866958388539, -0.05480308197024897, 'event-general','/whatson/general/1665.php','@ Springfield Club for Young People
from 10th Jan 12 to 27th Mar 12']); locations.push(['Springfield Club for Young People', 51.568509532657494, -0.05476016662601069, 'event-general','/whatson/general/1666.php','@ Springfield Club for Young People
from 11th Jan 12 to 28th Mar 12']); locations.push(['Springfield Club for Young People', 51.56858955834186, -0.05493182800296381, 'event-general','/whatson/general/1667.php','@ Springfield Club for Young People
from 12th Jan 12 to 26th Mar 12']); locations.push(['Springfield Club for Young People', 51.56872293416955, -0.054674335937534124, 'event-general','/whatson/general/1668.php','@ Springfield Club for Young People
from 13th Jan 12 to 21st Dec 12']); locations.push(['Springfield Club for Young People', 51.56872293416958, -0.05476016662601069, 'event-general','/whatson/general/1669.php','@ Springfield Club for Young People
from 7th Jan 12 to 31st Mar 12']); locations.push(['High Hill Youth Club', 51.56875252001351, -0.05389100000002145, 'event-general','/whatson/general/1670.php','@ High Hill Estate Youth Club
from 10th Jan 12 to 27th Mar 12']); locations.push(['Northwold Estate Youth Club', 51.56567962001131, -0.061354299999948125, 'event-general','/whatson/general/1672.php','@ Other
from 16th Jan 12 to 26th Mar 12']); locations.push(['Northwold Estate Youth Club', 51.56567962001131, -0.061354299999948125, 'event-general','/whatson/general/1673.php','@ Other
from 11th Jan 12 to 28th Mar 12']); locations.push(['Northwold Estate Youth Club', 51.56567962001131, -0.061354299999948125, 'event-general','/whatson/general/1674.php','@ Other
from 13th Jan 12 to 30th Mar 12']); locations.push(['Hackney BMX club sessions', 51.53254790170516, -0.06562580790409811, 'event-sport','/whatson/sport/1684.php','@ Hackney BMX
from 8th Jan 12 to 29th Mar 15']); locations.push(['Arsenal Kickz football', 51.559215020006654, -0.0838607000000593, 'event-sport','/whatson/sport/1687.php','@ Young Hackney Stoke Newington YPC
from 10th Jan 12 to 27th Mar 12']); locations.push(['Threads fashion project', 51.549513119999716, -0.05674774999999954, 'event-arts','/whatson/arts/1688.php','@ Threads - Fashion Project
from 10th Jan 12 to 26th Mar 12']); locations.push(['Leyton Kickz football training', 51.551514221793006, -0.05669135711673334, 'event-sport','/whatson/sport/1691.php','@ Pembury Estate Youth Club
from 12th Jan 12 to 22nd Mar 12']); locations.push(['Arts & Crafts for Girls Age 11 - 14', 51.55262259393346, -0.0716492000000244, 'event-youth','/whatson/youth/1702.php','@ ReachOut!
Tuesday, 8th January 2013']); locations.push(['Free Y7 Football Training', 51.55262259393346, -0.0716492000000244, 'event-sport','/whatson/sport/1703.php','@ ReachOut!
from 13th Jan 12 to 29th Jun 12']); locations.push(['v24: Twentyfour', 51.52811771998439, -0.0873625000000402, 'event-youth','/whatson/youth/1707.php','@ Other
from 9th Jan 12 to 12th Jun 12']); locations.push(['Support for young parents', 51.5687762843914, -0.07523078582767084, 'event-general','/whatson/general/1741.php','@ Other
from 16th Jan 12 to 19th Mar 12']); locations.push(['Support for young parents', 51.5599371162419, -0.06860072803340245, 'event-general','/whatson/general/1742.php','@ Other
from 10th Jan 12 to 27th Mar 12']); locations.push(['Support for young parents', 51.544362020054564, -0.04207868240359858, 'event-general','/whatson/general/1743.php','@ Other
from 11th Jan 12 to 28th Mar 12']); locations.push(['Support for young parents', 51.55595567000434, -0.05139380000002802, 'event-general','/whatson/general/1744.php','@ Other
from 12th Jan 12 to 20th Dec 12']); locations.push(['Free football sessions', 51.5476447, -0.060167500000034124, 'event-sport','/whatson/sport/1746.php','@ Other
from 12th Jan 12 to 29th Mar 12']); locations.push(['Free football sessions', 51.5476447, -0.060167500000034124, 'event-sport','/whatson/sport/1747.php','@ Other
from 14th Jan 12 to 31st Mar 12']); locations.push(['Shoreditch FC', 51.53540978248359, -0.08271132380366453, 'event-sport','/whatson/sport/1801.php','@ Shoreditch Youth F.C.
from 11th Jan 12 to 31st Oct 12']); locations.push(['Creative E-motion', 51.56319912000953, -0.09457390000000032, 'event-arts','/whatson/arts/1821.php','@ Other
from 10th Jan 12 to 27th Mar 12']); locations.push(['Non-contact Boxing', 51.54838751999892, -0.06793089999996482, 'event-sport','/whatson/sport/1846.php','@ St Matthias Club
from 16th Jan 12 to 7th May 12']); locations.push(['Hoxton Hall Youth Theatre Company ', 51.53174851998702, -0.07980940000004466, 'event-general','/whatson/general/1883.php','@ Hoxton Hall
from 21st Feb 12 to 28th Feb 12']); locations.push(['Young Volunteer Tour Guides', 51.53155561998684, -0.07627070000000913, 'event-youth','/whatson/youth/1909.php','@ Geffrye Museum
from 29th Jan 12 to 12th Apr 12']); locations.push(['Hipnotic Drama', 51.53174851998702, -0.07980940000004466, 'event-youth','/whatson/youth/2023.php','@ Hoxton Hall
from 9th Jan 12 to 12th Mar 12']); locations.push(['Hipnotic Music', 51.53174851998702, -0.07980940000004466, 'event-music','/whatson/music/2024.php','@ Hoxton Hall
from 9th Jan 12 to 12th Mar 12']); locations.push(['Rose Bowl Workshops', 51.54589231999712, -0.0885752000000366, 'event-general','/whatson/general/2025.php','@ Other
from 10th Jan 12 to 3rd Apr 12']); locations.push(['Rose Bowl workshops', 51.54589231999712, -0.0885752000000366, 'event-general','/whatson/general/2032.php','@ Other
from 11th Jan 12 to 4th Apr 12']); locations.push(['Rose Bowl Workshops', 51.54589231999712, -0.0885752000000366, 'event-general','/whatson/general/2033.php','@ Other
from 12th Jan 12 to 5th Apr 12']); locations.push(['Rose Bowl Workshops', 51.54589231999712, -0.0885752000000366, 'event-general','/whatson/general/2034.php','@ Other
from 7th Jan 12 to 7th Apr 12']); locations.push(['Art workshop for young Somalis', 51.55179531546484, -0.06464370000003328, 'event-arts','/whatson/arts/2098.php','@ Other
from 16th Jan 12 to 13th Feb 12']); locations.push(['Comedy Workshops', 51.52994601998571, -0.08913959999995313, 'event-general','/whatson/general/2099.php','@ Other
from 21st Jan 12 to 25th Feb 12']); locations.push(['Off Centre Parent and Baby Group ', 51.54436751999605, -0.05647699999997258, 'event-general','/whatson/general/2100.php','@ Off Centre
from 13th Jan 12 to 29th Jun 12']); locations.push(['Throw yourself into Judo', 51.53894494993764, -0.04210204655760208, 'event-sport','/whatson/sport/2108.php','@ Capital London Judo Club
from 16th Jan 12 to 30th Mar 12']); locations.push(['Strait Talk Half Term Project', 51.540091512859334, -0.07031697891238764, 'event-youth','/whatson/youth/2145.php','@ Youth Skills Network
from 13th Feb 12 to 16th Feb 12']); locations.push(['Camyutlovfest 2012', 51.52275529259536, -0.06829135612792969, 'event-entertainment','/whatson/entertainment/2148.php','@ Other
Saturday, 11th February 2012']); locations.push(['Dance: contemporary/modern/jazz', 51.55947722000687, -0.08700129999999717, 'event-youth','/whatson/youth/2157.php','@ Other
from 27th Jan 12 to 20th Jul 12']); locations.push(['Spots V Stripes Community Game Events!', 51.5476447, -0.060167500000034124, 'event-general','/whatson/general/2167.php','@ Groundwork East London
Saturday, 11th February 2012']); locations.push(['Spots V Stripes Community Game Events!', 51.548776979101106, -0.04184250000002976, 'event-general','/whatson/general/2168.php','@ Groundwork East London
Monday, 13th February 2012']); locations.push(['Spots V Stripes Community Game Events!', 51.55290457000215, -0.04674599999998463, 'event-general','/whatson/general/2169.php','@ Groundwork East London
Saturday, 18th February 2012']); locations.push(['Spots V Stripes Community Game Events!', 51.55415097908101, -0.035141000000066924, 'event-sport','/whatson/sport/2170.php','@ Groundwork East London
Saturday, 25th February 2012']); locations.push(['DYH 2012: Dance or Diva?', 51.55391962000287, -0.050436350000040875, 'event-arts','/whatson/arts/2185.php','@ Anna Fiorentini Theatre and Film School
from 4th Feb 12 to 3rd Mar 12']); locations.push(['DYH 2012: Music and drama from Turkey', 51.54811861999872, -0.07068570000001273, 'event-arts','/whatson/arts/2186.php','@ Alevi Cultural Centre
from 26th Jan 12 to 23rd Feb 12']); locations.push(['DYH 2012: Music and Drama from Turkey', 51.54811861999872, -0.07068570000001273, 'event-arts','/whatson/arts/2187.php','@ Alevi Cultural Centre
from 7th Feb 12 to 28th Feb 12']); locations.push(['The Big Top comes to Dalston', 51.54679776999777, -0.07469260000004851, 'event-arts','/whatson/arts/2188.php','@ Arcola Theatre
from 4th Jul 12 to 7th Jul 12']); locations.push(['DYH 2012: Get the Greedy', 51.54682611999779, -0.07488924999995561, 'event-arts','/whatson/arts/2189.php','@ Immediate Theatre
from 16th Feb 12 to 17th Feb 12']); locations.push(['DYH 2012: Our Space Fashion', 51.52386671998137, -0.07461415000000215, 'event-arts','/whatson/arts/2190.php','@ Other
from 14th Feb 12 to 17th Feb 12']); locations.push(['DYH 2012: Design and Shine', 51.54128661999381, -0.05519070000002557, 'event-arts','/whatson/arts/2191.php','@ Other
from 4th Feb 12 to 11th Feb 12']); locations.push(['DYH 2012: Docscreen Festival', 51.54432288575877, -0.05541690098881169, 'event-arts','/whatson/arts/2193.php','@ Other
Thursday, 16th February 2012']); locations.push(['DYH 2012: One-day Video Challenge', 51.53846101999179, -0.05735600000002705, 'event-arts','/whatson/arts/2194.php','@ SPACE
Wednesday, 15th February 2012']); locations.push(['DYH 2012: Shoot your own Music Video', 51.523787719981314, -0.0780334999999468, 'event-arts','/whatson/arts/2195.php','@ Other
from 13th Feb 12 to 18th Feb 12']); locations.push(['DYH 2012: Discover Film', 51.54979926999992, -0.07551115000001118, 'event-arts','/whatson/arts/2196.php','@ Rio Cinema
Saturday, 25th February 2012']); for (var i = 0; i < locations.length; i++) { var location = locations[i]; var type=location[3]; var myLatLng = new google.maps.LatLng(location[1], location[2]); var marker = new google.maps.Marker({ position: myLatLng, map: map, icon: icons[location[3]], shape: shape, title: location[0] }); marker.setVisible(true); markers.push(marker); markerGroups[type].push(marker); var infoWindow = new google.maps.InfoWindow( { content: ''+location[0]+'
'+location[5]+'
click here for more info', size: new google.maps.Size(200,100) }); google.maps.event.addListener( marker, 'click', openInfoWindow(infoWindow, marker)); } } function openInfoWindow (infoWindow, marker) { return function() { // Close the last selected marker before opening this one. if (visibleInfoWindow) { visibleInfoWindow.close(); } infoWindow.open(map, marker); visibleInfoWindow = infoWindow; }; } function toggleGroup(type) { for (var i = 0; i < markerGroups[type].length; i++) { var marker = markerGroups[type][i]; if (marker.getVisible()) { marker.setVisible(false); } else { marker.setVisible(true); } } } function hideAll() { var inputlist = document.getElementsByTagName("input"); for (i = 0; i < inputlist.length; i++) { if ( inputlist[i].getAttribute("type") == 'checkbox' ) { inputlist[i].checked = false } } for (var type in markerGroups) { for (var i = 0; i < markerGroups[type].length; i++) { var marker = markerGroups[type][i]; marker.setVisible(false); } } } function showAll() { var inputlist = document.getElementsByTagName("input"); for (i = 0; i < inputlist.length; i++) { if ( inputlist[i].getAttribute("type") == 'checkbox' ) { inputlist[i].checked = true } } for (var type in markerGroups) { for (var i = 0; i < markerGroups[type].length; i++) { var marker = markerGroups[type][i]; marker.setVisible(true); } } } function getNearest(lat,lng){ getpost = "POST"; var http_request = false; if (window.XMLHttpRequest) { http_request = new XMLHttpRequest(); if (http_request.overrideMimeType) { http_request.overrideMimeType('text/xml'); } } else if (window.ActiveXObject) { try { http_request = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { http_request = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {} } } if (!http_request) { alert('Giving up :( Cannot create an XMLHTTP instance'); return false; } var proximityresults = document.getElementById('proximityresults'); http_request.onreadystatechange = function() { if (http_request.readyState == 4 && http_request.status == 200) { // got response proximityresults.innerHTML=http_request.responseText; } else { proximityresults.innerHTML='populating list...'; } }; http_request.open(getpost, "/include/proximity-results.php?lat="+lat+"&lng="+lng, true); if(getpost == "POST") { http_request.send(''); } else { http_request.send(null); } }