<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"[ 
		<!ENTITY Tree "
		<path d='M 0 0 L 95 31 M 0 0 L 59 -81 M 0 0 L -59 -81 M 0 0 L -95 31 M 0 0 L 0 100' 
		style='stroke:red; stroke-width:50; fill:none' />
		">
		<!ENTITY TreeStyle "
		<text x='0' y='0' visibility='hidden' style='font-size:240;font-family:Arial;fill:black' >
		">
		<!ENTITY Site "
		<circle cx='0' cy='0' r='240' fill='none' stroke='aquamarine' stroke-width='100' />
		"> 
		]>
<html xmlns="http://www.w3.org/1999/xhtml" onload="Init(evt)">
  <head>
    <title>Parks; SVG inline in xhtml. </title>
    <style type="text/css">
<!--
-->
dataxml
{
width: 0px;
HEIGHT: 0px;
DISPLAY: none;
}
</style>
    <script type="text/ecmascript"><![CDATA[

var allItems;
var svgItem;
// var screenWidth;

function inittrans()
				 {
				 allItems = document.getElementById('all').transform.baseVal;
				 svgItem = document.getElementById('all').ownerSVGElement;
				// screenWidth=screen.width;
	
				 };
				  
function setCaption(res, arg)
   			 {
 	 			 var x = res.target;
				 x.setAttribute("opacity", "0.8");
			 	 document.getElementsByTagName("div").item(0).innerHTML=document.getElementById(arg).innerHTML;
	 
	   		 };
   
function x_onmouseover(evt) 
				 {
				 var x = evt.target;
				 x.setAttribute("opacity", "1.0");
			  var z = document.getElementById('drawing').getAttribute('viewBox');
				 var vb = new Array();
				 vb = z.split(' ');	
				 var newFontSize=parseInt(vb[2])/36;
				 x.parentNode.getElementsByTagName("text").item(0).setAttribute("font-size", newFontSize);
 	 			 x.parentNode.getElementsByTagName("text").item(0).setAttribute("visibility", "visible"); 
		 };

function x_onmouseout(evt)
 				 {
				 var x = evt.target;
				 x.setAttribute("opacity", "0.7");
	 			x.parentNode.getElementsByTagName("text").item(0).setAttribute("visibility", "hidden");
				 };
				 
function panLeft()
// pan commands, may be back to front in terms of direction of movement. 
				 {
				 var x = document.getElementById('drawing').createSVGTransform();
			  var z = document.getElementById('drawing').getAttribute('viewBox');
				 var vb = new Array();
				 vb = z.split(' ');	
 				 x.setTranslate(parseInt(vb[2])/4 *-1 ,0);
				 var ho = svgItem.suspendRedraw(1000);
  	 		 allItems.appendItem(x);
				 svgItem.unsuspendRedraw(ho); 
				 };
				 
function panRight()
				 {
				 var x = document.getElementById('drawing').createSVGTransform();
			  var z = document.getElementById('drawing').getAttribute('viewBox');
				 var vb = new Array();
				 vb = z.split(' ');	
 				 x.setTranslate(parseInt(vb[2])/4 ,0);
  			 var ho = svgItem.suspendRedraw(1000);
  	 		 allItems.appendItem(x);
				 svgItem.unsuspendRedraw(ho); 
				 };
				 
function panUp()
				 {
				 var x = document.getElementById('drawing').createSVGTransform();
			 var z = document.getElementById('drawing').getAttribute('viewBox');
				 var vb = new Array();
				 vb = z.split(' ');	
 				 x.setTranslate(0,parseInt(vb[3])/4 *-1);
	 			 var ho = svgItem.suspendRedraw(1000);
  	 		 allItems.appendItem(x);
				 svgItem.unsuspendRedraw(ho); 
				 };
				 
function panDown()
				 {
				 var x = document.getElementById('drawing').createSVGTransform();
				 var z = document.getElementById('drawing').getAttribute('viewBox');
				 var vb = new Array();
				 vb = z.split(' ');	
 				 x.setTranslate(0,parseInt(vb[3])/4 );
  			 var ho = svgItem.suspendRedraw(1000);
  	 		 allItems.appendItem(x);
				 svgItem.unsuspendRedraw(ho); 
				 };
				 
function Zoom()
				 {
				 var x = document.getElementById('drawing').getAttribute('viewBox');
			   var sc = 0.5;
					 var vb = new Array();
				 vb = x.split(' ');
				 vb[0] = (parseInt(vb[0]) + parseInt(vb[2])*(1-sc)/2);
			 	 vb[1] = (parseInt(vb[1]) + parseInt(vb[3])*(1-sc)/2);
				 vb[2] = (parseInt(vb[2]) * sc);
				 vb[3] = (parseInt(vb[3]) * sc);
	 			 x = vb[0] + ' ' +  vb[1] + ' ' + vb[2] + ' ' + vb[3];
				var z = document.getElementById('drawing').setAttribute('viewBox',x);
					 };
				 
	function Mooz()
	// zoom out command. 
				 {
				 var x = document.getElementById('drawing').getAttribute('viewBox');
				 //var sc could be replaced with other data passed into this as an arg.
				 var sc = 0.5;
				 var vb = new Array();
				 vb = x.split(' ');
				 vb[0] = (parseInt(vb[0]) - (parseInt(vb[2])/2)*((1/sc)-1));
			 	 vb[1] = (parseInt(vb[1]) - (parseInt(vb[3])/2)*((1/sc)-1));
				 vb[2] = (parseInt(vb[2]) / sc);
				 vb[3] = (parseInt(vb[3]) / sc);
				 x = vb[0] + ' ' +  vb[1] + ' ' + vb[2] + ' ' + vb[3];
				var z = document.getElementById('drawing').setAttribute('viewBox',x);
				 };
				 
	function reloadPage()
					 {
		//		refreshes and resets the page. This could be inline. 
					 document.location.reload();
					 };
	
   ]]></script>
  </head>
  <body onload="inittrans();">
    <h3>Locations of selected plane trees in Greater London</h3>
    <table summary="This is a test of xhtml of svg embedded inline in a web document." border="1">
      <tr>
        <td width="50%">
          <svg id="drawing" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="560px" height="560px" viewBox="515000 -193000 33000 30000">
            <title>SVG map of London. Selected sites and plane trees. </title>
            					<!-- The following section provides some placenames to give the user some references -->
						               
		<g id="all">
          			 <g transform="matrix(1,0,0,-1,0,0)">
                   <g transform="translate(531500,180750)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" style="font-size:320;font-family:Arial, Times New Roman;fill:gray">CITY</text>
                    </g>
                  </g>
                  <g transform="translate(526000,193500)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" style="font-size:320;font-family:Arial, Times New Roman;fill:gray">BARNET</text>
                    </g>
                  </g>
                  <g transform="translate(532500,165500)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" style="font-size:320;font-family:Arial, Times New Roman;fill:gray">CROYDON</text>
                    </g>
                  </g>
                  <g transform="translate(542000,184000)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" style="font-size:320;font-family:Arial, Times New Roman;fill:gray">BARKING</text>
                    </g>
                  </g>
                  <g transform="translate(515750,180500)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" style="font-size:320;font-family:Arial, Times New Roman;fill:gray">EALING</text>
                    </g>
                  </g>
                </g>
							<g onmousedown="setCaption(evt,'site32')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(517800,-180940)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Haven Green, W5</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site33')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(538567,-177941)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Royal Naval College / National Maritime Museum, SE10</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site34')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(537602,-176462)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Brookmill Park, SE4</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site36')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M518607 175978 L 518497 175986 L 518326 176011 L 518198 176075 L 518073 176132 L 518000 176180 L 517954 176180 L 517858 176158 L 517831 176164 L 517597 176244 L 517494 176286 L 517478 176310 L 517591 176393 L 517666 176446 L 517733 176530 L 517778 176648 L 517831 176744 L 517933 176879 L 517983 176967 L 518046 177059 L 518164 177228 L 518220 177307 L 518294 177393 L 518363 177486 L 518433 177559 L 518509 177634 L 518575 177672 L 518677 177712 L 518772 177759 L 518810 177650 L 518778 177626 L 518751 177591 L 518749 177573 L 518751 177557 L 518762 177538 L 518786 177530 L 518836 177503 L 518914 177462 L 518986 177443 L 519025 177414 L 519011 177347 L 518967 177251 L 518909 177142 L 518858 177038 L 518823 176957 L 518783 176804 L 518749 176637 L 518722 176557 L 518690 176465 L 518674 176401 L 518648 176259 L 518634 176158 L 518615 176083 L 518613 176049Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(518575,177400)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Kew Gardens, TW9</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site37')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(542130,-186400)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">City of London Cemetery, E12</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site40')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528360,-187350)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Pond Square, Highgate, N6</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site41')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530355,-180283)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Westminster Embankment Gardens, WC2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site42')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531488,-187140)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Finsbury Park, N4</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site43')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M 529256 179850 L 529180 179796 L 528997 179802 L 528602 179818 L 528522 179820 L 528535 179866 L 528674 179997 L 528823 180126 L 529017 180288 L 529089 180137 L 529153 179994 L 529251 179858 Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(529000,179900)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Green Park, SW1</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site44')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M 528296 179949 L 528283 179903 L 528027 179855 L 527725 179802 L 527554 179778  L 527406 179767 L 527102 179762 L 526812 179751 L 526804 179820 L 526804 179852 L 526898 180059 L 526909 180126 L 526941 180188 L 526965 180225 L 527017 180214 L 527062 180233 L 527078 180264 L 527091 180307 L 527075 180425 L 527067 180546 L 527051 180613 L 527017 180656 L 526970 180685 L 526911 180722 L 526917 180746 L 526933 180783 L 526943 180796 L 527022 180812 L 527148 180831 L 527249 180850 L 527433 180887 L 527626 180925 L 527642 180930 L 527685 180868 L 527722 180852 L 527764 180863 L 527847 180874 L 527901 180744 L 527967 180623 L 528017 180554 L 528065 180506 L 528180 180360 L 528278 180233 L 528318 180190 L 528336 180107 L 528326 180057 L 528320 180009 Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(527419,180430)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Hyde Park, W2</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site45')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M 526780 179698 L 526706 179688 L 526661 179680 L 526615 179680 L 526549 179674 L 526433 179664 L 526352 179666 L 526270 179658 L 526142 179688 L 526046 179709 L 525973 179730 L 525903 179741 L 525836 179957 L 525722 180256 L 525634 180533 L 525685 180554 L 525775 180557 L 525858 180567 L 525983 180583 L 526081 180599 L 526228 180613 L 526371 180653 L 526457 180682 L 526599 180722 L 526728 180754 L 526890 180783 L 526919 180796 L 526866 180764  L 526855 180725 L 526946 180664 L 527003 180632 L 527025 180605 L 527041 180573 L 527046 180470 L 527062 180352 L 527057 180286 L 527030 180246 L 527017 180244 L 526970 180254 L 526930 180238 L 526887 180161 L 526844 180011 L 526786 179885 L 526772 179831 L 526775 179772 L 526778 179722 Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(526371,180158)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Kensington Gardens, W2</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site47')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527275,-173170)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Wandsworth Common, SW18</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site48')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M527654 176737 L 527638 176793 L 527622 176860 L 527606 176916 L 527582 177002 L 527556 177098 L 527526 177178 L 527508 177250 L 527478 177354 L 527454 177421 L 527467 177445 L 527518 177458 L 527532 177445 L 527604 177456 L 527673 177474 L 527759 177496 L 527841 177514 L 527892 177528 L 527996 177549 L 528092 177568 L 528183 177587 L 528319 177621 L 528400 177640 L 528482 177659 L 528549 177680 L 528560 177613 L 528584 177450 L 528608 177317 L 528640 177108 L 528627 177100 L 528616 177074 L 528616 177050 L 528546 177007 L 528485 176972 L 528400 176921 L 528333 176889 L 528266 176857 L 528207 176833 L 528132 176801 L 528026 176775 L 527940 176748 L 527871 176732 L 527783 176721 L 527764 176718 L 527678 176713Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(528033,177158)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Battersea Park, SW11</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site49')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(517494,-173525)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Marble Hill Park, TW1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site50')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528599,-173230)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Orleans Gardens, TW1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site51')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529693,-181246)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Soho Square, W1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site52')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531514,-189465)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Ducketts Common, N8</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site55')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(539302,-182035)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Star Lane, E10</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site56')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(517943,-173714)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Thames Towpath, Richmond, TW10</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site57')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(533744,-192704)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Pymmes Park, N18</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site58')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530450,-177650)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Vauxhall Park, SW8</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site7')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(541503,-177826)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">The Village, SE7</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site10')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531165,-175880)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Brixton Road, SW9</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site12')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(517834,-173427)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Petersham Meadows., TW10</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site14')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(518169,-174006)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Terrace Gardens, TW10</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site17')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(526169,-179591)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Palace Gate, Kensington, W8</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site18')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529890,-182334)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Tavistock Square, WC1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site19')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530296,-180334)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Northumberland Ave, WC2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site20')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528973,-189581)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Muswell Hill, N10</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site21')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(533302,-192500)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Tanners End Lane, N18</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site22')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M 529855 180145 L 529901 180107 L 529927 180046 L 529946 179973 L 529898 179874 L 529893 179807 L 529890 179725 L 529693 179696 L 529559 179664 L 529398 179634 L 529286 179607 L 529262 179626 L 529193 179701 L 529201 179754 L 529217 179770 L 529350 179871 L 529522 179991 L 529698 180115 Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(529645,179893)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">St. James's Park, SW1</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site24')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M528698 182344 L 528554 182302 L 528318 182236 L 528198 182198 L 528081 182161 L 528049 182158 L 528022 182180 L 527877 182270 L 527834 182296 L 527783 182395 L 527756 182446 L 527720 182497 L 527500 182712 L 527422 182788 L 527379 182879 L 527374 182949 L 527374 182986 L 527390 183019 L 527371 183105 L 527409 183209 L 527457 183304 L 527517 183358 L 527581 183395 L 527696 183451 L 527778 183491 L 528009 183594 L 528244 183669 L 528318 183666 L 528414 183656 L 528494 183591 L 528509 183522 L 528509 183459 L 528541 183334 L 528666 182949 L 528688 182863 L 528698 182736 L 528704 182642 L 528706 182525 L 528709 182417 Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(528022,182986)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Regents Park, NW1</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site25')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M539658 177049 L 539500 176965 L 539336 176866 L 539214 176810 L 539009 176704 L 538930 176791 L 538783 176989 L 538751 177062 L 538704 177113 L 538645 177158 L 538607 177174 L 538586 177228 L 538578 177304 L 538570 177331 L 538535 177352 L 538486 177395 L 538475 177425 L 538483 177494 L 538494 177543 L 538438 177666 L 538557 177733 L 538712 177831 L 538741 177847 L 538807 177730 L 538860 177714 L 538930 177744 L 539078 177802 L 539153 177717 L 539180 177680 L 539204 177640 L 539238 177602 L 539320 177543 L 539368 177465 L 539497 177272 Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(539060,177335)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Greenwich Park, SE10</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site26')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527185,-190700)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">St Pancras and Islington Cemetery, N2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site27')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(540749,-189775)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Hermon Hill, E18</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site28')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(536283,-197126)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Brimsdown Avenue, EN3</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site29')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(537567,-176427)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Brookmill Road, SE4</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site30')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(519385,-178380)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Chiswick Roundabout, W4</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site31')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529543,-189262)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Priory Road, N8</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site59')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M528595 174332 L 528570 174392 L 528505 174492 L 528460 174543 L 528345 174633 L 528295 174698 L 528240 174773 L 528215 174863 L 528200 174953 L 528165 175043 L 528145 175114 L 528075 175088 L 527940 175078 L 527900 175053 L 527870 175114 L 527850 175189 L 527925 175194 L 528060 175214 L 528165 175209 L 528275 175219 L 528465 175219 L 528620 175229 L 528740 175224 L 528890 175229 L 529010 175319 L 529115 175384 L 529165 175429 L 529195 175454 L 529260 175419 L 529315 175364 L 529350 175304 L 529360 175249 L 529345 175189 L 529280 175124 L 529235 175078 L 529200 175003 L 529130 174873 L 529060 174743 L 528965 174558 L 528910 174487 L 528820 174482 L 528805 174447 L 528835 174372 L 528795 174352 L 528670 174347Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(528500,175000)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Clapham Common, SW4</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site60')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M535728 183299 L 535677 183334 L 535500 183414 L 535363 183491 L 535236 183559 L 535172 183599 L 535180 183642 L 535220 183685 L 535283 183720 L 535323 183722 L 535358 183709 L 535403 183688 L 535438 183664 L 535486 183650 L 535525 183634 L 535597 183642 L 535685 183661 L 535746 183701 L 535788 183744 L 535842 183772 L 535919 183831 L 535954 183855 L 535986 183893 L 536019 183933 L 536078 184033 L 536142 184150 L 536212 184272 L 536228 184331 L 536196 184350 L 536209 184374 L 536288 184473  L 536358 184538 L 536425 184599 L 536491 184688 L 536557 184629 L 536613 184573 L 536634 184567 L 536709 184530 L 536733 184509 L 536764 184435 L 536788 184355 L 536823 184283 L 536860 184193 L 536882 184158 L 536903 184105 L 536831 184057 L 536725 183970 L 536573 183842 L 536446 183741 L 536294 183629 L 536217 183551 L 536190 183533 L 536134 183525 L 536115 183522 L 536017 183470 L 535957 183433 L 535847 183360 L 535756 183320Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(536190,183870)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Victoria Park, E9</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site61')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530586,-190278)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Wood Green Common, N22</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site62')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(534483,-185688)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Hackney Downs, E5</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site63')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(526661,-170417)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Wandle Park, SW19</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site64')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527823,-164525)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Pound Street, SM5</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site65')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528688,-187137)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Waterlow Park, N8</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site66')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(537762,-170326)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Beckenham Place Park, BR3</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site67')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530326,-180115)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Berkeley Square, W1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site68')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530312,-180083)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Rowan Road, SW16</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site69')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530326,-180041)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Victoria Embankment, WC2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site70')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528427,-179818)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Hyde Park Corner, SW1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site71')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530310,-179744)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Clapton Common, E5</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site72')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530283,-180003)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Kennington Park, SE11</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site74')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(525525,-179585)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Kensington High Street, W8</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site75')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(524250,-178750)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">St. Paul's Open Space, W6</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site76')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527100,-187401)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Kenwood House Grounds, NW3</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site78')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(525830,-189690)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">St. Marylebone Cemetery, N2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site82')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527033,-180815)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Bayswater Road, W2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site83')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M533733 170771 L 533733 170803 L 533743 170859 L 533775 170905 L 533808 171004 L 533850 171102 L 533893 171222 L 533930 171329 L 533930 171372 L 533976 171407 L 533995 171407 L 534003 171361 L 534013 171335 L 534035 171310 L 534032 171281 L 534011 171241 L 534139 171201 L 534152 171241 L 534115 171260 L 534104 171308 L 534099 171353 L 534128 171383 L 534158 171393 L 534168 171428 L 534203 171425 L 534265 171399 L 534310 171372 L 534430 171310 L 534492 171265 L 534513 171276 L 534556 171260 L 534551 171246 L 534642 171169 L 534652 171185 L 534706 171142 L 534741 171092 L 534778 171033 L 534757 171020 L 534805 170964 L 534813 170929 L 534810 170875 L 534810 170846 L 534832 170835 L 534829 170774 L 534818 170707 L 534818 170675 L 534869 170651 L 534826 170630 L 534775 170593 L 534706 170558 L 534636 170499 L 534596 170475 L 534535 170422 L 534511 170414 L 534422 170430 L 534342 170440 L 534270 170475 L 534209 170512 L 534139 170552 L 534094 170577 L 534043 170611 L 534021 170611 L 533984 170627 L 533952 170643 L 533933 170686 L 533872 170726 L 533837 170745 L 533789 170761 L 533754 170774Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(534320,170925)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Crystal Palace Park, SE20</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site84')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(523478,-179850)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Shepherds Bush Green, W11</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site85')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(535035,-182860)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Museum Gardens, Bethnal Green, E2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site86')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(535102,-182910)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Victoria Park Square, E2</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site88')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(523480,-178600)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Butterwick, W6</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site93')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531648,-183623)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Islington Green, N1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site102')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(533519,-180744)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Trinity Square Gardens, EC3</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site103')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531395,-179190)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">St. George's Field, SE1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site104')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(524750,-179750)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Holland Park, W8</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site105')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(534642,-184270)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">London Fields, </text></g>
              </g>
              <g onmousedown="setCaption(evt,'site106')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(523291,-182562)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Kensal Green Cemetery, W10</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site108')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530260,-179230)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Victoria Tower Gardens, SW1</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site109')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(537591,-193299)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Chingford Mount Cemetery, E4</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site110')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(519844,-188946)">&Site;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:blue;font-style:italic">Roe Green Park, NW9</text></g>
              </g>
              <g onmousedown="setCaption(evt,'site111')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M 527233 185650 L 527204 185725 L 527204 185788 L 527201 185815 L 527172 185858 L 527059 185959 L 526938 186054 L 526877 186097 L 526895 186113 L 526919 186145 L 526893 186182 L 526868 186196 L 526836 186196 L 526810 186164 L 526770 186204 L 526722 186230 L 526704 186236 L 526677 186254 L 526653 186256 L 526586 186259 L 526533 186262 L 526425 186259 L 526344 186270 L 526328 186264 L 526288 186419 L 526331 186535 L 526401 186690 L 526509 186927 L 526605 187132 L 526664 187246 L 526690 187299 L 526688 187379 L 526722 187422 L 526778 187470 L 526834 187525 L 526903 187565  L 526994 187567 L 527097 187599 L 527249 187559 L 527339 187543 L 527417 187554 L 527491 187562 L 527551 187583 L 527599 187567 L 527650 187551  L 527738 187522 L 527589 187503 L 527546 187519 L 527527 187459 L 527527 187401 L 527509 187377 L 527483 187344 L 527517 187334 L 527581 187339 L 527741 187342 L 527756 187294 L 527770 187249 L 527738 187182 L 527685 187148 L 527613 187073 L 527666 187014 L 527736 186941 L 527828 186858 L 527903 186756 L 527898 186698 L 527903 186650 L 527938 186581 L 527981 186527 L 527991 186517 L 527978 186497 L 527997 186473 L 528043 186459 L 528067 186409 L 528070 186342 L 528110 186336 L 528153 186344 L 528209 186355 L 528259 186355 L 528291 186299 L 528347 186158 L 528294 186134 L 528315 186126 L 528259 186025 L 528331 185938 L 528286 185906 L 528318 185868 L 528344 185791 L 528363 185746 L 528387 185717 L 528331 185693 L 528270 185709 L 528188 185741 L 528043 185770 L 527911 185778 L 527804 185764 L 527720 185772 L 527704 185791 L 527578 185994 L 527559 186033 L 527525 186059 L 527486 186062 L 527451 186102 L 527438 186113 L 527422 186118 L 527328 186067 L 527344 186057 L 527331 186025 L 527307 185994 L 527307 185954 L 527310 185895 L 527288 185836 L 527256 185788 L 527238 185744 L 527241 185712 L 527244 185658 L 527267 185637 Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(527025,186722)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Hampstead Heath, NW3</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'site112')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="matrix(1,0,0,-1,0,0)">
                  <path d="M536662 185483 L 536646 185512 L 536616 185563 L 536597 185595 L 536557 185678 L 536547 185731 L 536536 185747 L 536512 185766 L 536493 185785 L 536442 185819 L 536389 185854 L 536338 185886 L 536308 185910 L 536276 185934 L 536266 185948 L 536252 185966 L 536241 185974 L 536215 185996 L 536177 186017 L 536137 186057 L 536105 186089 L 536078 186148 L 536057 186196 L 536043 186247 L 536022 186290 L 536009 186319 L 535987 186364 L 535963 186388 L 535939 186402 L 535918 186412 L 535888 186426 L 535880 186447 L 535837 186460 L 535776 186485 L 535752 186487 L 535728 186490 L 535698 186495 L 535661 186517 L 535631 186535 L 535628 186543 L 535650 186546 L 535645 186551 L 535690 186559 L 535698 186554 L 535725 186543 L 535741 186535 L 535762 186525 L 535786 186519 L 535810 186519 L 535835 186527 L 535861 186541 L 535896 186559 L 535926 186573 L 535942 186573 L 535960 186565 L 535982 186551 L 536006 186519 L 536019 186514 L 536049 186501 L 536089 186501 L 536110 186517 L 536148 186533 L 536180 186541 L 536223 186546 L 536268 186538 L 536287 186525 L 536314 186506 L 536346 186482 L 536391 186466 L 536429 186455 L 536464 186455 L 536501 186471 L 536552 186503 L 536603 186530 L 536640 186546 L 536662 186546 L 536675 186546 L 536694 186538 L 536721 186525 L 536809 186476 L 536881 186423 L 536927 186391 L 536959 186367 L 536983 186330 L 537020 186287 L 537039 186228 L 537055 186167 L 537066 186129 L 537060 186100 L 537047 186065 L 537026 186020 L 536991 185966 L 536953 185892 L 536948 185862 L 536959 185817 L 536980 185787 L 537004 185763 L 537039 185745 L 537068 185729 L 537095 185707 L 537119 185694 L 537144 185667 L 537160 185646 L 537197 185624 L 537240 185598 L 537280 185576 L 537304 185560 L 537317 185555 L 537288 185555 L 537245 185555 L 537205 185555 L 537127 185539 L 537034 185531 L 536970 185526 L 536833 185507 L 536742 185502 L 536702 185502 L 536686 185502 L 536675 185483Z" style="stroke:green; stroke-width:.1; fill:palegreen" />
                  <g transform="translate(536653,186123)">
                    <g transform="matrix(1,0,0,-1,0,0)">
                      <text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:red">Hackney Marsh, E5</text>
                    </g>
                  </g>
                </g>
              </g>
              <g onmousedown="setCaption(evt,'tree92')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(537600,-176460)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree36')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(526645,-168014)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  acerifolia </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree38')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(526834,-168059)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  acerifolia </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree37')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(541919,-186422)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  acerifolia </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree23')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(518175,-176580)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree25')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(539083,-177267)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus orientalis Digitata</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree28')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(518530,-176749)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree24')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(518550,-176450)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis insularis</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree26')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(518700,-177230)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree80')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531709,-189400)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree46')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528360,-187350)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus orientalis Cuneata</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree5')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(532315,-194807)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis Hackney Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree81')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531443,-187140)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis Hackney Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree48')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528500,-180000)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree54')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528760,-179950)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree58')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529070,-179850)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Pyramidalis</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree57')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529050,-179900)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia London Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree61')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529250,-179750)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree49')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528550,-179850)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree56')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529000,-179750)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree59')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529100,-179800)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree117')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528041,-179951)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree43')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528027,-180014)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree116')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527459,-180470)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Grotesque trunk</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree40')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527250,-173150)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis Hackney Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree41')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527275,-173170)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree66')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529750,-181250)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree79')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531530,-189550)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree11')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(539302,-182035)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree10')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(539302,-182035)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree18')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(517760,-173450)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree86')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(533570,-192610)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus orientalis Digitata</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree70')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530450,-177650)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree69')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530450,-177625)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree90')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(536669,-188134)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree94')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(541494,-177788)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree62')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529250,-180250)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree50')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528750,-173250)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree17')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(517690,-173430)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  acerifolia </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree19')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530296,-180334)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree22')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(518169,-174006)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree27')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(518820,-180450)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree3')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(526169,-179591)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree12')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530296,-180334)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree55')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528975,-189642)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree83')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(533250,-192500)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Edmonton Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree84')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(533304,-192486)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Edmonton Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree64')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529400,-179800)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree95')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528206,-182328)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree45')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528238,-182307)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree42')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528067,-182623)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree135')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(538925,-177393)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Pyramidalis</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree136')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(539062,-176975)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree134')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(538978,-177017)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree133')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(538975,-177000)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree7')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(539022,-177006)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree93')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(540749,-189775)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis Hackney Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree13')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(537567,-176427)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree29')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(519385,-178380)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree129')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528334,-174791)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Westminster Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree130')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528943,-174551)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Pyramidalis</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree138')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528722,-175180)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis Hackney Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree128')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528073,-175075)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia Pyramidalis</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree131')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529241,-175209)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree73')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530750,-190250)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  acerifolia </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree75')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530750,-190250)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree74')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530750,-190250)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree89')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(534685,-185720)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis Hackney Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree35')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(526661,-170417)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree15')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527823,-164525)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  acerifolia </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree53')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(535500,-175475)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia London Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree52')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528750,-187250)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia London Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree51')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530326,-180115)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  acerifolia </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree60')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529250,-169500)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus orientalis Digitata</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree63')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(529375,-169950)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus orientalis Digitata</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree71')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(530270,-179744)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree47')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(528395,-179844)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree78')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531375,-177680)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis Hackney Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree77')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531275,-177675)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree32')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(525525,-179585)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus orientalis Digitata</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree31')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(524250,-178750)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree30')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(524250,-178750)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree39')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(527100,-187401)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus acerifolia London Form</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree33')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(525830,-189680)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree34')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(525830,-189690)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  orientalis </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree101')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(534783,-170650)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree105')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(523903,-180360)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Unknown  </text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree114')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(526853,-181131)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Augustine Henry</text></g>
              </g>
              <g onmousedown="setCaption(evt,'tree132')" onmouseout="x_onmouseout(evt)" onmouseover="x_onmouseover(evt)" >
                <g transform="translate(531355,-179073)">&Tree;<text x="0" y="0" visibility="hidden" style="font-size:240;font-family:Arial;fill:black">Platanus  Grotesque trunk</text></g>
              </g>
            </g>
          </svg>
        </td>
        <td valign="top" width="50%" rowspan="2">
          <div id="caption">
            <h1>Using this page </h1>
            <p>The information here will be replaced by information about the map, 
but is repeated later in this page.</p>
            <p>This plan shows selected trees and sites across London. 
Trees are shown as red stars, and some places (some of the larger parks) 
as green areas. Most places are only indicated by the blue circles.</p>
            <p>Move the mouse over the trees (brown or red) to see the tree species name. 
Move the mouse over places (green or yellow) to see its name. 
Click on a name to see more information on it, including a link to a map. </p>
            <p>You probably need to zoom into the plan to use it. 
Pan and zoom controls are in the panel below the map.  </p>
            <h2>
              <a href="http://www.mozilla.com/firefox/central/">Firefox</a> or 
<a href="http://www.opera.com">Opera</a> only! 
</h2>
            <p>If you don't see any coloured marks on the left, that is 
probably because of your browser. This page only works in the 
<b>Mozilla Firefox</b> or <b>Opera</b> browsers. 
It does not work with Internet Explorer.
</p>
          </div>
        </td>
      </tr>
      <tr>
        <td>
          <p>Pan and zoom controls.
<button onclick="panLeft();">&lt;</button><button onclick="panRight();">&gt; </button><button onclick="panUp();">^ </button><button onclick="panDown();">
v </button><button onclick="Zoom();">+ </button><button onclick="Mooz();">-   </button>
 Reload  <button onclick="reloadPage();">Refresh</button></p>
        </td>
      </tr>
    </table>
    <h2>Pan and zoom functions</h2>
    <p>These functions are provided by the buttons in the lower left of the 
panes above. The pan buttons move the maps by 25% of the current 
visible extent. The zoom buttons zoom in or out by a scale of 50%.</p>
A reload / reset / refresh button is also provided.

<h2>Using this page </h2><p>This plan shows selected trees and sites across London. 
Trees are shown as red stars. Some of the larger parks are shown as 
green areas. Other places of interest however only have an indicative 
light blue circle.</p><p>
Move the mouse over the trees (brown or red) to see the tree species name. 
Move the mouse over places (green or blue) to see its name. 
Click on any name to see more information on it, and information on it 
will appear in the right-hand pane. </p><p>Pan and zoom controls are in the panel below the map. </p><h2>About this page</h2><p>This is an experiment is creating and using 
<a href="http://www.w3.org/TR/SVG/">SVG</a> (Scalable Vector Graphics), 
for displaying the map data. The SVG is embedded into and 
included inline within an <a href="http://www.w3.org/TR/xhtml1/">XHTML</a> 
document. The SVG is enhanced with some scripting to provide pan and zoom 
functions, and to show the park names, and other text. Currently Internet 
Explorer cannot handle this. Newer versions of the Firefox and Opera browsers
are capable of it though, and this page has been designed for them. 
</p><p>Some SVG handling, such 
as the pan and zoom functions, are not yet available in all browsers, so they
have been replaced with scripted functions. Scripting is also used to
provide the link between clicking on the map pane and showing the 
information on the right hand pane. If Java or Javascript have been 
disabled in the browser security settings, then this page will not work. 
</p>
<p>A few place names provided as a guide on the plan. They do not show at
the correct scale in Opera, and do not rescale with the drawings with this 
browser.</p>
<p>The places and trees shown on this plan are only a selection of 
those in London. </p>

<h2><a href="http://www.mozilla.com/firefox/central/">Firefox</a> or 
<a href="http://www.opera.com">Opera</a> only! 
</h2><p>If you don't see any coloured marks in the left hand pane, that is 
probably because of your browser. This page is only known to work in the 
<b>Mozilla Firefox</b> or <b>Opera</b> browsers. 
It does not work with Internet Explorer.</p><p>Last modified on 2 October 2006</p>
<!-- End of html section. -->
<!-- the following section, dataxml, is hidden in the browser. Individual nodes are written into the visible document using the embedded script. --><dataxml><text id="site32" ><h2>Haven Green, W5</h2><p>Collection of distinctive trees.</p><p>O.S. coordinates are 517800,180940 - <a href="http://www.streetmap.co.uk/newmap.srf?x=517800&amp;y=180940">Location on streetmap</a></p></text><text id="site33" ><h2>Royal Naval College / National Maritime Museum, SE10</h2><p>Large collection of trees, many of them pollarded or severely pruned. Includes some distinctive forms.</p><p>O.S. coordinates are 538567,177941 - <a href="http://www.streetmap.co.uk/newmap.srf?x=538567&amp;y=177941">Location on streetmap</a></p></text><text id="site34" ><h2>Brookmill Park, SE4</h2><p>A small park. Contains a number of older and some new trees, some of which look to be distinct forms. Also some interesting forms in adjacent streets. </p><p>O.S. coordinates are 537602,176462 - <a href="http://www.streetmap.co.uk/newmap.srf?x=537602&amp;y=176462">Location on streetmap</a></p></text><text id="site36" ><h2>Kew Gardens, TW9</h2><p>Extensive and varied collection. Some trees are old and  probably atypical because of age and dieback. Some very large specimens. </p><p>O.S. coordinates are 518575,177400 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518575&amp;y=177400">Location on streetmap</a></p></text><text id="site37" ><h2>City of London Cemetery, E12</h2><p>Extensive tree collection, lots of planes. However they seem to be the same type. There is little visible variation in types.</p><p>O.S. coordinates are 542130,186400 - <a href="http://www.streetmap.co.uk/newmap.srf?x=542130&amp;y=186400">Location on streetmap</a></p></text><text id="site40" ><h2>Pond Square, Highgate, N6</h2><p>Has several forms in this little square. None are very large, but it is an attractive group and area. </p><p>O.S. coordinates are 528360,187350 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528360&amp;y=187350">Location on streetmap</a></p></text><text id="site41" ><h2>Westminster Embankment Gardens, WC2</h2><p>This includes the gardens by the embankment between Westminster Bridge and Hungerford Bridge, and the gardens to the north of Hungerford Bridge. May also be called Jubilee Gardens and Whitehall Gardens. Includes a number of distinct specimens. In Whitehall Gardens, to the south of Hungerford Bridge, there are common forms plus some Hackney Form. On the other side, to the north, there are several forms, including some interesting Orientalis, well shaped Hackney form, and others. Three tall Westminster Form stand on the lawn by the MoD buildings. </p><p>O.S. coordinates are 530355,180283 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530355&amp;y=180283">Location on streetmap</a></p></text><text id="site42" ><h2>Finsbury Park, N4</h2><p>Many medium large mature forms. Includes a number of specimens of the Hackney Form</p><p>O.S. coordinates are 531488,187140 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531488&amp;y=187140">Location on streetmap</a></p></text><text id="site43" ><h2>Green Park, SW1</h2><p>Collection of large or very large planes. Notable for the double avenue leading north from the Queen Victoria Memorial, which contains two varieties, London Form and Pyramidalis, clearly distinguishable on the ground and by colour in aerial photographs. Many Westminster Form, especially approaching Hyde Park Corner. Tall orientalis in the south. </p><p>O.S. coordinates are 529000,179900 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529000&amp;y=179900">Location on streetmap</a></p></text><text id="site44" ><h2>Hyde Park, W2</h2><p>Large collection, many varieties. Includes some varieties not seen elsewhere, and some grotesques. Includes some especially large specimens of London Form, Pyramidalis, Hackney Form, and others. </p><p>O.S. coordinates are 527419,180430 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527419&amp;y=180430">Location on streetmap</a></p></text><text id="site45" ><h2>Kensington Gardens, W2</h2><p>Large park with a considerable collection. Includes several forms of planes, some very large specimens.</p><p>O.S. coordinates are 526371,180158 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526371&amp;y=180158">Location on streetmap</a></p></text><text id="site47" ><h2>Wandsworth Common, SW18</h2><p>Many mature planes.</p><p>O.S. coordinates are 527275,173170 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527275&amp;y=173170">Location on streetmap</a></p></text><text id="site48" ><h2>Battersea Park, SW11</h2><p>Many mature trees. However this park seems to contain a fairly narrow range of forms for its size. </p><p>O.S. coordinates are 528033,177158 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528033&amp;y=177158">Location on streetmap</a></p></text><text id="site49" ><h2>Marble Hill Park, TW1</h2><p>Many mature trees, especially by river.  </p><p>O.S. coordinates are 517494,173525 - <a href="http://www.streetmap.co.uk/newmap.srf?x=517494&amp;y=173525">Location on streetmap</a></p></text><text id="site50" ><h2>Orleans Gardens, TW1</h2><p>Many mature trees, especially by river.  </p><p>O.S. coordinates are 528599,173230 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528599&amp;y=173230">Location on streetmap</a></p></text><text id="site51" ><h2>Soho Square, W1</h2><p>Small collection of tall mature trees. </p><p>O.S. coordinates are 529693,181246 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529693&amp;y=181246">Location on streetmap</a></p></text><text id="site52" ><h2>Ducketts Common, N8</h2><p>Mostly planes, including a number of Pyramidalis by Green Lanes that all start branching from 8 - 10ft height.</p><p>O.S. coordinates are 531514,189465 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531514&amp;y=189465">Location on streetmap</a></p></text><text id="site55" ><h2>Star Lane, E10</h2><p>New development; includes a number of Augustine Henry.</p><p>O.S. coordinates are 539302,182035 - <a href="http://www.streetmap.co.uk/newmap.srf?x=539302&amp;y=182035">Location on streetmap</a></p></text><text id="site56" ><h2>Thames Towpath, Richmond, TW10</h2><p>The riverside walk along the south (east) side of the river past the meadows has several very large specimens. This includes a group of 3 massive planes, and an isolated massive tall orientalis, in the vicinity of the Deutsche Schule. Some of these may be on Petersham Meadows. </p><p>O.S. coordinates are 517943,173714 - <a href="http://www.streetmap.co.uk/newmap.srf?x=517943&amp;y=173714">Location on streetmap</a></p></text><text id="site57" ><h2>Pymmes Park, N18</h2><p>Numbers of trees dating from the beginning of the 20th C. No especially interesting specimens among the mature trees, most of which are Pyramidalis. </p><p>O.S. coordinates are 533744,192704 - <a href="http://www.streetmap.co.uk/newmap.srf?x=533744&amp;y=192704">Location on streetmap</a></p></text><text id="site58" ><h2>Vauxhall Park, SW8</h2><p>Numbers of trees, mostly large specimens of the Westminster Form.</p><p>O.S. coordinates are 530450,177650 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530450&amp;y=177650">Location on streetmap</a></p></text><text id="site7" ><h2>The Village, SE7</h2><p></p><p>O.S. coordinates are 541503,177826 - <a href="http://www.streetmap.co.uk/newmap.srf?x=541503&amp;y=177826">Location on streetmap</a></p></text><text id="site10" ><h2>Brixton Road, SW9</h2><p></p><p>O.S. coordinates are 531165,175880 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531165&amp;y=175880">Location on streetmap</a></p></text><text id="site12" ><h2>Petersham Meadows., TW10</h2><p>See also the Thames Towpath, at Richmond.</p><p>O.S. coordinates are 517834,173427 - <a href="http://www.streetmap.co.uk/newmap.srf?x=517834&amp;y=173427">Location on streetmap</a></p></text><text id="site14" ><h2>Terrace Gardens, TW10</h2><p></p><p>O.S. coordinates are 518169,174006 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518169&amp;y=174006">Location on streetmap</a></p></text><text id="site17" ><h2>Palace Gate, Kensington, W8</h2><p></p><p>O.S. coordinates are 526169,179591 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526169&amp;y=179591">Location on streetmap</a></p></text><text id="site18" ><h2>Tavistock Square, WC1</h2><p>Collection of tall trees, including some Westminster Form and others. </p><p>O.S. coordinates are 529890,182334 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529890&amp;y=182334">Location on streetmap</a></p></text><text id="site19" ><h2>Northumberland Ave, WC2</h2><p></p><p>O.S. coordinates are 530296,180334 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530296&amp;y=180334">Location on streetmap</a></p></text><text id="site20" ><h2>Muswell Hill, N10</h2><p>(This site is the road Muswell Hill, not the district.)</p><p>O.S. coordinates are 528973,189581 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528973&amp;y=189581">Location on streetmap</a></p></text><text id="site21" ><h2>Tanners End Lane, N18</h2><p>1960's housing development with a few interesting trees.</p><p>O.S. coordinates are 533302,192500 - <a href="http://www.streetmap.co.uk/newmap.srf?x=533302&amp;y=192500">Location on streetmap</a></p></text><text id="site22" ><h2>St. James's Park, SW1</h2><p>A few Augustine Henry and a collection of some other very large trees, especially to the south of the lake.</p><p>O.S. coordinates are 529645,179893 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529645&amp;y=179893">Location on streetmap</a></p></text><text id="site24" ><h2>Regents Park, NW1</h2><p>A good number of trees,. A few good specimens of the Westminster and Hackney Forms. There are some other distinctive forms near the south of the Inner Circle.</p><p>O.S. coordinates are 528022,182986 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528022&amp;y=182986">Location on streetmap</a></p></text><text id="site25" ><h2>Greenwich Park, SE10</h2><p>A few interesting plane trees. Includes some large orientalis, Westminster form, and Pyramidalis. </p><p>O.S. coordinates are 539060,177335 - <a href="http://www.streetmap.co.uk/newmap.srf?x=539060&amp;y=177335">Location on streetmap</a></p></text><text id="site26" ><h2>St Pancras and Islington Cemetery, N2</h2><p>A few plane trees at various points. Most are less usual forms, but they need hunting out.</p><p>O.S. coordinates are 527185,190700 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527185&amp;y=190700">Location on streetmap</a></p></text><text id="site27" ><h2>Hermon Hill, E18</h2><p>A few trees in a churchyard.</p><p>O.S. coordinates are 540749,189775 - <a href="http://www.streetmap.co.uk/newmap.srf?x=540749&amp;y=189775">Location on streetmap</a></p></text><text id="site28" ><h2>Brimsdown Avenue, EN3</h2><p>A line of mostly Orientalis, on the east side of the road, at the southern end. </p><p>O.S. coordinates are 536283,197126 - <a href="http://www.streetmap.co.uk/newmap.srf?x=536283&amp;y=197126">Location on streetmap</a></p></text><text id="site29" ><h2>Brookmill Road, SE4</h2><p>Augustine Henry  and some other trees planted here.</p><p>O.S. coordinates are 537567,176427 - <a href="http://www.streetmap.co.uk/newmap.srf?x=537567&amp;y=176427">Location on streetmap</a></p></text><text id="site30" ><h2>Chiswick Roundabout, W4</h2><p>Collection of Augustine Henry and other forms.</p><p>O.S. coordinates are 519385,178380 - <a href="http://www.streetmap.co.uk/newmap.srf?x=519385&amp;y=178380">Location on streetmap</a></p></text><text id="site31" ><h2>Priory Road, N8</h2><p>Collection of differing trees  along road, some pruned. Includes especially a collection on north side between Redston Road and Danvers Road.</p><p>O.S. coordinates are 529543,189262 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529543&amp;y=189262">Location on streetmap</a></p></text><text id="site59" ><h2>Clapham Common, SW4</h2><p>Many mature trees. Some are distinctive, for instance for swollen boles. Includes most commonly seen forms, and includes some moderately large specimens. </p><p>O.S. coordinates are 528500,175000 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528500&amp;y=175000">Location on streetmap</a></p></text><text id="site60" ><h2>Victoria Park, E9</h2><p>Old park with a number of large planes of differing types.</p><p>O.S. coordinates are 536190,183870 - <a href="http://www.streetmap.co.uk/newmap.srf?x=536190&amp;y=183870">Location on streetmap</a></p></text><text id="site61" ><h2>Wood Green Common, N22</h2><p>Several forms in the different parts of the green.</p><p>O.S. coordinates are 530586,190278 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530586&amp;y=190278">Location on streetmap</a></p></text><text id="site62" ><h2>Hackney Downs, E5</h2><p>Several forms, including the Hackney Form, scattered around the site. None are especially large. </p><p>O.S. coordinates are 534483,185688 - <a href="http://www.streetmap.co.uk/newmap.srf?x=534483&amp;y=185688">Location on streetmap</a></p></text><text id="site63" ><h2>Wandle Park, SW19</h2><p>This contains a number of distinctive trees, including some mature Augustine Henry. </p><p>O.S. coordinates are 526661,170417 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526661&amp;y=170417">Location on streetmap</a></p></text><text id="site64" ><h2>Pound Street, SM5</h2><p>Single massive plane tree in the  grounds of the Ecology centre.</p><p>O.S. coordinates are 527823,164525 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527823&amp;y=164525">Location on streetmap</a></p></text><text id="site65" ><h2>Waterlow Park, N8</h2><p>Some good sized specimens.</p><p>O.S. coordinates are 528688,187137 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528688&amp;y=187137">Location on streetmap</a></p></text><text id="site66" ><h2>Beckenham Place Park, BR3</h2><p>Some interesting trees.</p><p>O.S. coordinates are 537762,170326 - <a href="http://www.streetmap.co.uk/newmap.srf?x=537762&amp;y=170326">Location on streetmap</a></p></text><text id="site67" ><h2>Berkeley Square, W1</h2><p>Some of the largest or tallest trees in London, allegedly. It is sometimes difficult to judge the scale of the trees because of the surrounding buildings. Many trees have massive basal buttresses. </p><p>O.S. coordinates are 530326,180115 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530326&amp;y=180115">Location on streetmap</a></p></text><text id="site68" ><h2>Rowan Road, SW16</h2><p>The road and nearby area has been planted with some less usual forms, which are unfortunately coming up to the size when they are likely to be pollarded because of their location. </p><p>O.S. coordinates are 530312,180083 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530312&amp;y=180083">Location on streetmap</a></p></text><text id="site69" ><h2>Victoria Embankment, WC2</h2><p>The embankment has been planted with a number of different clones or seedling forms.</p><p>O.S. coordinates are 530326,180041 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530326&amp;y=180041">Location on streetmap</a></p></text><text id="site70" ><h2>Hyde Park Corner, SW1</h2><p>This name is used here only for the green parts within the Hyde Park Corner roundabout. This has a number of distinctive trees.</p><p>O.S. coordinates are 528427,179818 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528427&amp;y=179818">Location on streetmap</a></p></text><text id="site71" ><h2>Clapton Common, E5</h2><p>The collection of greens on the north east side of the road has many Pyramidalis, a few Hackney Form and some other varieties. Moderately large specimens. </p><p>O.S. coordinates are 530310,179744 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530310&amp;y=179744">Location on streetmap</a></p></text><text id="site72" ><h2>Kennington Park, SE11</h2><p>Contains  a collection of distinct forms probably from the late 19C or early 20C. Includes Pyramidalis (large old varieties), Hackney Form, and grotesque forms. </p><p>O.S. coordinates are 530283,180003 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530283&amp;y=180003">Location on streetmap</a></p></text><text id="site74" ><h2>Kensington High Street, W8</h2><p>Trees in High Street Kensington, and in side streets near the station. Includes a good number of recent plantings of Digitata. </p><p>O.S. coordinates are 525525,179585 - <a href="http://www.streetmap.co.uk/newmap.srf?x=525525&amp;y=179585">Location on streetmap</a></p></text><text id="site75" ><h2>St. Paul's Open Space, W6</h2><p>Trees in the former St Pauls Churchyard include mature AH.</p><p>O.S. coordinates are 524250,178750 - <a href="http://www.streetmap.co.uk/newmap.srf?x=524250&amp;y=178750">Location on streetmap</a></p></text><text id="site76" ><h2>Kenwood House Grounds, NW3</h2><p>Two good specimens of the London Form, ot the top of the slope looking out over the lake.</p><p>O.S. coordinates are 527100,187401 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527100&amp;y=187401">Location on streetmap</a></p></text><text id="site78" ><h2>St. Marylebone Cemetery, N2</h2><p>Two trees of interest.</p><p>O.S. coordinates are 525830,189690 - <a href="http://www.streetmap.co.uk/newmap.srf?x=525830&amp;y=189690">Location on streetmap</a></p></text><text id="site82" ><h2>Bayswater Road, W2</h2><p>A number of Pyramidalis on this road, though not exclusively this form. </p><p>O.S. coordinates are 527033,180815 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527033&amp;y=180815">Location on streetmap</a></p></text><text id="site83" ><h2>Crystal Palace Park, SE20</h2><p>Some mature trees of different forms, and including some grotesques. </p><p>O.S. coordinates are 534320,170925 - <a href="http://www.streetmap.co.uk/newmap.srf?x=534320&amp;y=170925">Location on streetmap</a></p></text><text id="site84" ><h2>Shepherds Bush Green, W11</h2><p>Many interesting trees. Check Pyramidalis on the east side, some unusual types on the south side. </p><p>O.S. coordinates are 523478,179850 - <a href="http://www.streetmap.co.uk/newmap.srf?x=523478&amp;y=179850">Location on streetmap</a></p></text><text id="site85" ><h2>Museum Gardens, Bethnal Green, E2</h2><p>Includes a number of specimens, including some distinctive trees. </p><p>O.S. coordinates are 535035,182860 - <a href="http://www.streetmap.co.uk/newmap.srf?x=535035&amp;y=182860">Location on streetmap</a></p></text><text id="site86" ><h2>Victoria Park Square, E2</h2><p>Small leaved form opposite eastern end of Museum Walk</p><p>O.S. coordinates are 535102,182910 - <a href="http://www.streetmap.co.uk/newmap.srf?x=535102&amp;y=182910">Location on streetmap</a></p></text><text id="site88" ><h2>Butterwick, W6</h2><p>Road running east side of large Hammersmith traffic island. </p><p>O.S. coordinates are 523480,178600 - <a href="http://www.streetmap.co.uk/newmap.srf?x=523480&amp;y=178600">Location on streetmap</a></p></text><text id="site93" ><h2>Islington Green, N1</h2><p>Includes two distinctive forms near southern end of the green. </p><p>O.S. coordinates are 531648,183623 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531648&amp;y=183623">Location on streetmap</a></p></text><text id="site102" ><h2>Trinity Square Gardens, EC3</h2><p>North of Tower Hill. Interesting collection of trees, some quite interesting. </p><p>O.S. coordinates are 533519,180744 - <a href="http://www.streetmap.co.uk/newmap.srf?x=533519&amp;y=180744">Location on streetmap</a></p></text><text id="site103" ><h2>St. George's Field, SE1</h2><p>Also called Gearld Mary Harmsworth Park. Includes 3 of the 'grotesque' form. </p><p>O.S. coordinates are 531395,179190 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531395&amp;y=179190">Location on streetmap</a></p></text><text id="site104" ><h2>Holland Park, W8</h2><p>Includes several trees, especially alongside the walk to Kensington High Street. Also a grotesque behind the cafeteria. </p><p>O.S. coordinates are 524750,179750 - <a href="http://www.streetmap.co.uk/newmap.srf?x=524750&amp;y=179750">Location on streetmap</a></p></text><text id="site105" ><h2>London Fields, </h2><p>This park is dominated by plane trees, mostly Pyramidalis. There are some very large specimens, including some of the largest in London in this kind of number. </p><p>O.S. coordinates are 534642,184270 - <a href="http://www.streetmap.co.uk/newmap.srf?x=534642&amp;y=184270">Location on streetmap</a></p></text><text id="site106" ><h2>Kensal Green Cemetery, W10</h2><p>Also includes the adjacent RC cemetery. Has a number of a distinctive orientalis plane. </p><p>O.S. coordinates are 523291,182562 - <a href="http://www.streetmap.co.uk/newmap.srf?x=523291&amp;y=182562">Location on streetmap</a></p></text><text id="site108" ><h2>Victoria Tower Gardens, SW1</h2><p>Gardens to the south of the Houses of Parliament, between Millbank and the river. Lined with mature planes, some interesting forms. </p><p>O.S. coordinates are 530260,179230 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530260&amp;y=179230">Location on streetmap</a></p></text><text id="site109" ><h2>Chingford Mount Cemetery, E4</h2><p>Contains an impressive avenue of planes on the south side. These are young mature trees, with clean high crowns. Also interesting collection of other tree species. </p><p>O.S. coordinates are 537591,193299 - <a href="http://www.streetmap.co.uk/newmap.srf?x=537591&amp;y=193299">Location on streetmap</a></p></text><text id="site110" ><h2>Roe Green Park, NW9</h2><p>Some trees alongside Kingsbury Road and along Roe Green.</p><p>O.S. coordinates are 519844,188946 - <a href="http://www.streetmap.co.uk/newmap.srf?x=519844&amp;y=188946">Location on streetmap</a></p></text><text id="site111" ><h2>Hampstead Heath, NW3</h2><p>Large naturalistic open space. Some plane trees can be found on some of its margins and more built up parts. </p><p>O.S. coordinates are 527025,186722 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527025&amp;y=186722">Location on streetmap</a></p></text><text id="site112" ><h2>Hackney Marsh, E5</h2><p>Large open space. Some trees on the perimeter.</p><p>O.S. coordinates are 536653,186123 - <a href="http://www.streetmap.co.uk/newmap.srf?x=536653&amp;y=186123">Location on streetmap</a></p></text><text id="tree92" ><h2>Unknown  </h2><p>Brookmill Park, SE4</p><p>. </p><p>O. S. coordinates are 537600,176460 - <a href="http://www.streetmap.co.uk/newmap.srf?x=537600&amp;y=176460&amp;arrow">Location on streetmap</a></p></text><text id="tree36" ><h2>Platanus  acerifolia </h2><p>Ravensbury Park, CR4</p><p>. </p><p>O. S. coordinates are 526645,168014 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526645&amp;y=168014&amp;arrow">Location on streetmap</a></p></text><text id="tree38" ><h2>Platanus  acerifolia </h2><p>Ravensbury Park, CR4</p><p>. </p><p>O. S. coordinates are 526834,168059 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526834&amp;y=168059&amp;arrow">Location on streetmap</a></p></text><text id="tree37" ><h2>Platanus  acerifolia </h2><p>Ravensbury Park, CR4</p><p>. </p><p>O. S. coordinates are 541919,186422 - <a href="http://www.streetmap.co.uk/newmap.srf?x=541919&amp;y=186422&amp;arrow">Location on streetmap</a></p></text><text id="tree23" ><h2>Platanus  Augustine Henry</h2><p>Kew Gardens, TW9</p><p>. </p><p>O. S. coordinates are 518175,176580 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518175&amp;y=176580&amp;arrow">Location on streetmap</a></p></text><text id="tree25" ><h2>Platanus orientalis Digitata</h2><p>Kew Gardens, TW9</p><p>. </p><p>O. S. coordinates are 539083,177267 - <a href="http://www.streetmap.co.uk/newmap.srf?x=539083&amp;y=177267&amp;arrow">Location on streetmap</a></p></text><text id="tree28" ><h2>Platanus  orientalis </h2><p>Kew Gardens, TW9</p><p>Near King Williams Temple. </p><p>O. S. coordinates are 518530,176749 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518530&amp;y=176749&amp;arrow">Location on streetmap</a></p></text><text id="tree24" ><h2>Platanus  orientalis insularis</h2><p>Kew Gardens, TW9</p><p>Medium sized tree east of Temperate house, by the path leading northeast from the central entrance.. </p><p>O. S. coordinates are 518550,176450 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518550&amp;y=176450&amp;arrow">Location on streetmap</a></p></text><text id="tree26" ><h2>Platanus  Augustine Henry</h2><p>Kew Gardens, TW9</p><p>Young specimen next to Princess of Wales conservatory.. </p><p>O. S. coordinates are 518700,177230 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518700&amp;y=177230&amp;arrow">Location on streetmap</a></p></text><text id="tree80" ><h2>Platanus  Augustine Henry</h2><p>West Green Road, N15</p><p>Alongside West Green Road.. </p><p>O. S. coordinates are 531709,189400 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531709&amp;y=189400&amp;arrow">Location on streetmap</a></p></text><text id="tree46" ><h2>Platanus orientalis Cuneata</h2><p>Pond Square, Highgate, N6</p><p>Pond Square, South Grove, Highgate, on green opposite Swains Lane. </p><p>O. S. coordinates are 528360,187350 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528360&amp;y=187350&amp;arrow">Location on streetmap</a></p></text><text id="tree5" ><h2>Platanus  orientalis Hackney Form</h2><p>Westminster Embankment Gardens, WC2</p><p>Thames, either side of Charing Cross rail bridge.. </p><p>O. S. coordinates are 532315,194807 - <a href="http://www.streetmap.co.uk/newmap.srf?x=532315&amp;y=194807&amp;arrow">Location on streetmap</a></p></text><text id="tree81" ><h2>Platanus  orientalis Hackney Form</h2><p>Finsbury Park, N4</p><p>Near cafeteria and tennis courts.  A number of trees.. </p><p>O. S. coordinates are 531443,187140 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531443&amp;y=187140&amp;arrow">Location on streetmap</a></p></text><text id="tree48" ><h2>Platanus acerifolia Westminster Form</h2><p>Green Park, SW1</p><p>About 40m south of Picaddilly. Opposite Down Street.. </p><p>O. S. coordinates are 528500,180000 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528500&amp;y=180000&amp;arrow">Location on streetmap</a></p></text><text id="tree54" ><h2>Platanus acerifolia Westminster Form</h2><p>Green Park, SW1</p><p>Several trees on the mounds near Hyde Park Corner.. </p><p>O. S. coordinates are 528760,179950 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528760&amp;y=179950&amp;arrow">Location on streetmap</a></p></text><text id="tree58" ><h2>Platanus acerifolia Pyramidalis</h2><p>Green Park, SW1</p><p>Double avenue going from Buckingham Palace toward Piccadilly.. </p><p>O. S. coordinates are 529070,179850 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529070&amp;y=179850&amp;arrow">Location on streetmap</a></p></text><text id="tree57" ><h2>Platanus acerifolia London Form</h2><p>Green Park, SW1</p><p>Double avenue going from Buckingham Palace toward Piccadilly.. </p><p>O. S. coordinates are 529050,179900 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529050&amp;y=179900&amp;arrow">Location on streetmap</a></p></text><text id="tree61" ><h2>Platanus acerifolia Westminster Form</h2><p>Green Park, SW1</p><p>Alongside the footpath running along the east side of the park. About 100 m north of Pall Mall.. </p><p>O. S. coordinates are 529250,179750 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529250&amp;y=179750&amp;arrow">Location on streetmap</a></p></text><text id="tree49" ><h2>Platanus  orientalis </h2><p>Green Park, SW1</p><p>Good sized high crowned  specimen near Buckingham Palace. </p><p>O. S. coordinates are 528550,179850 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528550&amp;y=179850&amp;arrow">Location on streetmap</a></p></text><text id="tree56" ><h2>Platanus  orientalis </h2><p>Green Park, SW1</p><p>Close to other trees in group of orientalis, about 100 m NW of the SE corner of the park, near the Canada gate.. </p><p>O. S. coordinates are 529000,179750 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529000&amp;y=179750&amp;arrow">Location on streetmap</a></p></text><text id="tree59" ><h2>Platanus  orientalis </h2><p>Green Park, SW1</p><p>Large specimen, high crowned, near gates at Queen Victoria Memorial.. </p><p>O. S. coordinates are 529100,179800 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529100&amp;y=179800&amp;arrow">Location on streetmap</a></p></text><text id="tree117" ><h2>Platanus  Augustine Henry</h2><p>Hyde Park, W2</p><p>Almost due south of tree 1, pyramidal form. Opposite (south) side of rose garden, by horse rides. . </p><p>O. S. coordinates are 528041,179951 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528041&amp;y=179951&amp;arrow">Location on streetmap</a></p></text><text id="tree43" ><h2>Unknown  </h2><p>Hyde Park, W2</p><p>. </p><p>O. S. coordinates are 528027,180014 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528027&amp;y=180014&amp;arrow">Location on streetmap</a></p></text><text id="tree116" ><h2>Platanus  Grotesque trunk</h2><p>Hyde Park, W2</p><p>To northeast of police station. About 100m away (to be checked).. </p><p>O. S. coordinates are 527459,180470 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527459&amp;y=180470&amp;arrow">Location on streetmap</a></p></text><text id="tree40" ><h2>Platanus  orientalis Hackney Form</h2><p>Wandsworth Common, SW18</p><p>On green at junction of Burntwood Lane and Sandgate Lane.  This stands near a tree of Platanus acerifolia Westminster Form.. </p><p>O. S. coordinates are 527250,173150 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527250&amp;y=173150&amp;arrow">Location on streetmap</a></p></text><text id="tree41" ><h2>Platanus acerifolia Westminster Form</h2><p>Wandsworth Common, SW18</p><p>Green at junction of Burntwood Lane and Sandgate Lane.. </p><p>O. S. coordinates are 527275,173170 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527275&amp;y=173170&amp;arrow">Location on streetmap</a></p></text><text id="tree66" ><h2>Platanus acerifolia Westminster Form</h2><p>Soho Square, W1</p><p>Near, and overhanging the central kiosk.. </p><p>O. S. coordinates are 529750,181250 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529750&amp;y=181250&amp;arrow">Location on streetmap</a></p></text><text id="tree79" ><h2>Platanus  Augustine Henry</h2><p>Ducketts Common, N8</p><p>. </p><p>O. S. coordinates are 531530,189550 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531530&amp;y=189550&amp;arrow">Location on streetmap</a></p></text><text id="tree11" ><h2>Platanus  Augustine Henry</h2><p>Star Lane, E10</p><p>In open space to the NW of the junction with Durham Road.. </p><p>O. S. coordinates are 539302,182035 - <a href="http://www.streetmap.co.uk/newmap.srf?x=539302&amp;y=182035&amp;arrow">Location on streetmap</a></p></text><text id="tree10" ><h2>Platanus  Augustine Henry</h2><p>Star Lane, E10</p><p>In open space opposite junction with Durham Road.. </p><p>O. S. coordinates are 539302,182035 - <a href="http://www.streetmap.co.uk/newmap.srf?x=539302&amp;y=182035&amp;arrow">Location on streetmap</a></p></text><text id="tree18" ><h2>Platanus  orientalis </h2><p>Thames Towpath, Richmond, TW10</p><p>In field edge, near where River lane meets towpath.. </p><p>O. S. coordinates are 517760,173450 - <a href="http://www.streetmap.co.uk/newmap.srf?x=517760&amp;y=173450&amp;arrow">Location on streetmap</a></p></text><text id="tree86" ><h2>Platanus orientalis Digitata</h2><p>Pymmes Park, N18</p><p>. </p><p>O. S. coordinates are 533570,192610 - <a href="http://www.streetmap.co.uk/newmap.srf?x=533570&amp;y=192610&amp;arrow">Location on streetmap</a></p></text><text id="tree70" ><h2>Platanus acerifolia Westminster Form</h2><p>Vauxhall Park, SW8</p><p>Specimen on the west side, by Fentiman Road.. </p><p>O. S. coordinates are 530450,177650 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530450&amp;y=177650&amp;arrow">Location on streetmap</a></p></text><text id="tree69" ><h2>Platanus acerifolia Westminster Form</h2><p>Vauxhall Park, SW8</p><p>Specimen tree overhanging entrance at junction of Fentiman Road and South Lambeth Road.. </p><p>O. S. coordinates are 530450,177625 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530450&amp;y=177625&amp;arrow">Location on streetmap</a></p></text><text id="tree90" ><h2>Platanus  Augustine Henry</h2><p>Kelmscott Leisure Centre, E17</p><p>Some young trees. </p><p>O. S. coordinates are 536669,188134 - <a href="http://www.streetmap.co.uk/newmap.srf?x=536669&amp;y=188134&amp;arrow">Location on streetmap</a></p></text><text id="tree94" ><h2>Unknown  </h2><p>The Village, SE7</p><p>The section of road west of Charlton Park Road.. </p><p>O. S. coordinates are 541494,177788 - <a href="http://www.streetmap.co.uk/newmap.srf?x=541494&amp;y=177788&amp;arrow">Location on streetmap</a></p></text><text id="tree62" ><h2>Platanus acerifolia Westminster Form</h2><p>Arlington Street, SW1</p><p>On west side of Arlington St, roughly opposite Benn Road.. </p><p>O. S. coordinates are 529250,180250 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529250&amp;y=180250&amp;arrow">Location on streetmap</a></p></text><text id="tree50" ><h2>Platanus  orientalis </h2><p>Sainsbury's car park, SW12</p><p>Two trees standing in shrubbery in car park near rail bridge over Bedford Hill. Dull leaved variety.. </p><p>O. S. coordinates are 528750,173250 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528750&amp;y=173250&amp;arrow">Location on streetmap</a></p></text><text id="tree17" ><h2>Platanus  acerifolia </h2><p>Petersham Meadows., TW10</p><p>Between the German School and the river.. </p><p>O. S. coordinates are 517690,173430 - <a href="http://www.streetmap.co.uk/newmap.srf?x=517690&amp;y=173430&amp;arrow">Location on streetmap</a></p></text><text id="tree19" ><h2>Platanus  orientalis </h2><p>Petersham Meadows., TW10</p><p>. </p><p>O. S. coordinates are 530296,180334 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530296&amp;y=180334&amp;arrow">Location on streetmap</a></p></text><text id="tree22" ><h2>Platanus  orientalis </h2><p>Terrace Gardens, TW10</p><p>Specimen tree in Terrace Gardens.. </p><p>O. S. coordinates are 518169,174006 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518169&amp;y=174006&amp;arrow">Location on streetmap</a></p></text><text id="tree27" ><h2>Platanus  orientalis </h2><p>Uxbridge Road, W5</p><p>Roadside tree in Uxbridge Road opposite Wolverton Gardens. Mature.. </p><p>O. S. coordinates are 518820,180450 - <a href="http://www.streetmap.co.uk/newmap.srf?x=518820&amp;y=180450&amp;arrow">Location on streetmap</a></p></text><text id="tree3" ><h2>Unknown  </h2><p>Palace Gate, Kensington, W8</p><p>Line of trees in private property at junction with Kensington Road, just off road.. </p><p>O. S. coordinates are 526169,179591 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526169&amp;y=179591&amp;arrow">Location on streetmap</a></p></text><text id="tree12" ><h2>Platanus  orientalis </h2><p>Northumberland Ave, WC2</p><p>Northwest side of road. </p><p>O. S. coordinates are 530296,180334 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530296&amp;y=180334&amp;arrow">Location on streetmap</a></p></text><text id="tree55" ><h2>Unknown  </h2><p>Muswell Hill, N10</p><p>Between road and primary school.. </p><p>O. S. coordinates are 528975,189642 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528975&amp;y=189642&amp;arrow">Location on streetmap</a></p></text><text id="tree83" ><h2>Platanus  Edmonton Form</h2><p>Tanners End Lane, N18</p><p>In car park, Tanners End Lane. Near southern entrance to car park. Hairy leaves, rugged bark. </p><p>O. S. coordinates are 533250,192500 - <a href="http://www.streetmap.co.uk/newmap.srf?x=533250&amp;y=192500&amp;arrow">Location on streetmap</a></p></text><text id="tree84" ><h2>Platanus  Edmonton Form</h2><p>Tanners End Lane, N18</p><p>In car park, Tanners End Lane. Northern entrance to car park. Hairy leaves, rugged bark.. </p><p>O. S. coordinates are 533304,192486 - <a href="http://www.streetmap.co.uk/newmap.srf?x=533304&amp;y=192486&amp;arrow">Location on streetmap</a></p></text><text id="tree64" ><h2>Platanus  Augustine Henry</h2><p>St. James's Park, SW1</p><p>St. James Park, to the north of the lake, northwest of the bridge. Mature.. </p><p>O. S. coordinates are 529400,179800 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529400&amp;y=179800&amp;arrow">Location on streetmap</a></p></text><text id="tree95" ><h2>Platanus acerifolia Westminster Form</h2><p>Regents Park, NW1</p><p>By York Bridge just north of the bridge.. </p><p>O. S. coordinates are 528206,182328 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528206&amp;y=182328&amp;arrow">Location on streetmap</a></p></text><text id="tree45" ><h2>Platanus acerifolia Westminster Form</h2><p>Regents Park, NW1</p><p>Leaning over the east end of the boatinglake, to northeast of York bridge.. </p><p>O. S. coordinates are 528238,182307 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528238&amp;y=182307&amp;arrow">Location on streetmap</a></p></text><text id="tree42" ><h2>Platanus acerifolia Westminster Form</h2><p>Regents Park, NW1</p><p>In garden behind cafeteria within Inner Circle (opp. Regents College). </p><p>O. S. coordinates are 528067,182623 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528067&amp;y=182623&amp;arrow">Location on streetmap</a></p></text><text id="tree135" ><h2>Platanus acerifolia Pyramidalis</h2><p>Greenwich Park, SE10</p><p>. </p><p>O. S. coordinates are 538925,177393 - <a href="http://www.streetmap.co.uk/newmap.srf?x=538925&amp;y=177393&amp;arrow">Location on streetmap</a></p></text><text id="tree136" ><h2>Platanus acerifolia Westminster Form</h2><p>Greenwich Park, SE10</p><p>. </p><p>O. S. coordinates are 539062,176975 - <a href="http://www.streetmap.co.uk/newmap.srf?x=539062&amp;y=176975&amp;arrow">Location on streetmap</a></p></text><text id="tree134" ><h2>Platanus  orientalis </h2><p>Greenwich Park, SE10</p><p>. </p><p>O. S. coordinates are 538978,177017 - <a href="http://www.streetmap.co.uk/newmap.srf?x=538978&amp;y=177017&amp;arrow">Location on streetmap</a></p></text><text id="tree133" ><h2>Platanus  orientalis </h2><p>Greenwich Park, SE10</p><p>. </p><p>O. S. coordinates are 538975,177000 - <a href="http://www.streetmap.co.uk/newmap.srf?x=538975&amp;y=177000&amp;arrow">Location on streetmap</a></p></text><text id="tree7" ><h2>Platanus  orientalis </h2><p>Greenwich Park, SE10</p><p>. </p><p>O. S. coordinates are 539022,177006 - <a href="http://www.streetmap.co.uk/newmap.srf?x=539022&amp;y=177006&amp;arrow">Location on streetmap</a></p></text><text id="tree93" ><h2>Platanus  orientalis Hackney Form</h2><p>Hermon Hill, E18</p><p>Hermon Hill. In churchyard opposite Pelham Road. Southernmost tree in line alongside the main road.. </p><p>O. S. coordinates are 540749,189775 - <a href="http://www.streetmap.co.uk/newmap.srf?x=540749&amp;y=189775&amp;arrow">Location on streetmap</a></p></text><text id="tree13" ><h2>Platanus  Augustine Henry</h2><p>Brookmill Road, SE4</p><p>Opposite pub, outside Brookmill Park. </p><p>O. S. coordinates are 537567,176427 - <a href="http://www.streetmap.co.uk/newmap.srf?x=537567&amp;y=176427&amp;arrow">Location on streetmap</a></p></text><text id="tree29" ><h2>Platanus  Augustine Henry</h2><p>Chiswick Roundabout, W4</p><p>Chiswick roundabout; several trees stand in a close clump in the roundabout at the junction of the A4 and the A406/A205, on the north side of the flyover.. </p><p>O. S. coordinates are 519385,178380 - <a href="http://www.streetmap.co.uk/newmap.srf?x=519385&amp;y=178380&amp;arrow">Location on streetmap</a></p></text><text id="tree129" ><h2>Platanus acerifolia Westminster Form</h2><p>Clapham Common, SW4</p><p>A line of 3 or 4 trees, on the southwest side of the artificial pitches, by the Avenue. . </p><p>O. S. coordinates are 528334,174791 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528334&amp;y=174791&amp;arrow">Location on streetmap</a></p></text><text id="tree130" ><h2>Platanus acerifolia Pyramidalis</h2><p>Clapham Common, SW4</p><p>By Clapham Common South Side (road). Opposite Lessar Ave.</p><p>O. S. coordinates are 528943,174551 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528943&amp;y=174551&amp;arrow">Location on streetmap</a></p></text><text id="tree138" ><h2>Platanus  orientalis Hackney Form</h2><p>Clapham Common, SW4</p><p>Alongside north side of the common. Several trees. . </p><p>O. S. coordinates are 528722,175180 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528722&amp;y=175180&amp;arrow">Location on streetmap</a></p></text><text id="tree128" ><h2>Platanus acerifolia Pyramidalis</h2><p>Clapham Common, SW4</p><p>North side of Clapham Common West Side (road). </p><p>O. S. coordinates are 528073,175075 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528073&amp;y=175075&amp;arrow">Location on streetmap</a></p></text><text id="tree131" ><h2>Platanus  orientalis </h2><p>Clapham Common, SW4</p><p>Beside Long Road, approaching Clapham Common South Side. </p><p>O. S. coordinates are 529241,175209 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529241&amp;y=175209&amp;arrow">Location on streetmap</a></p></text><text id="tree73" ><h2>Platanus  acerifolia </h2><p>Wood Green Common, N22</p><p>. </p><p>O. S. coordinates are 530750,190250 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530750&amp;y=190250&amp;arrow">Location on streetmap</a></p></text><text id="tree75" ><h2>Platanus  Augustine Henry</h2><p>Wood Green Common, N22</p><p>By footpath running from Eastern road across common to Station Road junction with Barr Ave.. </p><p>O. S. coordinates are 530750,190250 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530750&amp;y=190250&amp;arrow">Location on streetmap</a></p></text><text id="tree74" ><h2>Platanus  orientalis </h2><p>Wood Green Common, N22</p><p>. </p><p>O. S. coordinates are 530750,190250 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530750&amp;y=190250&amp;arrow">Location on streetmap</a></p></text><text id="tree89" ><h2>Platanus  orientalis Hackney Form</h2><p>Hackney Downs, E5</p><p>Row of trees alongside roadside edge opposite houses on east side fo Queensdown Road.. </p><p>O. S. coordinates are 534685,185720 - <a href="http://www.streetmap.co.uk/newmap.srf?x=534685&amp;y=185720&amp;arrow">Location on streetmap</a></p></text><text id="tree35" ><h2>Platanus  Augustine Henry</h2><p>Wandle Park, SW19</p><p>Westernmost one of line of planes leading west from north end of Baltic Close.. </p><p>O. S. coordinates are 526661,170417 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526661&amp;y=170417&amp;arrow">Location on streetmap</a></p></text><text id="tree15" ><h2>Platanus  acerifolia </h2><p>Pound Street, SM5</p><p>. </p><p>O. S. coordinates are 527823,164525 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527823&amp;y=164525&amp;arrow">Location on streetmap</a></p></text><text id="tree53" ><h2>Platanus acerifolia London Form</h2><p>Waterlow Park, N8</p><p>Mature specimens to on south facing slope, west of Hornsey Lane.. </p><p>O. S. coordinates are 535500,175475 - <a href="http://www.streetmap.co.uk/newmap.srf?x=535500&amp;y=175475&amp;arrow">Location on streetmap</a></p></text><text id="tree52" ><h2>Platanus acerifolia London Form</h2><p>Waterlow Park, N8</p><p>Mature specimens to west of Hornsey Lane.. </p><p>O. S. coordinates are 528750,187250 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528750&amp;y=187250&amp;arrow">Location on streetmap</a></p></text><text id="tree51" ><h2>Platanus  acerifolia </h2><p>Berkeley Square, W1</p><p>. </p><p>O. S. coordinates are 530326,180115 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530326&amp;y=180115&amp;arrow">Location on streetmap</a></p></text><text id="tree60" ><h2>Platanus orientalis Digitata</h2><p>Rowan Road, SW16</p><p>Opposite 17a and entrance to crematorium.. </p><p>O. S. coordinates are 529250,169500 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529250&amp;y=169500&amp;arrow">Location on streetmap</a></p></text><text id="tree63" ><h2>Platanus orientalis Digitata</h2><p>Rowan Road, SW16</p><p>Outside no. 59 Rowan Road.. </p><p>O. S. coordinates are 529375,169950 - <a href="http://www.streetmap.co.uk/newmap.srf?x=529375&amp;y=169950&amp;arrow">Location on streetmap</a></p></text><text id="tree71" ><h2>Unknown  </h2><p>Victoria Embankment, WC2</p><p>On  Embankment, beside police station. Southernmost tree in row going away from Big Ben.. </p><p>O. S. coordinates are 530270,179744 - <a href="http://www.streetmap.co.uk/newmap.srf?x=530270&amp;y=179744&amp;arrow">Location on streetmap</a></p></text><text id="tree47" ><h2>Platanus  orientalis </h2><p>Hyde Park Corner, SW1</p><p>Northern side of the roundabout. . </p><p>O. S. coordinates are 528395,179844 - <a href="http://www.streetmap.co.uk/newmap.srf?x=528395&amp;y=179844&amp;arrow">Location on streetmap</a></p></text><text id="tree78" ><h2>Platanus  orientalis Hackney Form</h2><p>Kennington Park, SE11</p><p>By entrance to ornamental garden.. </p><p>O. S. coordinates are 531375,177680 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531375&amp;y=177680&amp;arrow">Location on streetmap</a></p></text><text id="tree77" ><h2>Platanus  orientalis </h2><p>Kennington Park, SE11</p><p>Near the lido.. </p><p>O. S. coordinates are 531275,177675 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531275&amp;y=177675&amp;arrow">Location on streetmap</a></p></text><text id="tree32" ><h2>Platanus orientalis Digitata</h2><p>Kensington High Street, W8</p><p>. </p><p>O. S. coordinates are 525525,179585 - <a href="http://www.streetmap.co.uk/newmap.srf?x=525525&amp;y=179585&amp;arrow">Location on streetmap</a></p></text><text id="tree31" ><h2>Platanus  Augustine Henry</h2><p>St. Paul's Open Space, W6</p><p>. </p><p>O. S. coordinates are 524250,178750 - <a href="http://www.streetmap.co.uk/newmap.srf?x=524250&amp;y=178750&amp;arrow">Location on streetmap</a></p></text><text id="tree30" ><h2>Platanus  Augustine Henry</h2><p>St. Paul's Open Space, W6</p><p>. </p><p>O. S. coordinates are 524250,178750 - <a href="http://www.streetmap.co.uk/newmap.srf?x=524250&amp;y=178750&amp;arrow">Location on streetmap</a></p></text><text id="tree39" ><h2>Platanus acerifolia London Form</h2><p>Kenwood House Grounds, NW3</p><p>At the top of the ridge on the south side of the cafeteria by Kenwood House.. </p><p>O. S. coordinates are 527100,187401 - <a href="http://www.streetmap.co.uk/newmap.srf?x=527100&amp;y=187401&amp;arrow">Location on streetmap</a></p></text><text id="tree33" ><h2>Platanus  orientalis </h2><p>St. Marylebone Cemetery, N2</p><p>. </p><p>O. S. coordinates are 525830,189680 - <a href="http://www.streetmap.co.uk/newmap.srf?x=525830&amp;y=189680&amp;arrow">Location on streetmap</a></p></text><text id="tree34" ><h2>Platanus  orientalis </h2><p>St. Marylebone Cemetery, N2</p><p>. </p><p>O. S. coordinates are 525830,189690 - <a href="http://www.streetmap.co.uk/newmap.srf?x=525830&amp;y=189690&amp;arrow">Location on streetmap</a></p></text><text id="tree101" ><h2>Unknown  </h2><p>Crystal Palace Park, SE20</p><p>At south of park, in avenue approaching Penge gate. . </p><p>O. S. coordinates are 534783,170650 - <a href="http://www.streetmap.co.uk/newmap.srf?x=534783&amp;y=170650&amp;arrow">Location on streetmap</a></p></text><text id="tree105" ><h2>Unknown  </h2><p>St. Anns Road, W12</p><p>St. Ann's Road, W12. North side of junction with Queensdale Crescent. . </p><p>O. S. coordinates are 523903,180360 - <a href="http://www.streetmap.co.uk/newmap.srf?x=523903&amp;y=180360&amp;arrow">Location on streetmap</a></p></text><text id="tree114" ><h2>Platanus  Augustine Henry</h2><p>Sussex Gardens, W2</p><p>At junction Sussex Gardens with Edgware Road; south side. . </p><p>O. S. coordinates are 526853,181131 - <a href="http://www.streetmap.co.uk/newmap.srf?x=526853&amp;y=181131&amp;arrow">Location on streetmap</a></p></text><text id="tree132" ><h2>Platanus  Grotesque trunk</h2><p>St. George's Field, SE1</p><p>Near southwest corner of Imperial War Museum. . </p><p>O. S. coordinates are 531355,179073 - <a href="http://www.streetmap.co.uk/newmap.srf?x=531355&amp;y=179073&amp;arrow">Location on streetmap</a></p></text></dataxml></body>
  <dataxml />
  <svg />
</html>