perfect-postcode/analyses/tree_density_methodology.ipynb
2026-05-12 22:13:07 +01:00

30542 lines
1.9 MiB

{
"cells": [
{
"cell_type": "markdown",
"id": "title",
"metadata": {},
"source": [
"# Polygon-intersection tree density prototype\n",
"\n",
"This notebook prototypes the next algorithm: expand each postcode boundary by `N` metres, intersect that expanded polygon with Forest Research Trees Outside Woodland polygons, and sum the actual intersecting canopy area.\n",
"\n",
"The map shows three seeded random postcodes side by side. Each panel shows the original postcode boundary, the expanded postcode boundary, the intersecting foliage polygons, and the resulting percentage."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "imports-config",
"metadata": {
"execution": {
"iopub.execute_input": "2026-05-12T20:47:25.026395Z",
"iopub.status.busy": "2026-05-12T20:47:25.026327Z",
"iopub.status.idle": "2026-05-12T20:47:26.779075Z",
"shell.execute_reply": "2026-05-12T20:47:26.778675Z"
}
},
"outputs": [],
"source": [
"from contextlib import redirect_stdout\n",
"from html import escape\n",
"import io\n",
"from pathlib import Path\n",
"import json\n",
"import math\n",
"import sys\n",
"\n",
"import folium\n",
"import numpy as np\n",
"import polars as pl\n",
"import pyogrio\n",
"import shapely\n",
"from IPython.display import HTML\n",
"from pyproj import Transformer\n",
"from shapely.geometry import mapping, shape\n",
"from shapely.ops import transform as shapely_transform\n",
"\n",
"ROOT = Path.cwd()\n",
"if not (ROOT / \"pipeline\").exists() and (ROOT.parent / \"pipeline\").exists():\n",
" ROOT = ROOT.parent\n",
"if str(ROOT) not in sys.path:\n",
" sys.path.insert(0, str(ROOT))\n",
"\n",
"from pipeline.transform.tree_density import (\n",
" DEFAULT_TOW_TYPES,\n",
" _layers,\n",
" _metric_columns,\n",
" _parse_csv_arg,\n",
" _postcode_points,\n",
" _tow_dataset_path,\n",
" _where_for_tow_types,\n",
")\n",
"\n",
"DATA_DIR = ROOT / \"property-data\"\n",
"TOW_ZIP = DATA_DIR / \"FR_TOW_V1_ALL.zip\"\n",
"EXTRACT_DIR = DATA_DIR / \"fr_tow_v1_all\"\n",
"ARCGIS = DATA_DIR / \"arcgis_data.parquet\"\n",
"POSTCODE_TREE_DENSITY = DATA_DIR / \"tree_density_by_postcode.parquet\"\n",
"POSTCODE_BOUNDARY_UNITS = DATA_DIR / \"postcode_boundaries\" / \"units\"\n",
"OUTPUT_HTML = ROOT / \"analyses\" / \"tree_density_polygon_intersection_map.html\"\n",
"\n",
"RANDOM_SEED = 20260512\n",
"N_POSTCODES = 3\n",
"BOUNDARY_EXPANSION_M = 50\n",
"CANDIDATE_SAMPLE_SIZE = 60\n",
"\n",
"tow_types = _parse_csv_arg(\",\".join(DEFAULT_TOW_TYPES))\n",
"density_col, area_col, count_col, height_col = _metric_columns(50)\n"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "helpers",
"metadata": {
"execution": {
"iopub.execute_input": "2026-05-12T20:47:26.780431Z",
"iopub.status.busy": "2026-05-12T20:47:26.780263Z",
"iopub.status.idle": "2026-05-12T20:47:26.846177Z",
"shell.execute_reply": "2026-05-12T20:47:26.845648Z"
}
},
"outputs": [],
"source": [
"_to_bng = Transformer.from_crs(\"EPSG:4326\", \"EPSG:27700\", always_xy=True)\n",
"_to_wgs84 = Transformer.from_crs(\"EPSG:27700\", \"EPSG:4326\", always_xy=True)\n",
"\n",
"\n",
"def to_bng(geom):\n",
" return shapely_transform(_to_bng.transform, geom)\n",
"\n",
"\n",
"def to_wgs84(geom):\n",
" return shapely_transform(_to_wgs84.transform, geom)\n",
"\n",
"\n",
"def postcode_boundary_wgs84(postcode: str):\n",
" district = postcode.split()[0]\n",
" boundary_path = POSTCODE_BOUNDARY_UNITS / f\"{district}.geojson\"\n",
" mapit_code = postcode.replace(\" \", \"\")\n",
" with boundary_path.open() as f:\n",
" collection = json.load(f)\n",
"\n",
" for feature in collection[\"features\"]:\n",
" props = feature.get(\"properties\", {})\n",
" if props.get(\"postcodes\") == postcode or props.get(\"mapit_code\") == mapit_code:\n",
" return shape(feature[\"geometry\"])\n",
"\n",
" raise ValueError(f\"Postcode boundary not found for {postcode}\")\n",
"\n",
"\n",
"def postcode_boundary_bng(postcode: str):\n",
" geom = to_bng(postcode_boundary_wgs84(postcode))\n",
" if not geom.is_valid:\n",
" geom = shapely.make_valid(geom)\n",
" return geom\n",
"\n",
"\n",
"def intersecting_tow_features(dataset_path: str, layer_names: list[str], target_bng):\n",
" bbox = target_bng.bounds\n",
" rows = []\n",
" where = _where_for_tow_types(tow_types)\n",
"\n",
" for layer in layer_names:\n",
" with pyogrio.open_arrow(\n",
" dataset_path,\n",
" layer=layer,\n",
" columns=[\"Woodland_Type\", \"TOW_Area_M\", \"MEANHT\"],\n",
" where=where,\n",
" bbox=bbox,\n",
" batch_size=4096,\n",
" use_pyarrow=True,\n",
" ) as (_meta, reader):\n",
" for batch in reader:\n",
" names = batch.schema.names\n",
" tow_area = np.asarray(\n",
" batch.column(names.index(\"TOW_Area_M\")).to_numpy(zero_copy_only=False),\n",
" dtype=np.float64,\n",
" )\n",
" mean_height = np.asarray(\n",
" batch.column(names.index(\"MEANHT\")).to_numpy(zero_copy_only=False),\n",
" dtype=np.float64,\n",
" )\n",
" woodland_type = batch.column(names.index(\"Woodland_Type\")).to_pylist()\n",
" geometry = np.asarray(\n",
" batch.column(names.index(\"SHAPE\")).to_numpy(zero_copy_only=False),\n",
" dtype=object,\n",
" )\n",
"\n",
" geoms = shapely.from_wkb(geometry)\n",
" valid = np.isfinite(tow_area) & (tow_area > 0)\n",
" for i in np.flatnonzero(valid):\n",
" geom = geoms[i]\n",
" if geom is None or shapely.is_empty(geom):\n",
" continue\n",
" if not shapely.is_valid(geom):\n",
" geom = shapely.make_valid(geom)\n",
" if not shapely.intersects(geom, target_bng):\n",
" continue\n",
"\n",
" intersection = shapely.intersection(geom, target_bng)\n",
" intersection_area = float(shapely.area(intersection))\n",
" if intersection_area <= 0:\n",
" continue\n",
"\n",
" rows.append(\n",
" {\n",
" \"layer\": layer,\n",
" \"geometry_bng\": geom,\n",
" \"intersection_bng\": intersection,\n",
" \"woodland_type\": woodland_type[i],\n",
" \"tow_area_m2\": float(tow_area[i]),\n",
" \"intersection_area_m2\": intersection_area,\n",
" \"mean_height_m\": None if not np.isfinite(mean_height[i]) else float(mean_height[i]),\n",
" }\n",
" )\n",
" return rows\n",
"\n",
"\n",
"def build_postcode_card(dataset_path: str, layer_names: list[str], postcode: str) -> tuple[str, dict]:\n",
" original_bng = postcode_boundary_bng(postcode)\n",
" expanded_bng = original_bng.buffer(BOUNDARY_EXPANSION_M)\n",
" if not expanded_bng.is_valid:\n",
" expanded_bng = shapely.make_valid(expanded_bng)\n",
"\n",
" features = intersecting_tow_features(dataset_path, layer_names, expanded_bng)\n",
" intersecting_area = sum(feature[\"intersection_area_m2\"] for feature in features)\n",
" expanded_area = float(shapely.area(expanded_bng))\n",
" polygon_density = 0.0 if expanded_area <= 0 else min(intersecting_area / expanded_area * 100, 100)\n",
"\n",
" center_lon, center_lat = to_wgs84(expanded_bng.centroid).coords[0]\n",
" m = folium.Map(\n",
" location=[center_lat, center_lon],\n",
" zoom_start=18,\n",
" tiles=\"CartoDB positron\",\n",
" control_scale=True,\n",
" width=\"100%\",\n",
" height=\"430px\",\n",
" )\n",
"\n",
" folium.GeoJson(\n",
" mapping(to_wgs84(expanded_bng)),\n",
" name=f\"expanded postcode boundary (+{BOUNDARY_EXPANSION_M}m)\",\n",
" style_function=lambda _feature: {\n",
" \"color\": \"#f97316\",\n",
" \"weight\": 3,\n",
" \"fillColor\": \"#fed7aa\",\n",
" \"fillOpacity\": 0.18,\n",
" },\n",
" ).add_to(m)\n",
" folium.GeoJson(\n",
" mapping(to_wgs84(original_bng)),\n",
" name=\"original postcode boundary\",\n",
" style_function=lambda _feature: {\n",
" \"color\": \"#2563eb\",\n",
" \"weight\": 3,\n",
" \"fillColor\": \"#93c5fd\",\n",
" \"fillOpacity\": 0.12,\n",
" },\n",
" ).add_to(m)\n",
"\n",
" foliage_group = folium.FeatureGroup(name=\"foliage boundary\", show=True)\n",
" intersection_group = folium.FeatureGroup(name=\"intersection area\", show=True)\n",
" for index, feature in enumerate(features, start=1):\n",
" popup_html = (\n",
" f\"<b>TOW polygon {index}</b><br>\"\n",
" f\"Type: {feature['woodland_type']}<br>\"\n",
" f\"Full TOW area: {feature['tow_area_m2']:.1f} sqm<br>\"\n",
" f\"Intersecting area: {feature['intersection_area_m2']:.1f} sqm\"\n",
" )\n",
" folium.GeoJson(\n",
" mapping(to_wgs84(feature[\"geometry_bng\"])),\n",
" name=\"foliage boundary\",\n",
" style_function=lambda _feature: {\n",
" \"color\": \"#166534\",\n",
" \"weight\": 1,\n",
" \"fillColor\": \"#22c55e\",\n",
" \"fillOpacity\": 0.16,\n",
" },\n",
" tooltip=\"foliage boundary\",\n",
" popup=folium.Popup(popup_html, max_width=300),\n",
" ).add_to(foliage_group)\n",
" folium.GeoJson(\n",
" mapping(to_wgs84(feature[\"intersection_bng\"])),\n",
" name=\"intersection area\",\n",
" style_function=lambda _feature: {\n",
" \"color\": \"#14532d\",\n",
" \"weight\": 2,\n",
" \"fillColor\": \"#16a34a\",\n",
" \"fillOpacity\": 0.58,\n",
" },\n",
" tooltip=\"counted intersection area\",\n",
" popup=folium.Popup(popup_html, max_width=300),\n",
" ).add_to(intersection_group)\n",
"\n",
" foliage_group.add_to(m)\n",
" intersection_group.add_to(m)\n",
" folium.LayerControl(collapsed=True).add_to(m)\n",
"\n",
" title = escape(\n",
" f\"{postcode}: {polygon_density:.1f}% | \"\n",
" f\"intersection {intersecting_area:.0f} sqm | +{BOUNDARY_EXPANSION_M}m\"\n",
" )\n",
" iframe = escape(m.get_root().render(), quote=True)\n",
" card = f\"\"\"\n",
" <section class='map-card'>\n",
" <h2>{title}</h2>\n",
" <iframe srcdoc=\"{iframe}\" title=\"{escape(postcode)} polygon intersection map\"></iframe>\n",
" </section>\n",
" \"\"\"\n",
" return card, {\n",
" \"postcode\": postcode,\n",
" \"polygon_density_pct\": round(polygon_density, 1),\n",
" \"intersecting_area_sqm\": round(intersecting_area, 1),\n",
" \"expanded_boundary_area_sqm\": round(expanded_area, 1),\n",
" \"intersecting_tow_features\": len(features),\n",
" }\n",
"\n",
"\n",
"def side_by_side_document(cards: list[str]) -> str:\n",
" return f\"\"\"\n",
" <!doctype html>\n",
" <html>\n",
" <head>\n",
" <meta charset='utf-8'>\n",
" <meta name='viewport' content='width=device-width, initial-scale=1'>\n",
" <title>Polygon-intersection tree density prototype</title>\n",
" <style>\n",
" body {{ margin: 0; font-family: Inter, system-ui, sans-serif; background: #f8fafc; color: #111827; }}\n",
" main {{ padding: 18px; }}\n",
" .maps {{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }}\n",
" .map-card {{ background: white; border: 1px solid #d1d5db; border-radius: 8px; overflow: hidden; }}\n",
" .map-card h2 {{ margin: 0; padding: 10px 12px; font-size: 15px; font-weight: 700; line-height: 1.25; }}\n",
" iframe {{ display: block; width: 100%; height: 470px; border: 0; }}\n",
" @media (max-width: 1100px) {{ .maps {{ grid-template-columns: 1fr; }} iframe {{ height: 520px; }} }}\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <main><div class='maps'>{''.join(cards)}</div></main>\n",
" </body>\n",
" </html>\n",
" \"\"\"\n"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "sample-and-render",
"metadata": {
"execution": {
"iopub.execute_input": "2026-05-12T20:47:26.847213Z",
"iopub.status.busy": "2026-05-12T20:47:26.847116Z",
"iopub.status.idle": "2026-05-12T20:47:28.310447Z",
"shell.execute_reply": "2026-05-12T20:47:28.310171Z"
}
},
"outputs": [
{
"data": {
"text/html": [
"<div><style>\n",
".dataframe > thead > tr,\n",
".dataframe > tbody > tr {\n",
" text-align: right;\n",
" white-space: pre-wrap;\n",
"}\n",
"</style>\n",
"<small>shape: (3, 5)</small><table border=\"1\" class=\"dataframe\"><thead><tr><th>postcode</th><th>polygon_density_pct</th><th>intersecting_area_sqm</th><th>expanded_boundary_area_sqm</th><th>intersecting_tow_features</th></tr><tr><td>str</td><td>f64</td><td>f64</td><td>f64</td><td>i64</td></tr></thead><tbody><tr><td>&quot;B61 7EF&quot;</td><td>3.7</td><td>20421.5</td><td>554408.7</td><td>182</td></tr><tr><td>&quot;B94 6HR&quot;</td><td>4.3</td><td>2281.3</td><td>52697.1</td><td>33</td></tr><tr><td>&quot;BB1 9JJ&quot;</td><td>11.5</td><td>2888.4</td><td>25147.6</td><td>39</td></tr></tbody></table></div>"
],
"text/plain": [
"shape: (3, 5)\n",
"┌──────────┬─────────────────────┬─────────────────────┬─────────────────────┬─────────────────────┐\n",
"│ postcode ┆ polygon_density_pct ┆ intersecting_area_s ┆ expanded_boundary_a ┆ intersecting_tow_fe │\n",
"│ --- ┆ --- ┆ qm ┆ rea_sqm ┆ atures │\n",
"│ str ┆ f64 ┆ --- ┆ --- ┆ --- │\n",
"│ ┆ ┆ f64 ┆ f64 ┆ i64 │\n",
"╞══════════╪═════════════════════╪═════════════════════╪═════════════════════╪═════════════════════╡\n",
"│ B61 7EF ┆ 3.7 ┆ 20421.5 ┆ 554408.7 ┆ 182 │\n",
"│ B94 6HR ┆ 4.3 ┆ 2281.3 ┆ 52697.1 ┆ 33 │\n",
"│ BB1 9JJ ┆ 11.5 ┆ 2888.4 ┆ 25147.6 ┆ 39 │\n",
"└──────────┴─────────────────────┴─────────────────────┴─────────────────────┴─────────────────────┘"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"\n",
" <!doctype html>\n",
" <html>\n",
" <head>\n",
" <meta charset='utf-8'>\n",
" <meta name='viewport' content='width=device-width, initial-scale=1'>\n",
" <title>Polygon-intersection tree density prototype</title>\n",
" <style>\n",
" body { margin: 0; font-family: Inter, system-ui, sans-serif; background: #f8fafc; color: #111827; }\n",
" main { padding: 18px; }\n",
" .maps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }\n",
" .map-card { background: white; border: 1px solid #d1d5db; border-radius: 8px; overflow: hidden; }\n",
" .map-card h2 { margin: 0; padding: 10px 12px; font-size: 15px; font-weight: 700; line-height: 1.25; }\n",
" iframe { display: block; width: 100%; height: 470px; border: 0; }\n",
" @media (max-width: 1100px) { .maps { grid-template-columns: 1fr; } iframe { height: 520px; } }\n",
" </style>\n",
" </head>\n",
" <body>\n",
" <main><div class='maps'>\n",
" <section class='map-card'>\n",
" <h2>B61 7EF: 3.7% | intersection 20422 sqm | +50m</h2>\n",
" <iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
" \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_dc31576c89db5e6cdebcc198f6113379 {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 430.0px;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" .leaflet-container { font-size: 1rem; }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;style&gt;html, body {\n",
" width: 100%;\n",
" height: 100%;\n",
" margin: 0;\n",
" padding: 0;\n",
" }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;style&gt;#map {\n",
" position:absolute;\n",
" top:0;\n",
" bottom:0;\n",
" right:0;\n",
" left:0;\n",
" }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
"\n",
" \n",
"&lt;/head&gt;\n",
"&lt;body&gt;\n",
" \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_dc31576c89db5e6cdebcc198f6113379&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt;\n",
" \n",
" \n",
" var map_dc31576c89db5e6cdebcc198f6113379 = L.map(\n",
" &quot;map_dc31576c89db5e6cdebcc198f6113379&quot;,\n",
" {\n",
" center: [52.3258888849093, -2.0846471149434342],\n",
" crs: L.CRS.EPSG3857,\n",
" ...{\n",
" &quot;zoom&quot;: 18,\n",
" &quot;zoomControl&quot;: true,\n",
" &quot;preferCanvas&quot;: false,\n",
"}\n",
"\n",
" }\n",
" );\n",
" L.control.scale().addTo(map_dc31576c89db5e6cdebcc198f6113379);\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_5c6177f27aa5b83878aff6a7fd53ab5c = L.tileLayer(\n",
" &quot;https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png&quot;,\n",
" {\n",
" &quot;minZoom&quot;: 0,\n",
" &quot;maxZoom&quot;: 20,\n",
" &quot;maxNativeZoom&quot;: 20,\n",
" &quot;noWrap&quot;: false,\n",
" &quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;https://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\&quot;https://carto.com/attributions\\&quot;\\u003eCARTO\\u003c/a\\u003e&quot;,\n",
" &quot;subdomains&quot;: &quot;abcd&quot;,\n",
" &quot;detectRetina&quot;: false,\n",
" &quot;tms&quot;: false,\n",
" &quot;opacity&quot;: 1,\n",
"}\n",
"\n",
" );\n",
" \n",
" \n",
" tile_layer_5c6177f27aa5b83878aff6a7fd53ab5c.addTo(map_dc31576c89db5e6cdebcc198f6113379);\n",
" \n",
" \n",
" function geo_json_5f605b1820c06b210a64198f478f14be_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#f97316&quot;, &quot;fillColor&quot;: &quot;#fed7aa&quot;, &quot;fillOpacity&quot;: 0.18, &quot;weight&quot;: 3};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5f605b1820c06b210a64198f478f14be_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5f605b1820c06b210a64198f478f14be = L.geoJson(null, {\n",
" onEachFeature: geo_json_5f605b1820c06b210a64198f478f14be_onEachFeature,\n",
" \n",
" style: geo_json_5f605b1820c06b210a64198f478f14be_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5f605b1820c06b210a64198f478f14be_add (data) {\n",
" geo_json_5f605b1820c06b210a64198f478f14be\n",
" .addData(data);\n",
" }\n",
" geo_json_5f605b1820c06b210a64198f478f14be_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0922858966220756, 52.32330705781965], [-2.0922955536822405, 52.32335352449349], [-2.0922972666598016, 52.3234003546602], [-2.0922910169283813, 52.32344703978946], [-2.0922768723292853, 52.32349307292427], [-2.0922549864358952, 52.323537954186236], [-2.0922255968870105, 52.3235811962037], [-2.0921890228072355, 52.32362232940442], [-2.0921456613423626, 52.323660907114906], [-2.0920716616599258, 52.32371990747637], [-2.092007096742906, 52.32376484251768], [-2.0909050966548186, 52.3244358473052], [-2.090896202992406, 52.32444117148784], [-2.0904889219882987, 52.324680888116944], [-2.090532783592186, 52.32471367110706], [-2.090573235832529, 52.32475092208754], [-2.090607443720673, 52.32479045262878], [-2.0906350683150645, 52.32483187107055], [-2.0906558358976044, 52.32487476704663], [-2.0906695406862403, 52.324918715550396], [-2.0906760468745738, 52.324963281145735], [-2.090675289978211, 52.32500802228114], [-2.0906672774745325, 52.32505249566455], [-2.090652088729475, 52.32509626065547], [-2.090629874212013, 52.32513888363082], [-2.0906008540041223, 52.32517994228141], [-2.090565315620932, 52.32521902979625], [-2.0905236111626277, 52.32525575889341], [-2.0904761538263377, 52.32528976565743], [-2.0897453277604727, 52.32576352596102], [-2.0887864946386525, 52.326443027786496], [-2.0881544287225275, 52.326986536249855], [-2.0880469027663495, 52.327107888923194], [-2.0876107236878125, 52.32768490837741], [-2.0875807425347044, 52.32772035171131], [-2.0868806401547966, 52.32846505268089], [-2.0866942642748514, 52.3288138517174], [-2.0866701123737585, 52.32885283513725], [-2.086640168347185, 52.328890279704396], [-2.0866094397843153, 52.32892109921973], [-2.086589389693155, 52.32895842429706], [-2.086461333702026, 52.329344414647146], [-2.0862477609316286, 52.330366100619415], [-2.0862375268041666, 52.33040287291094], [-2.086222351182704, 52.3304389987156], [-2.086186352233799, 52.33051199892761], [-2.0861553055595508, 52.33056340237525], [-2.086114277980768, 52.33061210878943], [-2.085793281009026, 52.33094211048785], [-2.085754302327434, 52.33097812490122], [-2.0857098590350884, 52.3310116799368], [-2.0856603618417315, 52.33104246549653], [-2.085606268165488, 52.3310701970758], [-2.085548077905746, 52.331094618392854], [-2.085486328823298, 52.33111550375735], [-2.0854215915704786, 52.3311326601563], [-2.085354464417203, 52.33114592903786], [-2.0852855677216753, 52.33115518777681], [-2.0847075621119004, 52.3312151883744], [-2.084636297342365, 52.33122040474697], [-2.084564541620183, 52.33122133060892], [-2.0844929815398046, 52.33121795710117], [-2.084422301823521, 52.33121031650303], [-2.084353178769107, 52.33119848192356], [-2.0842862737781167, 52.331182566601704], [-2.084222227026781, 52.331162722822874], [-2.084188302357922, 52.33114951581816], [-2.0840600326417, 52.33121700503406], [-2.0840077956395704, 52.331242066903236], [-2.08395207671689, 52.33126413538755], [-2.083893331494822, 52.33128303002809], [-2.0838320403432147, 52.331298596319044], [-2.0837687044522943, 52.33131070697104], [-2.083703841734062, 52.3313192629523], [-2.083451839286962, 52.33134526321124], [-2.0833788114394025, 52.331350508910916], [-2.083305293282451, 52.331351250505], [-2.083232023123247, 52.33134748054601], [-2.083159736778193, 52.33133923689384], [-2.083089160182834, 52.33132660233537], [-2.08302100210104, 52.33130970375316], [-2.0829559470066803, 52.33128871085105], [-2.0828946482093595, 52.33126383444976], [-2.082837721293233, 52.33123532436962], [-2.0827857379348313, 52.33120346692152], [-2.082739220161986, 52.33116858203145], [-2.0826986351115186, 52.33113102002744], [-2.082664390338329, 52.33109115812134], [-2.082636829722995, 52.3310493966204], [-2.0822198398357417, 52.33031339418764], [-2.0822006340657637, 52.33027367282626], [-2.08218747889384, 52.33023303690146], [-2.082030000860862, 52.32959335170724], [-2.080339388392113, 52.327785451279965], [-2.080307450367951, 52.327747157901285], [-2.0802816310179617, 52.3277071698924], [-2.080262166632088, 52.32766585323602], [-2.0802492353360345, 52.32762358607401], [-2.0802429554616153, 52.327580755246515], [-2.080236956913503, 52.327492755208915], [-2.0802372696720712, 52.32745110933588], [-2.0802438718711365, 52.327409659935114], [-2.0802509397021844, 52.32738713908913], [-2.078551784384681, 52.326221411629575], [-2.0785073229094895, 52.32618777887479], [-2.07846834681845, 52.326151682065124], [-2.078435217448395, 52.326113455857026], [-2.078408241928273, 52.32607345464803], [-2.078387670332183, 52.32603204929071], [-2.0783736933614776, 52.3259896236546], [-2.078366440577392, 52.32594657106711], [-2.078365979200567, 52.32590329066695], [-2.0783723134885697, 52.325860183703746], [-2.0783853846971536, 52.32581764981802], [-2.0784050716255975, 52.32577608333622], [-2.07843119174103, 52.32573586961505], [-2.0784635028712977, 52.32569738146894], [-2.0785017054506616, 52.32566097571383], [-2.078545445297474, 52.325626989859444], [-2.0785943168980827, 52.325595738980354], [-2.0798083160021332, 52.32489074412665], [-2.079848007254468, 52.32486930484345], [-2.0800890066360322, 52.32474830578494], [-2.080140924487821, 52.324724508758365], [-2.080689286960425, 52.32449559551328], [-2.0789495720641287, 52.32277692436903], [-2.078914478447967, 52.322738096113504], [-2.078885805274576, 52.32269733642498], [-2.0788638320878587, 52.32265504270827], [-2.0788487731052183, 52.32261162732365], [-2.078840775129656, 52.322567513566426], [-2.0788399161192253, 52.32252313153962], [-2.0788462044277627, 52.32247891396068], [-2.078859578724277, 52.32243529194232], [-2.0788799085917264, 52.32239269078944], [-2.0789069957993425, 52.32235152585261], [-2.0789405762360533, 52.32231219847845], [-2.078980322486106, 52.32227509209681], [-2.079025847021802, 52.32224056848266], [-2.0790767059821516, 52.32220896422902], [-2.079680705284639, 52.321868966747104], [-2.0797360237793256, 52.3218407638993], [-2.079795585582749, 52.32181601793236], [-2.0798588175377892, 52.32179496697144], [-2.079925111173007, 52.3217778135852], [-2.0799938285575412, 52.321764722836534], [-2.080064308439376, 52.321755820694456], [-2.0801358726079258, 52.32175119282202], [-2.080207832419731, 52.321750883752024], [-2.0802794954245116, 52.321754896458565], [-2.080350172027822, 52.32176319232837], [-2.080419182126257, 52.321775691532444], [-2.0804858616513493, 52.32179227379406], [-2.0855334401707357, 52.32322788281116], [-2.0865317833870076, 52.32285982893586], [-2.086594222846879, 52.32283925874104], [-2.0866596110265045, 52.32282247752803], [-2.086727337306862, 52.32280964200528], [-2.0867967692368645, 52.32280087203496], [-2.0868672584389363, 52.32279624951378], [-2.0869381466632606, 52.32279581760822], [-2.0870087719341726, 52.32279958035154], [-2.087078474731318, 52.32280750260609], [-2.0871466041479225, 52.32281951039142], [-2.0871613535601727, 52.32282308614966], [-2.0872340853964446, 52.32280744479231], [-2.087414002435217, 52.32275379987387], [-2.0874737432053925, 52.32273795537734], [-2.087535541029093, 52.3227254183643], [-2.0875989093062186, 52.32271628755169], [-2.087663349071945, 52.32271063483585], [-2.0879793459163833, 52.32269163502741], [-2.0880509885213177, 52.32268948633956], [-2.0881369876498823, 52.32268948633996], [-2.088210007258918, 52.32269171862842], [-2.0882823016399135, 52.32269839337513], [-2.088353152762945, 52.322709444286296], [-2.088421856931292, 52.32272476160398], [-2.088487731770013, 52.32274419319592], [-2.088550123002846, 52.322767546066544], [-2.0886000498351067, 52.32279070920784], [-2.0888453302336494, 52.322769553470785], [-2.0890657328919735, 52.322694294092784], [-2.0893391745614958, 52.32257983051764], [-2.0893892856591125, 52.32256062092167], [-2.0894417580068465, 52.32254394579018], [-2.089650756511458, 52.32248394633722], [-2.0897181044954993, 52.32246705433367], [-2.0903430992681513, 52.3223320556164], [-2.090416587265147, 52.32231878130357], [-2.090491933836695, 52.322310275820264], [-2.090568317171438, 52.32230663193642], [-2.090644904150982, 52.322307889396136], [-2.0907208594359776, 52.32231403448418], [-2.0907953545763878, 52.32232500017563], [-2.090867577046667, 52.32234066686686], [-2.0910181129720145, 52.32237885157824], [-2.0912712650910468, 52.32235341210347], [-2.0913420505530484, 52.32234844709786], [-2.0914132881863017, 52.3223477131211], [-2.0914843060410058, 52.32235121709636], [-2.0915544342402415, 52.322358925972374], [-2.091623011298022, 52.322370767035004], [-2.0916893903582436, 52.322386628593165], [-2.0917529452956916, 52.32240636103214], [-2.0918130766215897, 52.32242977822484], [-2.0918692171380013, 52.322456659287226], [-2.0919208372877653, 52.322486750661696], [-2.0919674501495202, 52.322519768508634], [-2.092008616030695, 52.322555401383454], [-2.0920439466151444, 52.32259331317438], [-2.0920731086263107, 52.32263314627247], [-2.092095826971351, 52.32267452494489], [-2.0921118873365336, 52.32271705887867], [-2.0922858966220756, 52.32330705781965]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5f605b1820c06b210a64198f478f14be.addTo(map_dc31576c89db5e6cdebcc198f6113379);\n",
" \n",
" \n",
" function geo_json_75efb32b311f465ce8dc20ad0cf461c3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#2563eb&quot;, &quot;fillColor&quot;: &quot;#93c5fd&quot;, &quot;fillOpacity&quot;: 0.12, &quot;weight&quot;: 3};\n",
" }\n",
" }\n",
"\n",
" function geo_json_75efb32b311f465ce8dc20ad0cf461c3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_75efb32b311f465ce8dc20ad0cf461c3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_75efb32b311f465ce8dc20ad0cf461c3_onEachFeature,\n",
" \n",
" style: geo_json_75efb32b311f465ce8dc20ad0cf461c3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_75efb32b311f465ce8dc20ad0cf461c3_add (data) {\n",
" geo_json_75efb32b311f465ce8dc20ad0cf461c3\n",
" .addData(data);\n",
" }\n",
" geo_json_75efb32b311f465ce8dc20ad0cf461c3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.091563988084623, 52.32338699605585], [-2.091489988084549, 52.32344599605588], [-2.0903879880835583, 52.32411699605645], [-2.0893209880826076, 52.32474499605694], [-2.089309988082583, 52.324782996056975], [-2.0893439880825904, 52.32480999605701], [-2.0899429880828695, 52.324980996057164], [-2.089200988082187, 52.32546199605757], [-2.088208988081246, 52.32616499605813], [-2.0875309880805544, 52.32674799605863], [-2.0873909880803927, 52.32690599605876], [-2.0869449880798374, 52.32749599605924], [-2.0862069880790113, 52.32828099605989], [-2.0859969880786924, 52.32867399606023], [-2.0859439880786375, 52.32872199606028], [-2.0858789880785387, 52.328842996060374], [-2.085736988078246, 52.329270996060735], [-2.0855199880776096, 52.33030899606162], [-2.0854839880775535, 52.33038199606168], [-2.0851629880771996, 52.33071199606195], [-2.084584988076821, 52.330771996062005], [-2.084658988077047, 52.330397996061684], [-2.084634988077049, 52.33036399606166], [-2.08457598807702, 52.330352996061634], [-2.083581988076164, 52.33087599606206], [-2.083329988076, 52.33090199606207], [-2.0829129880761044, 52.33016599606143], [-2.0827349880763477, 52.32944299606083], [-2.080975988076197, 52.327561996059174], [-2.0809699880762365, 52.32747399605912], [-2.0811279880763878, 52.327358996059026], [-2.0811279880764095, 52.32731399605899], [-2.0790989880758595, 52.32592199605777], [-2.080312988076934, 52.32521699605718], [-2.0805539880771375, 52.32509599605709], [-2.0814019880778245, 52.32474199605681], [-2.0816249880780098, 52.32463499605672], [-2.081646988078036, 52.32460799605668], [-2.0816359880780437, 52.32457799605667], [-2.0795729880777873, 52.322539996054886], [-2.0801769880783176, 52.32219999605461], [-2.0855599880808264, 52.32373099605602], [-2.08560798808086, 52.32372499605602], [-2.0869099880818784, 52.32324499605562], [-2.086993988081897, 52.32331099605568], [-2.087051988081926, 52.32332299605571], [-2.087516988082256, 52.323222996055605], [-2.0877349880824188, 52.32315799605559], [-2.08805098808262, 52.323138996055555], [-2.088136988082671, 52.32313899605556], [-2.088179988082684, 52.32316599605559], [-2.0882289880826717, 52.32325399605567], [-2.088282988082695, 52.32327199605568], [-2.089082988083213, 52.32320299605565], [-2.0894519880834967, 52.32307699605553], [-2.089752988083739, 52.32295099605545], [-2.089961988083896, 52.32289099605539], [-2.0905869880843384, 52.32275599605529], [-2.0907919880844377, 52.32280799605533], [-2.0909819880845384, 52.322837996055355], [-2.091389988084805, 52.322796996055345], [-2.091563988084623, 52.32338699605585]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_75efb32b311f465ce8dc20ad0cf461c3.addTo(map_dc31576c89db5e6cdebcc198f6113379);\n",
" \n",
" \n",
" var feature_group_27f49a14cab78c4e3bd69076ec128036 = L.featureGroup(\n",
" {\n",
"}\n",
" );\n",
" \n",
" \n",
" function geo_json_9963df0623431f7d2a6c053c32ac9842_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9963df0623431f7d2a6c053c32ac9842_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9963df0623431f7d2a6c053c32ac9842 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9963df0623431f7d2a6c053c32ac9842_onEachFeature,\n",
" \n",
" style: geo_json_9963df0623431f7d2a6c053c32ac9842_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9963df0623431f7d2a6c053c32ac9842_add (data) {\n",
" geo_json_9963df0623431f7d2a6c053c32ac9842\n",
" .addData(data);\n",
" }\n",
" geo_json_9963df0623431f7d2a6c053c32ac9842_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.090935263239077, 52.32287285577811], [-2.090861211229856, 52.32287283830153], [-2.090828671058444, 52.32284741572967], [-2.0908275472165148, 52.322846712663434], [-2.0908258366193535, 52.32284607118453], [-2.0907862095579763, 52.32283545913294], [-2.0908024825729994, 52.32281422971423], [-2.090920948278832, 52.32281381289376], [-2.0909396392811543, 52.32282476291325], [-2.090935263239077, 52.32287285577811]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9963df0623431f7d2a6c053c32ac9842.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_53aa998f2ff6208c62d3506819dfc8fd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_598757af3c460564f74409bf510074e1 = $(`&lt;div id=&quot;html_598757af3c460564f74409bf510074e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 1&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 52.0 sqm&lt;br&gt;Intersecting area: 52.2 sqm&lt;/div&gt;`)[0];\n",
" popup_53aa998f2ff6208c62d3506819dfc8fd.setContent(html_598757af3c460564f74409bf510074e1);\n",
" \n",
" \n",
"\n",
" geo_json_9963df0623431f7d2a6c053c32ac9842.bindPopup(popup_53aa998f2ff6208c62d3506819dfc8fd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9963df0623431f7d2a6c053c32ac9842.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_b09adbe37a353dae66290f2946342f3a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b09adbe37a353dae66290f2946342f3a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b09adbe37a353dae66290f2946342f3a = L.geoJson(null, {\n",
" onEachFeature: geo_json_b09adbe37a353dae66290f2946342f3a_onEachFeature,\n",
" \n",
" style: geo_json_b09adbe37a353dae66290f2946342f3a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b09adbe37a353dae66290f2946342f3a_add (data) {\n",
" geo_json_b09adbe37a353dae66290f2946342f3a\n",
" .addData(data);\n",
" }\n",
" geo_json_b09adbe37a353dae66290f2946342f3a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.089511745233693, 52.32255037883678], [-2.089465580056079, 52.32254074674259], [-2.0894643199221816, 52.322519798734206], [-2.0894911005334342, 52.32250903240251], [-2.0895294939885822, 52.32250196299987], [-2.0895431062366128, 52.322540988109054], [-2.089511745233693, 52.32255037883678]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b09adbe37a353dae66290f2946342f3a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8969e6c0d033f07876e5de19582e5a6f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bf88c5c8c9af5d896f293cce754ac571 = $(`&lt;div id=&quot;html_bf88c5c8c9af5d896f293cce754ac571&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 2&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 20.0 sqm&lt;br&gt;Intersecting area: 10.7 sqm&lt;/div&gt;`)[0];\n",
" popup_8969e6c0d033f07876e5de19582e5a6f.setContent(html_bf88c5c8c9af5d896f293cce754ac571);\n",
" \n",
" \n",
"\n",
" geo_json_b09adbe37a353dae66290f2946342f3a.bindPopup(popup_8969e6c0d033f07876e5de19582e5a6f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b09adbe37a353dae66290f2946342f3a.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_cfa605150a1cf5c554ee6be187b8cc53_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cfa605150a1cf5c554ee6be187b8cc53_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cfa605150a1cf5c554ee6be187b8cc53 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cfa605150a1cf5c554ee6be187b8cc53_onEachFeature,\n",
" \n",
" style: geo_json_cfa605150a1cf5c554ee6be187b8cc53_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cfa605150a1cf5c554ee6be187b8cc53_add (data) {\n",
" geo_json_cfa605150a1cf5c554ee6be187b8cc53\n",
" .addData(data);\n",
" }\n",
" geo_json_cfa605150a1cf5c554ee6be187b8cc53_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.091511844917208, 52.3228529131331], [-2.0914365091682967, 52.3229082604699], [-2.0913161023552114, 52.32291731889505], [-2.091283885859879, 52.32288892044678], [-2.0912839316910645, 52.32285141149167], [-2.091384581547869, 52.32280418524386], [-2.0914199843696877, 52.32279547593619], [-2.0914809639508465, 52.32280487730034], [-2.091511785319676, 52.322824107678386], [-2.091511844917208, 52.3228529131331]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cfa605150a1cf5c554ee6be187b8cc53.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d4b3621383b5e19501bf6b0f4222add4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e9def34501d899e2fcb035063dfdcd40 = $(`&lt;div id=&quot;html_e9def34501d899e2fcb035063dfdcd40&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 3&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 149.0 sqm&lt;br&gt;Intersecting area: 149.5 sqm&lt;/div&gt;`)[0];\n",
" popup_d4b3621383b5e19501bf6b0f4222add4.setContent(html_e9def34501d899e2fcb035063dfdcd40);\n",
" \n",
" \n",
"\n",
" geo_json_cfa605150a1cf5c554ee6be187b8cc53.bindPopup(popup_d4b3621383b5e19501bf6b0f4222add4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cfa605150a1cf5c554ee6be187b8cc53.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_a7fab9b1b3ebcd26f2d816a1831adca1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a7fab9b1b3ebcd26f2d816a1831adca1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a7fab9b1b3ebcd26f2d816a1831adca1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a7fab9b1b3ebcd26f2d816a1831adca1_onEachFeature,\n",
" \n",
" style: geo_json_a7fab9b1b3ebcd26f2d816a1831adca1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a7fab9b1b3ebcd26f2d816a1831adca1_add (data) {\n",
" geo_json_a7fab9b1b3ebcd26f2d816a1831adca1\n",
" .addData(data);\n",
" }\n",
" geo_json_a7fab9b1b3ebcd26f2d816a1831adca1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0914490421631347, 52.32306095470133], [-2.091445158004022, 52.323049359461585], [-2.0914322129693477, 52.323022401602884], [-2.091465375402276, 52.32302071446884], [-2.091481833261836, 52.323059186044794], [-2.0914490421631347, 52.32306095470133]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a7fab9b1b3ebcd26f2d816a1831adca1.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_59d6a5efe498b0a0e200a1629ec10847 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a7c1124b1c1fd08630ae78bd31dd11d8 = $(`&lt;div id=&quot;html_a7c1124b1c1fd08630ae78bd31dd11d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 4&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.7 sqm&lt;/div&gt;`)[0];\n",
" popup_59d6a5efe498b0a0e200a1629ec10847.setContent(html_a7c1124b1c1fd08630ae78bd31dd11d8);\n",
" \n",
" \n",
"\n",
" geo_json_a7fab9b1b3ebcd26f2d816a1831adca1.bindPopup(popup_59d6a5efe498b0a0e200a1629ec10847)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a7fab9b1b3ebcd26f2d816a1831adca1.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c72e1cc05090ba77ab1e106f3069e92c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c72e1cc05090ba77ab1e106f3069e92c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c72e1cc05090ba77ab1e106f3069e92c = L.geoJson(null, {\n",
" onEachFeature: geo_json_c72e1cc05090ba77ab1e106f3069e92c_onEachFeature,\n",
" \n",
" style: geo_json_c72e1cc05090ba77ab1e106f3069e92c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c72e1cc05090ba77ab1e106f3069e92c_add (data) {\n",
" geo_json_c72e1cc05090ba77ab1e106f3069e92c\n",
" .addData(data);\n",
" }\n",
" geo_json_c72e1cc05090ba77ab1e106f3069e92c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0899145341475536, 52.32503083679151], [-2.089868209937682, 52.32502946157963], [-2.0898934181746087, 52.325007430745025], [-2.089910855166873, 52.32499086917876], [-2.0899303987431685, 52.324992156938706], [-2.0899145341475536, 52.32503083679151]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c72e1cc05090ba77ab1e106f3069e92c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_80b3eda3adef96e71cec6fc8af3442e0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_99b8605d027a2207806339efa5423baf = $(`&lt;div id=&quot;html_99b8605d027a2207806339efa5423baf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 5&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.8 sqm&lt;/div&gt;`)[0];\n",
" popup_80b3eda3adef96e71cec6fc8af3442e0.setContent(html_99b8605d027a2207806339efa5423baf);\n",
" \n",
" \n",
"\n",
" geo_json_c72e1cc05090ba77ab1e106f3069e92c.bindPopup(popup_80b3eda3adef96e71cec6fc8af3442e0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c72e1cc05090ba77ab1e106f3069e92c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_6434ef9764105dee5cf6371df0df5a4c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6434ef9764105dee5cf6371df0df5a4c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6434ef9764105dee5cf6371df0df5a4c = L.geoJson(null, {\n",
" onEachFeature: geo_json_6434ef9764105dee5cf6371df0df5a4c_onEachFeature,\n",
" \n",
" style: geo_json_6434ef9764105dee5cf6371df0df5a4c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6434ef9764105dee5cf6371df0df5a4c_add (data) {\n",
" geo_json_6434ef9764105dee5cf6371df0df5a4c\n",
" .addData(data);\n",
" }\n",
" geo_json_6434ef9764105dee5cf6371df0df5a4c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0917751642184084, 52.323995618090876], [-2.0917264061164347, 52.32397546947166], [-2.0917549305427534, 52.32389983697966], [-2.091771976874346, 52.3238836395441], [-2.0917922713415167, 52.32388497586017], [-2.0917933987654167, 52.32398423847179], [-2.0917751642184084, 52.323995618090876]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6434ef9764105dee5cf6371df0df5a4c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1aca8352355b02a0efbfe40aaa162dac = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2220f85620363d496ad54f4b23202a7c = $(`&lt;div id=&quot;html_2220f85620363d496ad54f4b23202a7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 6&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 39.0 sqm&lt;br&gt;Intersecting area: 6.1 sqm&lt;/div&gt;`)[0];\n",
" popup_1aca8352355b02a0efbfe40aaa162dac.setContent(html_2220f85620363d496ad54f4b23202a7c);\n",
" \n",
" \n",
"\n",
" geo_json_6434ef9764105dee5cf6371df0df5a4c.bindPopup(popup_1aca8352355b02a0efbfe40aaa162dac)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6434ef9764105dee5cf6371df0df5a4c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_f95b2829034f7c39e7eff607aa7af83d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f95b2829034f7c39e7eff607aa7af83d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f95b2829034f7c39e7eff607aa7af83d = L.geoJson(null, {\n",
" onEachFeature: geo_json_f95b2829034f7c39e7eff607aa7af83d_onEachFeature,\n",
" \n",
" style: geo_json_f95b2829034f7c39e7eff607aa7af83d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f95b2829034f7c39e7eff607aa7af83d_add (data) {\n",
" geo_json_f95b2829034f7c39e7eff607aa7af83d\n",
" .addData(data);\n",
" }\n",
" geo_json_f95b2829034f7c39e7eff607aa7af83d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.091645256203081, 52.32401341822848], [-2.0915902186171373, 52.32403233595295], [-2.091588481666539, 52.32403316530205], [-2.0911184962499605, 52.32433718542928], [-2.091069392285267, 52.32433722340006], [-2.091082687985303, 52.32428857794154], [-2.091155925045515, 52.32424371863612], [-2.091192635298496, 52.32424302944732], [-2.0911948589403786, 52.32424269778342], [-2.0911970902319905, 52.324241804230375], [-2.0911982900226533, 52.32424089439272], [-2.0911990654529387, 52.32423982575528], [-2.0912146981423727, 52.32420747770486], [-2.0912734409433122, 52.324171529843085], [-2.0913263828676247, 52.32416219294681], [-2.0913278317485746, 52.324161831315706], [-2.0913294134413563, 52.32416112795736], [-2.0913306351821994, 52.324160194725046], [-2.091390081501249, 52.32409981809157], [-2.091489017013705, 52.324063037012586], [-2.091490265886139, 52.3240624516792], [-2.091491494948823, 52.32406151304665], [-2.0915509817071025, 52.32400099874717], [-2.0916066687973047, 52.32398185757615], [-2.0916590600805653, 52.32397528724441], [-2.091645256203081, 52.32401341822848]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f95b2829034f7c39e7eff607aa7af83d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_411326ad908b207c42afceaf10789eea = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_946b6633d93faf9a0bd84e42f2309d9b = $(`&lt;div id=&quot;html_946b6633d93faf9a0bd84e42f2309d9b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 7&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 230.0 sqm&lt;br&gt;Intersecting area: 133.9 sqm&lt;/div&gt;`)[0];\n",
" popup_411326ad908b207c42afceaf10789eea.setContent(html_946b6633d93faf9a0bd84e42f2309d9b);\n",
" \n",
" \n",
"\n",
" geo_json_f95b2829034f7c39e7eff607aa7af83d.bindPopup(popup_411326ad908b207c42afceaf10789eea)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f95b2829034f7c39e7eff607aa7af83d.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_e252ce92c187d5b818e23463129712ca_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e252ce92c187d5b818e23463129712ca_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e252ce92c187d5b818e23463129712ca = L.geoJson(null, {\n",
" onEachFeature: geo_json_e252ce92c187d5b818e23463129712ca_onEachFeature,\n",
" \n",
" style: geo_json_e252ce92c187d5b818e23463129712ca_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e252ce92c187d5b818e23463129712ca_add (data) {\n",
" geo_json_e252ce92c187d5b818e23463129712ca\n",
" .addData(data);\n",
" }\n",
" geo_json_e252ce92c187d5b818e23463129712ca_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0897990730131575, 52.32511130712366], [-2.0897324190432793, 52.32512113115991], [-2.089730999347971, 52.32512143700712], [-2.0897297105985486, 52.32512191536927], [-2.089728609959335, 52.32512254372255], [-2.0897277414009094, 52.32512329686529], [-2.0897271415348055, 52.32512414329982], [-2.0897268352425784, 52.32512504614871], [-2.089724946586401, 52.32514804540976], [-2.0896401725458587, 52.32518501111492], [-2.089638955238576, 52.32518599197463], [-2.089607992266527, 52.32521966584179], [-2.089575028188461, 52.32521943828795], [-2.089602416882238, 52.32516184243382], [-2.089689862626919, 52.32510815564891], [-2.0897135453323856, 52.32510724039648], [-2.089715733737148, 52.32510687012841], [-2.0897179078109387, 52.32510594697768], [-2.089718860066702, 52.325105224340845], [-2.0897634763180775, 52.325063155782146], [-2.089803455637245, 52.325062127398354], [-2.0898275382388585, 52.325057284895486], [-2.0897990730131575, 52.32511130712366]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e252ce92c187d5b818e23463129712ca.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d73c2f5c12ea19628b940bbed0e52108 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e443b5425af4cdc36776f8e821d8b878 = $(`&lt;div id=&quot;html_e443b5425af4cdc36776f8e821d8b878&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 8&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 84.0 sqm&lt;br&gt;Intersecting area: 84.2 sqm&lt;/div&gt;`)[0];\n",
" popup_d73c2f5c12ea19628b940bbed0e52108.setContent(html_e443b5425af4cdc36776f8e821d8b878);\n",
" \n",
" \n",
"\n",
" geo_json_e252ce92c187d5b818e23463129712ca.bindPopup(popup_d73c2f5c12ea19628b940bbed0e52108)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e252ce92c187d5b818e23463129712ca.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_58195a0c60ab16ea6d9ce028e10450c6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_58195a0c60ab16ea6d9ce028e10450c6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_58195a0c60ab16ea6d9ce028e10450c6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_58195a0c60ab16ea6d9ce028e10450c6_onEachFeature,\n",
" \n",
" style: geo_json_58195a0c60ab16ea6d9ce028e10450c6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_58195a0c60ab16ea6d9ce028e10450c6_add (data) {\n",
" geo_json_58195a0c60ab16ea6d9ce028e10450c6\n",
" .addData(data);\n",
" }\n",
" geo_json_58195a0c60ab16ea6d9ce028e10450c6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0855097536103577, 52.32496255660782], [-2.08547880570624, 52.32494408533789], [-2.08547790008457, 52.32491507462911], [-2.085496052650363, 52.32491262780315], [-2.0855294319808246, 52.32492285599404], [-2.085555225842456, 52.32496202373387], [-2.0855097536103577, 52.32496255660782]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_58195a0c60ab16ea6d9ce028e10450c6.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8a478d97cf459d00f19bf6641b4e0cce = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6327724d3db3e5606f91408c67fb0fa1 = $(`&lt;div id=&quot;html_6327724d3db3e5606f91408c67fb0fa1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 9&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 19.0 sqm&lt;br&gt;Intersecting area: 19.5 sqm&lt;/div&gt;`)[0];\n",
" popup_8a478d97cf459d00f19bf6641b4e0cce.setContent(html_6327724d3db3e5606f91408c67fb0fa1);\n",
" \n",
" \n",
"\n",
" geo_json_58195a0c60ab16ea6d9ce028e10450c6.bindPopup(popup_8a478d97cf459d00f19bf6641b4e0cce)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_58195a0c60ab16ea6d9ce028e10450c6.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_63d72a6a1d02577b278c597a6987ff55_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_63d72a6a1d02577b278c597a6987ff55_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_63d72a6a1d02577b278c597a6987ff55 = L.geoJson(null, {\n",
" onEachFeature: geo_json_63d72a6a1d02577b278c597a6987ff55_onEachFeature,\n",
" \n",
" style: geo_json_63d72a6a1d02577b278c597a6987ff55_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_63d72a6a1d02577b278c597a6987ff55_add (data) {\n",
" geo_json_63d72a6a1d02577b278c597a6987ff55\n",
" .addData(data);\n",
" }\n",
" geo_json_63d72a6a1d02577b278c597a6987ff55_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.085014154286803, 52.32579026792934], [-2.08496740669006, 52.325780405254086], [-2.0849678318062588, 52.32575958185208], [-2.085031148273728, 52.325768082239996], [-2.085032133308154, 52.32578817371886], [-2.085014154286803, 52.32579026792934]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_63d72a6a1d02577b278c597a6987ff55.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9fd81f22ae3e775d5885d8f51c166112 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a360025f16d1aca0184a5123bfda3288 = $(`&lt;div id=&quot;html_a360025f16d1aca0184a5123bfda3288&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 10&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.0 sqm&lt;/div&gt;`)[0];\n",
" popup_9fd81f22ae3e775d5885d8f51c166112.setContent(html_a360025f16d1aca0184a5123bfda3288);\n",
" \n",
" \n",
"\n",
" geo_json_63d72a6a1d02577b278c597a6987ff55.bindPopup(popup_9fd81f22ae3e775d5885d8f51c166112)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_63d72a6a1d02577b278c597a6987ff55.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_9df30f9aab00ceb2e78d516a9c72d032_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9df30f9aab00ceb2e78d516a9c72d032_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9df30f9aab00ceb2e78d516a9c72d032 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9df30f9aab00ceb2e78d516a9c72d032_onEachFeature,\n",
" \n",
" style: geo_json_9df30f9aab00ceb2e78d516a9c72d032_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9df30f9aab00ceb2e78d516a9c72d032_add (data) {\n",
" geo_json_9df30f9aab00ceb2e78d516a9c72d032\n",
" .addData(data);\n",
" }\n",
" geo_json_9df30f9aab00ceb2e78d516a9c72d032_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084703436223947, 52.32299236891778], [-2.0846814643999725, 52.322982091834014], [-2.0846838081897485, 52.322963295235034], [-2.0847168855869076, 52.32296382524516], [-2.084703436223947, 52.32299236891778]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9df30f9aab00ceb2e78d516a9c72d032.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_32757bc89cf1846f8f7a53a6c19c4bf6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_571b7310437d8d76a0944cea37a36603 = $(`&lt;div id=&quot;html_571b7310437d8d76a0944cea37a36603&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 11&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 5.0 sqm&lt;br&gt;Intersecting area: 0.0 sqm&lt;/div&gt;`)[0];\n",
" popup_32757bc89cf1846f8f7a53a6c19c4bf6.setContent(html_571b7310437d8d76a0944cea37a36603);\n",
" \n",
" \n",
"\n",
" geo_json_9df30f9aab00ceb2e78d516a9c72d032.bindPopup(popup_32757bc89cf1846f8f7a53a6c19c4bf6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9df30f9aab00ceb2e78d516a9c72d032.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_e70d3dc67384a135f054fc92f2d077af_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e70d3dc67384a135f054fc92f2d077af_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e70d3dc67384a135f054fc92f2d077af = L.geoJson(null, {\n",
" onEachFeature: geo_json_e70d3dc67384a135f054fc92f2d077af_onEachFeature,\n",
" \n",
" style: geo_json_e70d3dc67384a135f054fc92f2d077af_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e70d3dc67384a135f054fc92f2d077af_add (data) {\n",
" geo_json_e70d3dc67384a135f054fc92f2d077af\n",
" .addData(data);\n",
" }\n",
" geo_json_e70d3dc67384a135f054fc92f2d077af_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0846639358899233, 52.32579904200443], [-2.0845987482285273, 52.325797220683846], [-2.084584324542307, 52.32576947021437], [-2.08461227275162, 52.325740003653], [-2.084661300345639, 52.32573145200858], [-2.0846802643483837, 52.32574184452596], [-2.0846951228851696, 52.32577903977201], [-2.0846639358899233, 52.32579904200443]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e70d3dc67384a135f054fc92f2d077af.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_51667e7c6e0084ac50bd9ea856bf5a7e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_12a30bf3eb29319ab9d60b2da7ff1eb7 = $(`&lt;div id=&quot;html_12a30bf3eb29319ab9d60b2da7ff1eb7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 12&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 42.0 sqm&lt;br&gt;Intersecting area: 41.7 sqm&lt;/div&gt;`)[0];\n",
" popup_51667e7c6e0084ac50bd9ea856bf5a7e.setContent(html_12a30bf3eb29319ab9d60b2da7ff1eb7);\n",
" \n",
" \n",
"\n",
" geo_json_e70d3dc67384a135f054fc92f2d077af.bindPopup(popup_51667e7c6e0084ac50bd9ea856bf5a7e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e70d3dc67384a135f054fc92f2d077af.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c6ddd17985276fe25dec5fd2cbad5e48_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c6ddd17985276fe25dec5fd2cbad5e48_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c6ddd17985276fe25dec5fd2cbad5e48 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c6ddd17985276fe25dec5fd2cbad5e48_onEachFeature,\n",
" \n",
" style: geo_json_c6ddd17985276fe25dec5fd2cbad5e48_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c6ddd17985276fe25dec5fd2cbad5e48_add (data) {\n",
" geo_json_c6ddd17985276fe25dec5fd2cbad5e48\n",
" .addData(data);\n",
" }\n",
" geo_json_c6ddd17985276fe25dec5fd2cbad5e48_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0840770257736367, 52.32581747160204], [-2.084013259845431, 52.325817162890814], [-2.0839974670172126, 52.32580612430721], [-2.0840107176466622, 52.32577732644994], [-2.084010826071143, 52.325775698244726], [-2.0840099794399713, 52.32577415253548], [-2.0840085746248778, 52.32577304954253], [-2.0840066832639947, 52.32577226424858], [-2.0839390866455942, 52.32575279922475], [-2.0839428688348782, 52.325740960933835], [-2.084009227668357, 52.32574066998381], [-2.0840889253760286, 52.32573178833364], [-2.0841077335475258, 52.32574209475108], [-2.0841083748929807, 52.32579770585066], [-2.0840770257736367, 52.32581747160204]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c6ddd17985276fe25dec5fd2cbad5e48.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_049480c6c411d6abc8bbbf7a204bf3c3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8b9eaad69d699cb9c949b40a23233d1b = $(`&lt;div id=&quot;html_8b9eaad69d699cb9c949b40a23233d1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 13&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 71.0 sqm&lt;br&gt;Intersecting area: 71.3 sqm&lt;/div&gt;`)[0];\n",
" popup_049480c6c411d6abc8bbbf7a204bf3c3.setContent(html_8b9eaad69d699cb9c949b40a23233d1b);\n",
" \n",
" \n",
"\n",
" geo_json_c6ddd17985276fe25dec5fd2cbad5e48.bindPopup(popup_049480c6c411d6abc8bbbf7a204bf3c3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c6ddd17985276fe25dec5fd2cbad5e48.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_d222585ba509108df6fd820b2ca4b772_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d222585ba509108df6fd820b2ca4b772_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d222585ba509108df6fd820b2ca4b772 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d222585ba509108df6fd820b2ca4b772_onEachFeature,\n",
" \n",
" style: geo_json_d222585ba509108df6fd820b2ca4b772_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d222585ba509108df6fd820b2ca4b772_add (data) {\n",
" geo_json_d222585ba509108df6fd820b2ca4b772\n",
" .addData(data);\n",
" }\n",
" geo_json_d222585ba509108df6fd820b2ca4b772_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084673688488005, 52.32584554577488], [-2.084619762518816, 52.325879929778864], [-2.0845706086278732, 52.32586933327766], [-2.0845881912630606, 52.325830283418256], [-2.0846756661759898, 52.32582168257325], [-2.084673688488005, 52.32584554577488]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d222585ba509108df6fd820b2ca4b772.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cba50841912990465ce3a0d284746516 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_66ffe0825beeebce2a3fce06bbea8277 = $(`&lt;div id=&quot;html_66ffe0825beeebce2a3fce06bbea8277&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 14&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 30.0 sqm&lt;br&gt;Intersecting area: 30.1 sqm&lt;/div&gt;`)[0];\n",
" popup_cba50841912990465ce3a0d284746516.setContent(html_66ffe0825beeebce2a3fce06bbea8277);\n",
" \n",
" \n",
"\n",
" geo_json_d222585ba509108df6fd820b2ca4b772.bindPopup(popup_cba50841912990465ce3a0d284746516)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d222585ba509108df6fd820b2ca4b772.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4e466df9d08a392e5fd200c6729bfc39_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4e466df9d08a392e5fd200c6729bfc39_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4e466df9d08a392e5fd200c6729bfc39 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4e466df9d08a392e5fd200c6729bfc39_onEachFeature,\n",
" \n",
" style: geo_json_4e466df9d08a392e5fd200c6729bfc39_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4e466df9d08a392e5fd200c6729bfc39_add (data) {\n",
" geo_json_4e466df9d08a392e5fd200c6729bfc39\n",
" .addData(data);\n",
" }\n",
" geo_json_4e466df9d08a392e5fd200c6729bfc39_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0847640512702204, 52.325924321201036], [-2.0847612680075875, 52.325903754534394], [-2.084795415491809, 52.32589418506466], [-2.0848051930545655, 52.325916902543455], [-2.0847640512702204, 52.325924321201036]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4e466df9d08a392e5fd200c6729bfc39.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0512b8fbd48b6f1c0651b8ca162df9fd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0476ea48716d4a4d75af9cd2fa097cc8 = $(`&lt;div id=&quot;html_0476ea48716d4a4d75af9cd2fa097cc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 15&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.6 sqm&lt;/div&gt;`)[0];\n",
" popup_0512b8fbd48b6f1c0651b8ca162df9fd.setContent(html_0476ea48716d4a4d75af9cd2fa097cc8);\n",
" \n",
" \n",
"\n",
" geo_json_4e466df9d08a392e5fd200c6729bfc39.bindPopup(popup_0512b8fbd48b6f1c0651b8ca162df9fd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4e466df9d08a392e5fd200c6729bfc39.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ba131749a981e85c4ffb1c38561796f6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ba131749a981e85c4ffb1c38561796f6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ba131749a981e85c4ffb1c38561796f6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ba131749a981e85c4ffb1c38561796f6_onEachFeature,\n",
" \n",
" style: geo_json_ba131749a981e85c4ffb1c38561796f6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ba131749a981e85c4ffb1c38561796f6_add (data) {\n",
" geo_json_ba131749a981e85c4ffb1c38561796f6\n",
" .addData(data);\n",
" }\n",
" geo_json_ba131749a981e85c4ffb1c38561796f6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084792077903171, 52.32597860810493], [-2.0847759053799164, 52.3259678773611], [-2.0847887470474613, 52.32595559919794], [-2.0848249490734974, 52.32594771929534], [-2.084840850049007, 52.32596833495037], [-2.084792077903171, 52.32597860810493]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ba131749a981e85c4ffb1c38561796f6.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e5f3a1b7f93b7df273a1efbb9fd689ef = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f71426bfdff22a68951569957319544e = $(`&lt;div id=&quot;html_f71426bfdff22a68951569957319544e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 16&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 9.0 sqm&lt;/div&gt;`)[0];\n",
" popup_e5f3a1b7f93b7df273a1efbb9fd689ef.setContent(html_f71426bfdff22a68951569957319544e);\n",
" \n",
" \n",
"\n",
" geo_json_ba131749a981e85c4ffb1c38561796f6.bindPopup(popup_e5f3a1b7f93b7df273a1efbb9fd689ef)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ba131749a981e85c4ffb1c38561796f6.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2651b1174ddafb924d70e5e716f3c211_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2651b1174ddafb924d70e5e716f3c211_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2651b1174ddafb924d70e5e716f3c211 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2651b1174ddafb924d70e5e716f3c211_onEachFeature,\n",
" \n",
" style: geo_json_2651b1174ddafb924d70e5e716f3c211_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2651b1174ddafb924d70e5e716f3c211_add (data) {\n",
" geo_json_2651b1174ddafb924d70e5e716f3c211\n",
" .addData(data);\n",
" }\n",
" geo_json_2651b1174ddafb924d70e5e716f3c211_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0834468683888763, 52.32605126840535], [-2.0833973572978244, 52.32605039636302], [-2.0833959270928974, 52.32600471549496], [-2.0833997203930226, 52.325993230528525], [-2.0834439424169635, 52.3259928620735], [-2.0834760991433483, 52.32601127547809], [-2.0834468683888763, 52.32605126840535]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2651b1174ddafb924d70e5e716f3c211.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b788e7ced9dcd2828294793576b264c0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7081b3a31416dc8bb28ac5b305b2d07b = $(`&lt;div id=&quot;html_7081b3a31416dc8bb28ac5b305b2d07b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 17&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 28.0 sqm&lt;br&gt;Intersecting area: 28.2 sqm&lt;/div&gt;`)[0];\n",
" popup_b788e7ced9dcd2828294793576b264c0.setContent(html_7081b3a31416dc8bb28ac5b305b2d07b);\n",
" \n",
" \n",
"\n",
" geo_json_2651b1174ddafb924d70e5e716f3c211.bindPopup(popup_b788e7ced9dcd2828294793576b264c0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2651b1174ddafb924d70e5e716f3c211.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_eb55ba00a5cf74beec62b4eecbde8020_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_eb55ba00a5cf74beec62b4eecbde8020_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_eb55ba00a5cf74beec62b4eecbde8020 = L.geoJson(null, {\n",
" onEachFeature: geo_json_eb55ba00a5cf74beec62b4eecbde8020_onEachFeature,\n",
" \n",
" style: geo_json_eb55ba00a5cf74beec62b4eecbde8020_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_eb55ba00a5cf74beec62b4eecbde8020_add (data) {\n",
" geo_json_eb55ba00a5cf74beec62b4eecbde8020\n",
" .addData(data);\n",
" }\n",
" geo_json_eb55ba00a5cf74beec62b4eecbde8020_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084634592453848, 52.32604170039811], [-2.0846018462377076, 52.32604137690332], [-2.0846007772376742, 52.32600261104745], [-2.0846351562214593, 52.32600201007826], [-2.0846444959881194, 52.32602600539008], [-2.084634592453848, 52.32604170039811]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_eb55ba00a5cf74beec62b4eecbde8020.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cbf5fe3d376ab5447fda73c197fd3f9c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9875c206e0ef76430c5d4df0e3f97516 = $(`&lt;div id=&quot;html_9875c206e0ef76430c5d4df0e3f97516&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 18&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.4 sqm&lt;/div&gt;`)[0];\n",
" popup_cbf5fe3d376ab5447fda73c197fd3f9c.setContent(html_9875c206e0ef76430c5d4df0e3f97516);\n",
" \n",
" \n",
"\n",
" geo_json_eb55ba00a5cf74beec62b4eecbde8020.bindPopup(popup_cbf5fe3d376ab5447fda73c197fd3f9c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_eb55ba00a5cf74beec62b4eecbde8020.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_593b712cda6ec03d8bd470ac84035325_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_593b712cda6ec03d8bd470ac84035325_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_593b712cda6ec03d8bd470ac84035325 = L.geoJson(null, {\n",
" onEachFeature: geo_json_593b712cda6ec03d8bd470ac84035325_onEachFeature,\n",
" \n",
" style: geo_json_593b712cda6ec03d8bd470ac84035325_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_593b712cda6ec03d8bd470ac84035325_add (data) {\n",
" geo_json_593b712cda6ec03d8bd470ac84035325\n",
" .addData(data);\n",
" }\n",
" geo_json_593b712cda6ec03d8bd470ac84035325_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0853521249931544, 52.32583463644803], [-2.0853200440924957, 52.32583456889154], [-2.0852890035169636, 52.32581548990211], [-2.085289117280021, 52.32579535447397], [-2.085316072423437, 52.325784519749206], [-2.0853511475486384, 52.325775988710056], [-2.0853695420285128, 52.325786173856855], [-2.0853521249931544, 52.32583463644803]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_593b712cda6ec03d8bd470ac84035325.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8c386a54d4103cbb0367733a7dbf2339 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8fdec0c3ae50d9c232df7c5df081bca2 = $(`&lt;div id=&quot;html_8fdec0c3ae50d9c232df7c5df081bca2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 19&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 25.6 sqm&lt;/div&gt;`)[0];\n",
" popup_8c386a54d4103cbb0367733a7dbf2339.setContent(html_8fdec0c3ae50d9c232df7c5df081bca2);\n",
" \n",
" \n",
"\n",
" geo_json_593b712cda6ec03d8bd470ac84035325.bindPopup(popup_8c386a54d4103cbb0367733a7dbf2339)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_593b712cda6ec03d8bd470ac84035325.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_0447657c462f4c3fb43deccc7a627393_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0447657c462f4c3fb43deccc7a627393_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0447657c462f4c3fb43deccc7a627393 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0447657c462f4c3fb43deccc7a627393_onEachFeature,\n",
" \n",
" style: geo_json_0447657c462f4c3fb43deccc7a627393_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0447657c462f4c3fb43deccc7a627393_add (data) {\n",
" geo_json_0447657c462f4c3fb43deccc7a627393\n",
" .addData(data);\n",
" }\n",
" geo_json_0447657c462f4c3fb43deccc7a627393_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.085178207964126, 52.32598723517973], [-2.085127253986557, 52.325976917108854], [-2.085112754886848, 52.32595821359759], [-2.0851266175858307, 52.325928351633536], [-2.0851752125840393, 52.32591987560615], [-2.085194176787718, 52.3259302680406], [-2.085209035818705, 52.3259674632206], [-2.085178207964126, 52.32598723517973]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0447657c462f4c3fb43deccc7a627393.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f16d7cfaa9fd231cb6258e28b7890730 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3f27c6559f5812e938d4e72a4d8c0e91 = $(`&lt;div id=&quot;html_3f27c6559f5812e938d4e72a4d8c0e91&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 20&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 35.0 sqm&lt;br&gt;Intersecting area: 34.7 sqm&lt;/div&gt;`)[0];\n",
" popup_f16d7cfaa9fd231cb6258e28b7890730.setContent(html_3f27c6559f5812e938d4e72a4d8c0e91);\n",
" \n",
" \n",
"\n",
" geo_json_0447657c462f4c3fb43deccc7a627393.bindPopup(popup_f16d7cfaa9fd231cb6258e28b7890730)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0447657c462f4c3fb43deccc7a627393.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_6b131385bc1b9f36ea3e851e48b03958_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6b131385bc1b9f36ea3e851e48b03958_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6b131385bc1b9f36ea3e851e48b03958 = L.geoJson(null, {\n",
" onEachFeature: geo_json_6b131385bc1b9f36ea3e851e48b03958_onEachFeature,\n",
" \n",
" style: geo_json_6b131385bc1b9f36ea3e851e48b03958_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6b131385bc1b9f36ea3e851e48b03958_add (data) {\n",
" geo_json_6b131385bc1b9f36ea3e851e48b03958\n",
" .addData(data);\n",
" }\n",
" geo_json_6b131385bc1b9f36ea3e851e48b03958_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0852810858169883, 52.326347143459294], [-2.0852302298298295, 52.326347543475215], [-2.085227995574284, 52.32634777524057], [-2.085226295942846, 52.326348280823716], [-2.085225123232176, 52.3263488678317], [-2.085223974634619, 52.32634978656082], [-2.0851924405511886, 52.32638316479592], [-2.0851177052400547, 52.32638337885739], [-2.085099145183259, 52.326345198320155], [-2.085124928555888, 52.326333718988636], [-2.085126070371202, 52.32633308884815], [-2.085127155779474, 52.326332120721005], [-2.0851277043250644, 52.32633124198137], [-2.085127952988304, 52.32633007667186], [-2.085127923049374, 52.32631452635135], [-2.085127755422297, 52.32631357710891], [-2.085127265060537, 52.32631267125129], [-2.085125975945966, 52.32631148098053], [-2.0850125114453237, 52.32623622059856], [-2.085044057009825, 52.32622557950599], [-2.085137494556308, 52.32624304378241], [-2.0851398499468177, 52.32624323716621], [-2.0851414226315064, 52.326243103874056], [-2.0851986978610646, 52.326234286227205], [-2.085325482922805, 52.32622670471701], [-2.0853416402555807, 52.32631839390567], [-2.0852810858169883, 52.326347143459294]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6b131385bc1b9f36ea3e851e48b03958.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0d1e4d43e1416542840f1f49e05d6ac8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8417ee17b2cc2619b7bd78d470dacca5 = $(`&lt;div id=&quot;html_8417ee17b2cc2619b7bd78d470dacca5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 21&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 238.0 sqm&lt;br&gt;Intersecting area: 238.5 sqm&lt;/div&gt;`)[0];\n",
" popup_0d1e4d43e1416542840f1f49e05d6ac8.setContent(html_8417ee17b2cc2619b7bd78d470dacca5);\n",
" \n",
" \n",
"\n",
" geo_json_6b131385bc1b9f36ea3e851e48b03958.bindPopup(popup_0d1e4d43e1416542840f1f49e05d6ac8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6b131385bc1b9f36ea3e851e48b03958.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_abb12789ef2da5aba9f67e196ba8cab0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_abb12789ef2da5aba9f67e196ba8cab0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_abb12789ef2da5aba9f67e196ba8cab0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_abb12789ef2da5aba9f67e196ba8cab0_onEachFeature,\n",
" \n",
" style: geo_json_abb12789ef2da5aba9f67e196ba8cab0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_abb12789ef2da5aba9f67e196ba8cab0_add (data) {\n",
" geo_json_abb12789ef2da5aba9f67e196ba8cab0\n",
" .addData(data);\n",
" }\n",
" geo_json_abb12789ef2da5aba9f67e196ba8cab0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084969911401699, 52.326347742352155], [-2.084911836359595, 52.326347418334045], [-2.0849081674759247, 52.326333343228825], [-2.0849072807285998, 52.326332319887456], [-2.084905998140382, 52.32633146854155], [-2.0849040540585633, 52.326330754324715], [-2.0849022237664245, 52.326330460763906], [-2.0848995871929854, 52.32633054897178], [-2.08485149226927, 52.32633761126305], [-2.084834804188174, 52.32629150268387], [-2.0848619964753357, 52.326279395776], [-2.0849295579633162, 52.32627153549842], [-2.084987879400783, 52.326338266309214], [-2.084969911401699, 52.326347742352155]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_abb12789ef2da5aba9f67e196ba8cab0.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cbf5b2cce95b40ac45dfd5e8cc214c9c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b5135901c7be640c73d7e9071cc6f85c = $(`&lt;div id=&quot;html_b5135901c7be640c73d7e9071cc6f85c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 22&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 58.0 sqm&lt;br&gt;Intersecting area: 57.6 sqm&lt;/div&gt;`)[0];\n",
" popup_cbf5b2cce95b40ac45dfd5e8cc214c9c.setContent(html_b5135901c7be640c73d7e9071cc6f85c);\n",
" \n",
" \n",
"\n",
" geo_json_abb12789ef2da5aba9f67e196ba8cab0.bindPopup(popup_cbf5b2cce95b40ac45dfd5e8cc214c9c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_abb12789ef2da5aba9f67e196ba8cab0.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2a586448d0aa8854853d9e66feb15b02_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2a586448d0aa8854853d9e66feb15b02_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2a586448d0aa8854853d9e66feb15b02 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2a586448d0aa8854853d9e66feb15b02_onEachFeature,\n",
" \n",
" style: geo_json_2a586448d0aa8854853d9e66feb15b02_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2a586448d0aa8854853d9e66feb15b02_add (data) {\n",
" geo_json_2a586448d0aa8854853d9e66feb15b02\n",
" .addData(data);\n",
" }\n",
" geo_json_2a586448d0aa8854853d9e66feb15b02_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0812389173612926, 52.32423682831067], [-2.081221128238047, 52.324207869667674], [-2.081224511924337, 52.32419682377179], [-2.08125610270955, 52.324196712078475], [-2.081286431484541, 52.3242268217986], [-2.0812389173612926, 52.32423682831067]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2a586448d0aa8854853d9e66feb15b02.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b8207062a09c3d1bf8e9cfb30fdb55d8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_74f6719009b3dba7e23424031ea2af5b = $(`&lt;div id=&quot;html_74f6719009b3dba7e23424031ea2af5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 23&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.5 sqm&lt;/div&gt;`)[0];\n",
" popup_b8207062a09c3d1bf8e9cfb30fdb55d8.setContent(html_74f6719009b3dba7e23424031ea2af5b);\n",
" \n",
" \n",
"\n",
" geo_json_2a586448d0aa8854853d9e66feb15b02.bindPopup(popup_b8207062a09c3d1bf8e9cfb30fdb55d8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2a586448d0aa8854853d9e66feb15b02.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ad4989a7aee92c26253b644d81f73182_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ad4989a7aee92c26253b644d81f73182_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ad4989a7aee92c26253b644d81f73182 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ad4989a7aee92c26253b644d81f73182_onEachFeature,\n",
" \n",
" style: geo_json_ad4989a7aee92c26253b644d81f73182_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ad4989a7aee92c26253b644d81f73182_add (data) {\n",
" geo_json_ad4989a7aee92c26253b644d81f73182\n",
" .addData(data);\n",
" }\n",
" geo_json_ad4989a7aee92c26253b644d81f73182_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082479642561697, 52.326465674962726], [-2.082401568673088, 52.32648383227161], [-2.0823700337904123, 52.32646442112491], [-2.0823700883294833, 52.32642675127212], [-2.0824005828992953, 52.3263989484386], [-2.0824383454208686, 52.32639813087111], [-2.0824410166963463, 52.32639775950394], [-2.082443280451162, 52.32639681394857], [-2.0824708752703427, 52.3263798669912], [-2.08250879800614, 52.326372133131855], [-2.0825532188054097, 52.326411217445134], [-2.082479642561697, 52.326465674962726]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ad4989a7aee92c26253b644d81f73182.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_87443f47b4f8bbc851b87aedcd8ff6a1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9d8a0d7432aaf426c47a5eaa5410b01a = $(`&lt;div id=&quot;html_9d8a0d7432aaf426c47a5eaa5410b01a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 24&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 93.0 sqm&lt;br&gt;Intersecting area: 93.1 sqm&lt;/div&gt;`)[0];\n",
" popup_87443f47b4f8bbc851b87aedcd8ff6a1.setContent(html_9d8a0d7432aaf426c47a5eaa5410b01a);\n",
" \n",
" \n",
"\n",
" geo_json_ad4989a7aee92c26253b644d81f73182.bindPopup(popup_87443f47b4f8bbc851b87aedcd8ff6a1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ad4989a7aee92c26253b644d81f73182.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_48e4bccac5809e65a95355004a821901_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_48e4bccac5809e65a95355004a821901_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_48e4bccac5809e65a95355004a821901 = L.geoJson(null, {\n",
" onEachFeature: geo_json_48e4bccac5809e65a95355004a821901_onEachFeature,\n",
" \n",
" style: geo_json_48e4bccac5809e65a95355004a821901_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_48e4bccac5809e65a95355004a821901_add (data) {\n",
" geo_json_48e4bccac5809e65a95355004a821901\n",
" .addData(data);\n",
" }\n",
" geo_json_48e4bccac5809e65a95355004a821901_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0822415233212035, 52.3270414225278], [-2.082167247905899, 52.32701415227178], [-2.0821797157620954, 52.32699046609826], [-2.082197536262118, 52.32696512288759], [-2.0822573098145445, 52.326964670304974], [-2.082305061791391, 52.327003739790435], [-2.0822415233212035, 52.3270414225278]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_48e4bccac5809e65a95355004a821901.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0a673850a7d4c8bfc62868458fb03cfb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bee7f2a5028e7d586dc7f4ae4fe7701d = $(`&lt;div id=&quot;html_bee7f2a5028e7d586dc7f4ae4fe7701d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 25&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 51.0 sqm&lt;br&gt;Intersecting area: 50.9 sqm&lt;/div&gt;`)[0];\n",
" popup_0a673850a7d4c8bfc62868458fb03cfb.setContent(html_bee7f2a5028e7d586dc7f4ae4fe7701d);\n",
" \n",
" \n",
"\n",
" geo_json_48e4bccac5809e65a95355004a821901.bindPopup(popup_0a673850a7d4c8bfc62868458fb03cfb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_48e4bccac5809e65a95355004a821901.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_afaa2c3bff8555848c1480ddc34cdb70_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_afaa2c3bff8555848c1480ddc34cdb70_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_afaa2c3bff8555848c1480ddc34cdb70 = L.geoJson(null, {\n",
" onEachFeature: geo_json_afaa2c3bff8555848c1480ddc34cdb70_onEachFeature,\n",
" \n",
" style: geo_json_afaa2c3bff8555848c1480ddc34cdb70_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_afaa2c3bff8555848c1480ddc34cdb70_add (data) {\n",
" geo_json_afaa2c3bff8555848c1480ddc34cdb70\n",
" .addData(data);\n",
" }\n",
" geo_json_afaa2c3bff8555848c1480ddc34cdb70_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0813812133347893, 52.32723906904667], [-2.0813059393069255, 52.327275863962114], [-2.08124274842033, 52.32725743721826], [-2.0812267531240476, 52.32721996543537], [-2.0812601092022973, 52.32718121356726], [-2.0813775834435675, 52.32718103715248], [-2.0813962183826678, 52.32719210109223], [-2.0813812133347893, 52.32723906904667]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_afaa2c3bff8555848c1480ddc34cdb70.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6816c5baae5ceccba1e7927cbc2d4f6e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4f7f8f8b2bccf26b9933cf21f42cbd92 = $(`&lt;div id=&quot;html_4f7f8f8b2bccf26b9933cf21f42cbd92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 26&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 90.0 sqm&lt;br&gt;Intersecting area: 89.7 sqm&lt;/div&gt;`)[0];\n",
" popup_6816c5baae5ceccba1e7927cbc2d4f6e.setContent(html_4f7f8f8b2bccf26b9933cf21f42cbd92);\n",
" \n",
" \n",
"\n",
" geo_json_afaa2c3bff8555848c1480ddc34cdb70.bindPopup(popup_6816c5baae5ceccba1e7927cbc2d4f6e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_afaa2c3bff8555848c1480ddc34cdb70.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa = L.geoJson(null, {\n",
" onEachFeature: geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa_onEachFeature,\n",
" \n",
" style: geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa_add (data) {\n",
" geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa\n",
" .addData(data);\n",
" }\n",
" geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.08354898074088, 52.32607866465465], [-2.0835154629904014, 52.326078489744305], [-2.083484125411851, 52.3260579909416], [-2.083485535317728, 52.32603925616906], [-2.08351110433898, 52.32603767914206], [-2.083563486236576, 52.32602965959364], [-2.0835795108823554, 52.32606010700668], [-2.08354898074088, 52.32607866465465]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_89f426263b9c54a98fc8106dc50b2c07 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_638e5b17e5a197ab12558065b1c703f9 = $(`&lt;div id=&quot;html_638e5b17e5a197ab12558065b1c703f9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 27&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 25.4 sqm&lt;/div&gt;`)[0];\n",
" popup_89f426263b9c54a98fc8106dc50b2c07.setContent(html_638e5b17e5a197ab12558065b1c703f9);\n",
" \n",
" \n",
"\n",
" geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa.bindPopup(popup_89f426263b9c54a98fc8106dc50b2c07)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c8f06a51ee2fb5dcd82db15b1f4a33fa.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_346fd9cb8d486b066e7d6c54667f4afa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_346fd9cb8d486b066e7d6c54667f4afa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_346fd9cb8d486b066e7d6c54667f4afa = L.geoJson(null, {\n",
" onEachFeature: geo_json_346fd9cb8d486b066e7d6c54667f4afa_onEachFeature,\n",
" \n",
" style: geo_json_346fd9cb8d486b066e7d6c54667f4afa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_346fd9cb8d486b066e7d6c54667f4afa_add (data) {\n",
" geo_json_346fd9cb8d486b066e7d6c54667f4afa\n",
" .addData(data);\n",
" }\n",
" geo_json_346fd9cb8d486b066e7d6c54667f4afa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0832514080797675, 52.32610550883393], [-2.0832349297310873, 52.32609427194617], [-2.0832495781025986, 52.326049262964766], [-2.0833055273053844, 52.32604682751577], [-2.0833451166630166, 52.32603998044155], [-2.0833596112728743, 52.326086256206494], [-2.0832514080797675, 52.32610550883393]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_346fd9cb8d486b066e7d6c54667f4afa.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_81746694e8f98c57dfbc7f5ece8976aa = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e0a19213bd7804e58b2eba838c8f2f28 = $(`&lt;div id=&quot;html_e0a19213bd7804e58b2eba838c8f2f28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 28&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 43.0 sqm&lt;br&gt;Intersecting area: 42.8 sqm&lt;/div&gt;`)[0];\n",
" popup_81746694e8f98c57dfbc7f5ece8976aa.setContent(html_e0a19213bd7804e58b2eba838c8f2f28);\n",
" \n",
" \n",
"\n",
" geo_json_346fd9cb8d486b066e7d6c54667f4afa.bindPopup(popup_81746694e8f98c57dfbc7f5ece8976aa)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_346fd9cb8d486b066e7d6c54667f4afa.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_40e946219a62b09aa3af9cc758e337a7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_40e946219a62b09aa3af9cc758e337a7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_40e946219a62b09aa3af9cc758e337a7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_40e946219a62b09aa3af9cc758e337a7_onEachFeature,\n",
" \n",
" style: geo_json_40e946219a62b09aa3af9cc758e337a7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_40e946219a62b09aa3af9cc758e337a7_add (data) {\n",
" geo_json_40e946219a62b09aa3af9cc758e337a7\n",
" .addData(data);\n",
" }\n",
" geo_json_40e946219a62b09aa3af9cc758e337a7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0841755653846903, 52.326169474375966], [-2.0841500164757605, 52.326186271036406], [-2.08410145020877, 52.32618541929384], [-2.084086106215802, 52.32617438129819], [-2.0841017912889184, 52.32612868641834], [-2.0841525532283605, 52.326128339996586], [-2.0841820829493614, 52.326147032887036], [-2.0841755653846903, 52.326169474375966]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_40e946219a62b09aa3af9cc758e337a7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8abf4619d71eed3b49dc90c67bba9c4c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ecf372028fcbfe19a9be420fd3625816 = $(`&lt;div id=&quot;html_ecf372028fcbfe19a9be420fd3625816&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 29&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 33.0 sqm&lt;br&gt;Intersecting area: 33.3 sqm&lt;/div&gt;`)[0];\n",
" popup_8abf4619d71eed3b49dc90c67bba9c4c.setContent(html_ecf372028fcbfe19a9be420fd3625816);\n",
" \n",
" \n",
"\n",
" geo_json_40e946219a62b09aa3af9cc758e337a7.bindPopup(popup_8abf4619d71eed3b49dc90c67bba9c4c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_40e946219a62b09aa3af9cc758e337a7.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_bf0c42e667e8844db659d6303c35e9c8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_bf0c42e667e8844db659d6303c35e9c8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_bf0c42e667e8844db659d6303c35e9c8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_bf0c42e667e8844db659d6303c35e9c8_onEachFeature,\n",
" \n",
" style: geo_json_bf0c42e667e8844db659d6303c35e9c8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_bf0c42e667e8844db659d6303c35e9c8_add (data) {\n",
" geo_json_bf0c42e667e8844db659d6303c35e9c8\n",
" .addData(data);\n",
" }\n",
" geo_json_bf0c42e667e8844db659d6303c35e9c8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083933127256284, 52.3261929796552], [-2.0838866056279732, 52.32621337828822], [-2.083840569531932, 52.32621360255848], [-2.083807603049464, 52.32619390243455], [-2.083807215591019, 52.32615669588295], [-2.083838048206546, 52.32612822086973], [-2.083869184166612, 52.326127403969316], [-2.0839322729008365, 52.32615567454741], [-2.083933127256284, 52.3261929796552]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_bf0c42e667e8844db659d6303c35e9c8.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_be2131d5d1a6ddca5b8e0afd484e045a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ab764fd1a672d52554a001c72e0e4c3f = $(`&lt;div id=&quot;html_ab764fd1a672d52554a001c72e0e4c3f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 30&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 65.0 sqm&lt;br&gt;Intersecting area: 65.3 sqm&lt;/div&gt;`)[0];\n",
" popup_be2131d5d1a6ddca5b8e0afd484e045a.setContent(html_ab764fd1a672d52554a001c72e0e4c3f);\n",
" \n",
" \n",
"\n",
" geo_json_bf0c42e667e8844db659d6303c35e9c8.bindPopup(popup_be2131d5d1a6ddca5b8e0afd484e045a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_bf0c42e667e8844db659d6303c35e9c8.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_26d661c5e57583e95d319848dcc2c354_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_26d661c5e57583e95d319848dcc2c354_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_26d661c5e57583e95d319848dcc2c354 = L.geoJson(null, {\n",
" onEachFeature: geo_json_26d661c5e57583e95d319848dcc2c354_onEachFeature,\n",
" \n",
" style: geo_json_26d661c5e57583e95d319848dcc2c354_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_26d661c5e57583e95d319848dcc2c354_add (data) {\n",
" geo_json_26d661c5e57583e95d319848dcc2c354\n",
" .addData(data);\n",
" }\n",
" geo_json_26d661c5e57583e95d319848dcc2c354_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0839454545228793, 52.326851678877816], [-2.0838984338608513, 52.3268507108736], [-2.083896392711008, 52.32682281665204], [-2.0839290194159195, 52.326793120368954], [-2.0839912792623134, 52.326803955922024], [-2.0839454545228793, 52.326851678877816]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_26d661c5e57583e95d319848dcc2c354.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d8b6e8aad060496a9de6051d600b9a5e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d04e0623697a01eddb3427633e26d31a = $(`&lt;div id=&quot;html_d04e0623697a01eddb3427633e26d31a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 31&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 27.0 sqm&lt;br&gt;Intersecting area: 27.2 sqm&lt;/div&gt;`)[0];\n",
" popup_d8b6e8aad060496a9de6051d600b9a5e.setContent(html_d04e0623697a01eddb3427633e26d31a);\n",
" \n",
" \n",
"\n",
" geo_json_26d661c5e57583e95d319848dcc2c354.bindPopup(popup_d8b6e8aad060496a9de6051d600b9a5e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_26d661c5e57583e95d319848dcc2c354.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_570bb6f52184b110af69790c1477fffa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_570bb6f52184b110af69790c1477fffa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_570bb6f52184b110af69790c1477fffa = L.geoJson(null, {\n",
" onEachFeature: geo_json_570bb6f52184b110af69790c1477fffa_onEachFeature,\n",
" \n",
" style: geo_json_570bb6f52184b110af69790c1477fffa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_570bb6f52184b110af69790c1477fffa_add (data) {\n",
" geo_json_570bb6f52184b110af69790c1477fffa\n",
" .addData(data);\n",
" }\n",
" geo_json_570bb6f52184b110af69790c1477fffa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083943482270175, 52.3268964127944], [-2.0839277830804797, 52.32687538063264], [-2.0839899257369283, 52.326865403968554], [-2.0840000336385907, 52.326896818389585], [-2.083943482270175, 52.3268964127944]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_570bb6f52184b110af69790c1477fffa.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d16517846b921d89249e1da88cfdeb82 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d4cb4401a95299144a0a1e26d51c3bf8 = $(`&lt;div id=&quot;html_d4cb4401a95299144a0a1e26d51c3bf8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 32&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_d16517846b921d89249e1da88cfdeb82.setContent(html_d4cb4401a95299144a0a1e26d51c3bf8);\n",
" \n",
" \n",
"\n",
" geo_json_570bb6f52184b110af69790c1477fffa.bindPopup(popup_d16517846b921d89249e1da88cfdeb82)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_570bb6f52184b110af69790c1477fffa.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b = L.geoJson(null, {\n",
" onEachFeature: geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b_onEachFeature,\n",
" \n",
" style: geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b_add (data) {\n",
" geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b\n",
" .addData(data);\n",
" }\n",
" geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083229731094213, 52.32700387569565], [-2.0831698262891574, 52.32704066273883], [-2.0830892665800556, 52.32703257268779], [-2.083087292962019, 52.32703253901793], [-2.0830850119961375, 52.32703292540698], [-2.083083346327934, 52.32703357387627], [-2.0830513324885973, 52.327050133018076], [-2.0830059539881143, 52.327050165009425], [-2.082987249742022, 52.3270164316999], [-2.0829863820090124, 52.32701536067808], [-2.0829847791891245, 52.327014315350965], [-2.0829443758335375, 52.32699525762888], [-2.0829590388740296, 52.32697417608271], [-2.082979481438173, 52.3269732851386], [-2.0829810027367612, 52.32697311864544], [-2.082982769971015, 52.326972642720655], [-2.082984272585792, 52.32697190086699], [-2.08298540943615, 52.32697094530962], [-2.082986098472185, 52.326969839929106], [-2.0829862289030836, 52.32696819103415], [-2.0829734630785937, 52.326911062849526], [-2.083004401846881, 52.326892450223355], [-2.083049753234873, 52.32689212786843], [-2.08308266932925, 52.326893510720716], [-2.0831125500447403, 52.326934966797424], [-2.0831135144469384, 52.32693594514966], [-2.0831145589497626, 52.32693660069634], [-2.0831164751355464, 52.32693730866912], [-2.083229659380556, 52.326965781595945], [-2.083229731094213, 52.32700387569565]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b590c12bfca3bff104799cec86d1d04b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b2b6026218d7a0a2287a4369ee781136 = $(`&lt;div id=&quot;html_b2b6026218d7a0a2287a4369ee781136&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 33&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 219.0 sqm&lt;br&gt;Intersecting area: 218.9 sqm&lt;/div&gt;`)[0];\n",
" popup_b590c12bfca3bff104799cec86d1d04b.setContent(html_b2b6026218d7a0a2287a4369ee781136);\n",
" \n",
" \n",
"\n",
" geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b.bindPopup(popup_b590c12bfca3bff104799cec86d1d04b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b01ea18c6c7e295d1e677b7e2a04ba6b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_b997e93b163f3125a1bbcd54cb7bb43b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b997e93b163f3125a1bbcd54cb7bb43b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b997e93b163f3125a1bbcd54cb7bb43b = L.geoJson(null, {\n",
" onEachFeature: geo_json_b997e93b163f3125a1bbcd54cb7bb43b_onEachFeature,\n",
" \n",
" style: geo_json_b997e93b163f3125a1bbcd54cb7bb43b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b997e93b163f3125a1bbcd54cb7bb43b_add (data) {\n",
" geo_json_b997e93b163f3125a1bbcd54cb7bb43b\n",
" .addData(data);\n",
" }\n",
" geo_json_b997e93b163f3125a1bbcd54cb7bb43b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083728853668351, 52.32698527631592], [-2.0836880897942383, 52.32700459554872], [-2.083686984657472, 52.327005242732284], [-2.0836859505829293, 52.32700622429605], [-2.0836852639247736, 52.32700780076615], [-2.0836799126840595, 52.327049715956214], [-2.0836482692565825, 52.327048669497884], [-2.0836037612864846, 52.32700313429962], [-2.0836467549990108, 52.32694475561146], [-2.0836669086559882, 52.32692767880924], [-2.0837255430427732, 52.32692776030702], [-2.0837435682697065, 52.32693893578604], [-2.083728853668351, 52.32698527631592]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b997e93b163f3125a1bbcd54cb7bb43b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1357334991f3e4e68d341557482fd5ac = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_637973a69c2b3999bbe91bb77c17c532 = $(`&lt;div id=&quot;html_637973a69c2b3999bbe91bb77c17c532&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 34&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 76.0 sqm&lt;br&gt;Intersecting area: 75.5 sqm&lt;/div&gt;`)[0];\n",
" popup_1357334991f3e4e68d341557482fd5ac.setContent(html_637973a69c2b3999bbe91bb77c17c532);\n",
" \n",
" \n",
"\n",
" geo_json_b997e93b163f3125a1bbcd54cb7bb43b.bindPopup(popup_1357334991f3e4e68d341557482fd5ac)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b997e93b163f3125a1bbcd54cb7bb43b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4cadddbb10f3b14715e686e555046b5b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4cadddbb10f3b14715e686e555046b5b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4cadddbb10f3b14715e686e555046b5b = L.geoJson(null, {\n",
" onEachFeature: geo_json_4cadddbb10f3b14715e686e555046b5b_onEachFeature,\n",
" \n",
" style: geo_json_4cadddbb10f3b14715e686e555046b5b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4cadddbb10f3b14715e686e555046b5b_add (data) {\n",
" geo_json_4cadddbb10f3b14715e686e555046b5b\n",
" .addData(data);\n",
" }\n",
" geo_json_4cadddbb10f3b14715e686e555046b5b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079704711346162, 52.32698021118112], [-2.0796416972925678, 52.32696892707339], [-2.0796425002715115, 52.326949577832096], [-2.0796838570775513, 52.326930198459294], [-2.0797191631863114, 52.32692171749105], [-2.079737363974329, 52.3269323558515], [-2.079704711346162, 52.32698021118112]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4cadddbb10f3b14715e686e555046b5b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d83fa2aff20c0a1c43f9a589e9f3a290 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c4d30e39e445e1b06596233207d60883 = $(`&lt;div id=&quot;html_c4d30e39e445e1b06596233207d60883&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 35&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 26.0 sqm&lt;/div&gt;`)[0];\n",
" popup_d83fa2aff20c0a1c43f9a589e9f3a290.setContent(html_c4d30e39e445e1b06596233207d60883);\n",
" \n",
" \n",
"\n",
" geo_json_4cadddbb10f3b14715e686e555046b5b.bindPopup(popup_d83fa2aff20c0a1c43f9a589e9f3a290)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4cadddbb10f3b14715e686e555046b5b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_36f8f949b5655dde1167b8bfd70342ff_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_36f8f949b5655dde1167b8bfd70342ff_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_36f8f949b5655dde1167b8bfd70342ff = L.geoJson(null, {\n",
" onEachFeature: geo_json_36f8f949b5655dde1167b8bfd70342ff_onEachFeature,\n",
" \n",
" style: geo_json_36f8f949b5655dde1167b8bfd70342ff_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_36f8f949b5655dde1167b8bfd70342ff_add (data) {\n",
" geo_json_36f8f949b5655dde1167b8bfd70342ff\n",
" .addData(data);\n",
" }\n",
" geo_json_36f8f949b5655dde1167b8bfd70342ff_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0810572931369022, 52.327275628111614], [-2.0810044163855674, 52.32728530557974], [-2.08100300987483, 52.32728566435416], [-2.081001754799079, 52.32728619294257], [-2.0810002718021967, 52.327287252109336], [-2.0809657817208724, 52.32732150149676], [-2.0809073287288915, 52.32732140052125], [-2.0808617634001068, 52.32730287246363], [-2.08087319740443, 52.32725664062982], [-2.0808731898252986, 52.32725570655426], [-2.0808727372843414, 52.327254573201], [-2.080871824190145, 52.327253548947354], [-2.0808705123196813, 52.32725270387103], [-2.080868888333786, 52.32725209455044], [-2.0808670638265583, 52.32725176046811], [-2.0808651606284085, 52.327251725816836], [-2.0808633078752297, 52.32725199229985], [-2.080842789898969, 52.327258275248795], [-2.0808410101372083, 52.327259143123314], [-2.0808399187127806, 52.32726009503644], [-2.080839355373824, 52.3272609602797], [-2.080839094399996, 52.32726187835671], [-2.0808355504323526, 52.32729378249306], [-2.080759280813874, 52.32728469359334], [-2.08075920797607, 52.327244823034015], [-2.080804180692543, 52.32722658074734], [-2.0808371099668355, 52.327230256712376], [-2.0808398038170988, 52.327230162262765], [-2.0808419363081176, 52.32722960880152], [-2.0808431531287983, 52.327229024503296], [-2.08084414518069, 52.32722829651814], [-2.080844864105246, 52.32722745723642], [-2.080845280625407, 52.32722654354953], [-2.0808471069731396, 52.32720862933143], [-2.0808909826491537, 52.32718189563075], [-2.0809225042449238, 52.327181299501184], [-2.08099768952842, 52.32719048164188], [-2.0810280658005307, 52.327208656895195], [-2.081029891851822, 52.32724905937064], [-2.081030097531744, 52.32724999960298], [-2.08103079800767, 52.327251102215435], [-2.0810319442760874, 52.327252055287026], [-2.0810334569748297, 52.32725279144436], [-2.081035230375786, 52.327253261306936], [-2.0810580989623033, 52.32725496359564], [-2.0810572931369022, 52.327275628111614]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_36f8f949b5655dde1167b8bfd70342ff.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0e0d82abf563c5757caf9110526dcb09 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_752543c42fa8921ea9c7be2fb95b61a6 = $(`&lt;div id=&quot;html_752543c42fa8921ea9c7be2fb95b61a6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 36&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 197.1 sqm&lt;/div&gt;`)[0];\n",
" popup_0e0d82abf563c5757caf9110526dcb09.setContent(html_752543c42fa8921ea9c7be2fb95b61a6);\n",
" \n",
" \n",
"\n",
" geo_json_36f8f949b5655dde1167b8bfd70342ff.bindPopup(popup_0e0d82abf563c5757caf9110526dcb09)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_36f8f949b5655dde1167b8bfd70342ff.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_eaab62794b0633a83d3aac9fb073977e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_eaab62794b0633a83d3aac9fb073977e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_eaab62794b0633a83d3aac9fb073977e = L.geoJson(null, {\n",
" onEachFeature: geo_json_eaab62794b0633a83d3aac9fb073977e_onEachFeature,\n",
" \n",
" style: geo_json_eaab62794b0633a83d3aac9fb073977e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_eaab62794b0633a83d3aac9fb073977e_add (data) {\n",
" geo_json_eaab62794b0633a83d3aac9fb073977e\n",
" .addData(data);\n",
" }\n",
" geo_json_eaab62794b0633a83d3aac9fb073977e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079971280586459, 52.32184761707816], [-2.079930341450826, 52.32185593204424], [-2.079911406243686, 52.32184532386837], [-2.0799113544508536, 52.32181666763402], [-2.0799425452534885, 52.32179751261783], [-2.0799776643278642, 52.32180795606237], [-2.079971280586459, 52.32184761707816]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_eaab62794b0633a83d3aac9fb073977e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_31d6d093fe4dc2eb10304466c300fbe7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_60fd5cbc0e8fc8072861099a9b24c111 = $(`&lt;div id=&quot;html_60fd5cbc0e8fc8072861099a9b24c111&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 37&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 22.3 sqm&lt;/div&gt;`)[0];\n",
" popup_31d6d093fe4dc2eb10304466c300fbe7.setContent(html_60fd5cbc0e8fc8072861099a9b24c111);\n",
" \n",
" \n",
"\n",
" geo_json_eaab62794b0633a83d3aac9fb073977e.bindPopup(popup_31d6d093fe4dc2eb10304466c300fbe7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_eaab62794b0633a83d3aac9fb073977e.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_59f74560dfc02733c9762d5bec1564d7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_59f74560dfc02733c9762d5bec1564d7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_59f74560dfc02733c9762d5bec1564d7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_59f74560dfc02733c9762d5bec1564d7_onEachFeature,\n",
" \n",
" style: geo_json_59f74560dfc02733c9762d5bec1564d7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_59f74560dfc02733c9762d5bec1564d7_add (data) {\n",
" geo_json_59f74560dfc02733c9762d5bec1564d7\n",
" .addData(data);\n",
" }\n",
" geo_json_59f74560dfc02733c9762d5bec1564d7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079697418734013, 52.32189171089806], [-2.0796526082466515, 52.32189219971983], [-2.0796470018586244, 52.32180891108658], [-2.079689091788981, 52.32179682495139], [-2.079710250734169, 52.32178849649173], [-2.0797284254218966, 52.321798850789556], [-2.0797288609338853, 52.3218629964853], [-2.079697418734013, 52.32189171089806]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_59f74560dfc02733c9762d5bec1564d7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5da53658552d2ac2641acb2f46f4cf69 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_de41eb86131bb5b379278a0237477c28 = $(`&lt;div id=&quot;html_de41eb86131bb5b379278a0237477c28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 38&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 53.0 sqm&lt;br&gt;Intersecting area: 12.6 sqm&lt;/div&gt;`)[0];\n",
" popup_5da53658552d2ac2641acb2f46f4cf69.setContent(html_de41eb86131bb5b379278a0237477c28);\n",
" \n",
" \n",
"\n",
" geo_json_59f74560dfc02733c9762d5bec1564d7.bindPopup(popup_5da53658552d2ac2641acb2f46f4cf69)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_59f74560dfc02733c9762d5bec1564d7.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_87cf9bf236434d0db6b256acf0d08731_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_87cf9bf236434d0db6b256acf0d08731_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_87cf9bf236434d0db6b256acf0d08731 = L.geoJson(null, {\n",
" onEachFeature: geo_json_87cf9bf236434d0db6b256acf0d08731_onEachFeature,\n",
" \n",
" style: geo_json_87cf9bf236434d0db6b256acf0d08731_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_87cf9bf236434d0db6b256acf0d08731_add (data) {\n",
" geo_json_87cf9bf236434d0db6b256acf0d08731\n",
" .addData(data);\n",
" }\n",
" geo_json_87cf9bf236434d0db6b256acf0d08731_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0803693843123345, 52.32186455957794], [-2.0803228323263743, 52.32185372757861], [-2.080340342591404, 52.32181484290014], [-2.080400340318766, 52.32181480195036], [-2.0804173635841265, 52.32183328766612], [-2.0803693843123345, 52.32186455957794]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_87cf9bf236434d0db6b256acf0d08731.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_dc69e8278c803e4c5275ecd2782f28bb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ed2c4ab8739d2977b941c47b46bf7853 = $(`&lt;div id=&quot;html_ed2c4ab8739d2977b941c47b46bf7853&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 39&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 24.3 sqm&lt;/div&gt;`)[0];\n",
" popup_dc69e8278c803e4c5275ecd2782f28bb.setContent(html_ed2c4ab8739d2977b941c47b46bf7853);\n",
" \n",
" \n",
"\n",
" geo_json_87cf9bf236434d0db6b256acf0d08731.bindPopup(popup_dc69e8278c803e4c5275ecd2782f28bb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_87cf9bf236434d0db6b256acf0d08731.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_809bd26763d2461c3764b8c896da50d4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_809bd26763d2461c3764b8c896da50d4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_809bd26763d2461c3764b8c896da50d4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_809bd26763d2461c3764b8c896da50d4_onEachFeature,\n",
" \n",
" style: geo_json_809bd26763d2461c3764b8c896da50d4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_809bd26763d2461c3764b8c896da50d4_add (data) {\n",
" geo_json_809bd26763d2461c3764b8c896da50d4\n",
" .addData(data);\n",
" }\n",
" geo_json_809bd26763d2461c3764b8c896da50d4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080049422260385, 52.321945407047856], [-2.079973013531222, 52.32194589409128], [-2.079941019360081, 52.32193542874885], [-2.079926173890608, 52.32189767008529], [-2.0799712231532963, 52.32186047580117], [-2.080017999151295, 52.32185082990358], [-2.0800656595384273, 52.321861279185626], [-2.0800808298427707, 52.32190821390579], [-2.080049422260385, 52.321945407047856]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_809bd26763d2461c3764b8c896da50d4.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d70da8b9770f4a55b31dd37b711e4c3c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f04b87e3199201ae4537ea05a30e3608 = $(`&lt;div id=&quot;html_f04b87e3199201ae4537ea05a30e3608&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 40&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 85.0 sqm&lt;br&gt;Intersecting area: 85.1 sqm&lt;/div&gt;`)[0];\n",
" popup_d70da8b9770f4a55b31dd37b711e4c3c.setContent(html_f04b87e3199201ae4537ea05a30e3608);\n",
" \n",
" \n",
"\n",
" geo_json_809bd26763d2461c3764b8c896da50d4.bindPopup(popup_d70da8b9770f4a55b31dd37b711e4c3c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_809bd26763d2461c3764b8c896da50d4.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2f231406fa2304c839d882a86278cd4c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2f231406fa2304c839d882a86278cd4c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2f231406fa2304c839d882a86278cd4c = L.geoJson(null, {\n",
" onEachFeature: geo_json_2f231406fa2304c839d882a86278cd4c_onEachFeature,\n",
" \n",
" style: geo_json_2f231406fa2304c839d882a86278cd4c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2f231406fa2304c839d882a86278cd4c_add (data) {\n",
" geo_json_2f231406fa2304c839d882a86278cd4c\n",
" .addData(data);\n",
" }\n",
" geo_json_2f231406fa2304c839d882a86278cd4c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0804293617785685, 52.321918673805946], [-2.080396302514722, 52.321908294717105], [-2.0803986217265416, 52.321887114018416], [-2.080447021434622, 52.32188855445627], [-2.080447516334327, 52.32191622685686], [-2.0804293617785685, 52.321918673805946]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2f231406fa2304c839d882a86278cd4c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4bb5104275d374637bbeed38b91c500f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_af931caea73a2130e5d7a566def35fad = $(`&lt;div id=&quot;html_af931caea73a2130e5d7a566def35fad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 41&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 10.3 sqm&lt;/div&gt;`)[0];\n",
" popup_4bb5104275d374637bbeed38b91c500f.setContent(html_af931caea73a2130e5d7a566def35fad);\n",
" \n",
" \n",
"\n",
" geo_json_2f231406fa2304c839d882a86278cd4c.bindPopup(popup_4bb5104275d374637bbeed38b91c500f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2f231406fa2304c839d882a86278cd4c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_763dc979c9dc5d103ad24f67b9835d75_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_763dc979c9dc5d103ad24f67b9835d75_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_763dc979c9dc5d103ad24f67b9835d75 = L.geoJson(null, {\n",
" onEachFeature: geo_json_763dc979c9dc5d103ad24f67b9835d75_onEachFeature,\n",
" \n",
" style: geo_json_763dc979c9dc5d103ad24f67b9835d75_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_763dc979c9dc5d103ad24f67b9835d75_add (data) {\n",
" geo_json_763dc979c9dc5d103ad24f67b9835d75\n",
" .addData(data);\n",
" }\n",
" geo_json_763dc979c9dc5d103ad24f67b9835d75_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079370828824216, 52.322269628749474], [-2.07931207724645, 52.322259670332706], [-2.0793268636716737, 52.32223039726517], [-2.079376147945339, 52.32224791652408], [-2.079370828824216, 52.322269628749474]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_763dc979c9dc5d103ad24f67b9835d75.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4bb64a5136ded9c662cee19966f874cf = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_25fcc0ba4f7580afe2f9ec3e7655fa1b = $(`&lt;div id=&quot;html_25fcc0ba4f7580afe2f9ec3e7655fa1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 42&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.5 sqm&lt;/div&gt;`)[0];\n",
" popup_4bb64a5136ded9c662cee19966f874cf.setContent(html_25fcc0ba4f7580afe2f9ec3e7655fa1b);\n",
" \n",
" \n",
"\n",
" geo_json_763dc979c9dc5d103ad24f67b9835d75.bindPopup(popup_4bb64a5136ded9c662cee19966f874cf)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_763dc979c9dc5d103ad24f67b9835d75.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_bf0b7808071cbf3b65d01c7220d81311_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_bf0b7808071cbf3b65d01c7220d81311_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_bf0b7808071cbf3b65d01c7220d81311 = L.geoJson(null, {\n",
" onEachFeature: geo_json_bf0b7808071cbf3b65d01c7220d81311_onEachFeature,\n",
" \n",
" style: geo_json_bf0b7808071cbf3b65d01c7220d81311_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_bf0b7808071cbf3b65d01c7220d81311_add (data) {\n",
" geo_json_bf0b7808071cbf3b65d01c7220d81311\n",
" .addData(data);\n",
" }\n",
" geo_json_bf0b7808071cbf3b65d01c7220d81311_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0894430086960383, 52.322944703523], [-2.08941090363797, 52.322963587538034], [-2.0893617659563115, 52.32294328090034], [-2.089362911056357, 52.32292401402964], [-2.089395428683289, 52.3229139886561], [-2.0894436119513866, 52.32292596119182], [-2.0894430086960383, 52.322944703523]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_bf0b7808071cbf3b65d01c7220d81311.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_fc4d766401ee2368d747a9bb22932ca4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_035018f42108f1d1be8f0d7db1c09e3c = $(`&lt;div id=&quot;html_035018f42108f1d1be8f0d7db1c09e3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 43&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 21.0 sqm&lt;/div&gt;`)[0];\n",
" popup_fc4d766401ee2368d747a9bb22932ca4.setContent(html_035018f42108f1d1be8f0d7db1c09e3c);\n",
" \n",
" \n",
"\n",
" geo_json_bf0b7808071cbf3b65d01c7220d81311.bindPopup(popup_fc4d766401ee2368d747a9bb22932ca4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_bf0b7808071cbf3b65d01c7220d81311.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_7549ef1261fb02eab7ba07b06cde46bc_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7549ef1261fb02eab7ba07b06cde46bc_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7549ef1261fb02eab7ba07b06cde46bc = L.geoJson(null, {\n",
" onEachFeature: geo_json_7549ef1261fb02eab7ba07b06cde46bc_onEachFeature,\n",
" \n",
" style: geo_json_7549ef1261fb02eab7ba07b06cde46bc_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7549ef1261fb02eab7ba07b06cde46bc_add (data) {\n",
" geo_json_7549ef1261fb02eab7ba07b06cde46bc\n",
" .addData(data);\n",
" }\n",
" geo_json_7549ef1261fb02eab7ba07b06cde46bc_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.08873445560181, 52.32302691987757], [-2.088716439234339, 52.32299805063069], [-2.0887336511869607, 52.32297772879947], [-2.0887796105688894, 52.32297751886218], [-2.0887971962743497, 52.32301621471321], [-2.08873445560181, 52.32302691987757]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7549ef1261fb02eab7ba07b06cde46bc.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_22fb373b277858b81034710b7c07791e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8c93127663500247856ad77d09ada96d = $(`&lt;div id=&quot;html_8c93127663500247856ad77d09ada96d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 44&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.8 sqm&lt;/div&gt;`)[0];\n",
" popup_22fb373b277858b81034710b7c07791e.setContent(html_8c93127663500247856ad77d09ada96d);\n",
" \n",
" \n",
"\n",
" geo_json_7549ef1261fb02eab7ba07b06cde46bc.bindPopup(popup_22fb373b277858b81034710b7c07791e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7549ef1261fb02eab7ba07b06cde46bc.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7_onEachFeature,\n",
" \n",
" style: geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7_add (data) {\n",
" geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7\n",
" .addData(data);\n",
" }\n",
" geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0802065856650147, 52.32198985554689], [-2.080176359636328, 52.32198036629276], [-2.0801786746151327, 52.321959217963105], [-2.0802120461618023, 52.32196059051513], [-2.0802065856650147, 52.32198985554689]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d19bc9c4d1824d6807f9414e54f018ea = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2d2f24b9844a7c10b54a86734b3bc017 = $(`&lt;div id=&quot;html_2d2f24b9844a7c10b54a86734b3bc017&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 45&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 6.2 sqm&lt;/div&gt;`)[0];\n",
" popup_d19bc9c4d1824d6807f9414e54f018ea.setContent(html_2d2f24b9844a7c10b54a86734b3bc017);\n",
" \n",
" \n",
"\n",
" geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7.bindPopup(popup_d19bc9c4d1824d6807f9414e54f018ea)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5b0d4fedf4775b0aaa7f723a96cd16e7.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_46b18b982c8df9ea2fc1c01559ed8208_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_46b18b982c8df9ea2fc1c01559ed8208_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_46b18b982c8df9ea2fc1c01559ed8208 = L.geoJson(null, {\n",
" onEachFeature: geo_json_46b18b982c8df9ea2fc1c01559ed8208_onEachFeature,\n",
" \n",
" style: geo_json_46b18b982c8df9ea2fc1c01559ed8208_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_46b18b982c8df9ea2fc1c01559ed8208_add (data) {\n",
" geo_json_46b18b982c8df9ea2fc1c01559ed8208\n",
" .addData(data);\n",
" }\n",
" geo_json_46b18b982c8df9ea2fc1c01559ed8208_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0800297870361693, 52.322088740396325], [-2.080014503335089, 52.32207805603871], [-2.0800279604433913, 52.32205714377593], [-2.0800647700032773, 52.322049814214566], [-2.0800794118895958, 52.322079572615756], [-2.0800297870361693, 52.322088740396325]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_46b18b982c8df9ea2fc1c01559ed8208.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_145d3e94820e0ac57e4c1bdf100257c1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_dc81c30895b44e617a060b56c29f41ba = $(`&lt;div id=&quot;html_dc81c30895b44e617a060b56c29f41ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 46&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_145d3e94820e0ac57e4c1bdf100257c1.setContent(html_dc81c30895b44e617a060b56c29f41ba);\n",
" \n",
" \n",
"\n",
" geo_json_46b18b982c8df9ea2fc1c01559ed8208.bindPopup(popup_145d3e94820e0ac57e4c1bdf100257c1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_46b18b982c8df9ea2fc1c01559ed8208.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_04b2879533fd77d6adc099500fc608f3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_04b2879533fd77d6adc099500fc608f3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_04b2879533fd77d6adc099500fc608f3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_04b2879533fd77d6adc099500fc608f3_onEachFeature,\n",
" \n",
" style: geo_json_04b2879533fd77d6adc099500fc608f3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_04b2879533fd77d6adc099500fc608f3_add (data) {\n",
" geo_json_04b2879533fd77d6adc099500fc608f3\n",
" .addData(data);\n",
" }\n",
" geo_json_04b2879533fd77d6adc099500fc608f3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0799908581570614, 52.32228707001988], [-2.079944682170148, 52.322287202968596], [-2.0799411390761944, 52.322271853704855], [-2.079940750045685, 52.32227091539049], [-2.07994004277294, 52.32227005011311], [-2.0799271241318027, 52.32225775759019], [-2.079942979410609, 52.32224697836649], [-2.08000670121285, 52.32224846072267], [-2.0799908581570614, 52.32228707001988]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_04b2879533fd77d6adc099500fc608f3.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d6d5124fa498b2ebf8a600bbaa222785 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_77015669aff7f4f4dff5ffe608bff1ab = $(`&lt;div id=&quot;html_77015669aff7f4f4dff5ffe608bff1ab&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 47&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.3 sqm&lt;/div&gt;`)[0];\n",
" popup_d6d5124fa498b2ebf8a600bbaa222785.setContent(html_77015669aff7f4f4dff5ffe608bff1ab);\n",
" \n",
" \n",
"\n",
" geo_json_04b2879533fd77d6adc099500fc608f3.bindPopup(popup_d6d5124fa498b2ebf8a600bbaa222785)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_04b2879533fd77d6adc099500fc608f3.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_dfc39dab179cca7ddcb6c9d3705dd70c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_dfc39dab179cca7ddcb6c9d3705dd70c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_dfc39dab179cca7ddcb6c9d3705dd70c = L.geoJson(null, {\n",
" onEachFeature: geo_json_dfc39dab179cca7ddcb6c9d3705dd70c_onEachFeature,\n",
" \n",
" style: geo_json_dfc39dab179cca7ddcb6c9d3705dd70c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_dfc39dab179cca7ddcb6c9d3705dd70c_add (data) {\n",
" geo_json_dfc39dab179cca7ddcb6c9d3705dd70c\n",
" .addData(data);\n",
" }\n",
" geo_json_dfc39dab179cca7ddcb6c9d3705dd70c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079682115580618, 52.322448963623266], [-2.079619037193743, 52.32243829806133], [-2.0796188680230285, 52.32241035033884], [-2.0796468000660906, 52.32238998302673], [-2.079668677474139, 52.322382059545184], [-2.0796998743711783, 52.32240100146675], [-2.079682115580618, 52.322448963623266]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_dfc39dab179cca7ddcb6c9d3705dd70c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2a4c00d63f09d63ceba597b85546200c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f4533297d1af2bf01ace6885e0d9ae4e = $(`&lt;div id=&quot;html_f4533297d1af2bf01ace6885e0d9ae4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 48&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 29.0 sqm&lt;br&gt;Intersecting area: 28.5 sqm&lt;/div&gt;`)[0];\n",
" popup_2a4c00d63f09d63ceba597b85546200c.setContent(html_f4533297d1af2bf01ace6885e0d9ae4e);\n",
" \n",
" \n",
"\n",
" geo_json_dfc39dab179cca7ddcb6c9d3705dd70c.bindPopup(popup_2a4c00d63f09d63ceba597b85546200c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_dfc39dab179cca7ddcb6c9d3705dd70c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ad13b3d055df5e74a4ed5566a04ce602_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ad13b3d055df5e74a4ed5566a04ce602_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ad13b3d055df5e74a4ed5566a04ce602 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ad13b3d055df5e74a4ed5566a04ce602_onEachFeature,\n",
" \n",
" style: geo_json_ad13b3d055df5e74a4ed5566a04ce602_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ad13b3d055df5e74a4ed5566a04ce602_add (data) {\n",
" geo_json_ad13b3d055df5e74a4ed5566a04ce602\n",
" .addData(data);\n",
" }\n",
" geo_json_ad13b3d055df5e74a4ed5566a04ce602_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0799340657789442, 52.32276359104195], [-2.079900520448635, 52.322763813391965], [-2.079869007542678, 52.32274474497629], [-2.0798540132248995, 52.32272542441679], [-2.079867825851449, 52.32269567816025], [-2.0799456882357883, 52.32268699563046], [-2.079964305991754, 52.32269710415832], [-2.079965100798983, 52.32274392997905], [-2.0799340657789442, 52.32276359104195]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ad13b3d055df5e74a4ed5566a04ce602.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_65492bacbd117191d9ee94f283ce0892 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_efd5f11d6c9be90d9417e4ebc4115aaf = $(`&lt;div id=&quot;html_efd5f11d6c9be90d9417e4ebc4115aaf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 49&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 51.0 sqm&lt;br&gt;Intersecting area: 50.8 sqm&lt;/div&gt;`)[0];\n",
" popup_65492bacbd117191d9ee94f283ce0892.setContent(html_efd5f11d6c9be90d9417e4ebc4115aaf);\n",
" \n",
" \n",
"\n",
" geo_json_ad13b3d055df5e74a4ed5566a04ce602.bindPopup(popup_65492bacbd117191d9ee94f283ce0892)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ad13b3d055df5e74a4ed5566a04ce602.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6_onEachFeature,\n",
" \n",
" style: geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6_add (data) {\n",
" geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6\n",
" .addData(data);\n",
" }\n",
" geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0800808508822612, 52.32288863310755], [-2.080033334535973, 52.32288866541222], [-2.0800442347782013, 52.322866246328815], [-2.08008079814592, 52.32285951747744], [-2.0800808508822612, 52.32288863310755]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5e30178cb67a846db322c1b4c2584839 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_585d85d97cc05829ab2f8955518908a4 = $(`&lt;div id=&quot;html_585d85d97cc05829ab2f8955518908a4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 50&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.1 sqm&lt;/div&gt;`)[0];\n",
" popup_5e30178cb67a846db322c1b4c2584839.setContent(html_585d85d97cc05829ab2f8955518908a4);\n",
" \n",
" \n",
"\n",
" geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6.bindPopup(popup_5e30178cb67a846db322c1b4c2584839)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7b4aee9a991486f87e4d4a13f8fbdfe6.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c032ca652ed9839fcbc3c6e6a1e154cb_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c032ca652ed9839fcbc3c6e6a1e154cb_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c032ca652ed9839fcbc3c6e6a1e154cb = L.geoJson(null, {\n",
" onEachFeature: geo_json_c032ca652ed9839fcbc3c6e6a1e154cb_onEachFeature,\n",
" \n",
" style: geo_json_c032ca652ed9839fcbc3c6e6a1e154cb_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c032ca652ed9839fcbc3c6e6a1e154cb_add (data) {\n",
" geo_json_c032ca652ed9839fcbc3c6e6a1e154cb\n",
" .addData(data);\n",
" }\n",
" geo_json_c032ca652ed9839fcbc3c6e6a1e154cb_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0802292811432954, 52.32308622747797], [-2.0801834850079692, 52.32311424426336], [-2.0801210043278306, 52.32311418879861], [-2.0801041283100044, 52.323102679339534], [-2.0801184207407797, 52.32304950067093], [-2.08013529322401, 52.32302021530103], [-2.080183428237631, 52.32301983910938], [-2.08022938609058, 52.32305674044779], [-2.0802292811432954, 52.32308622747797]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c032ca652ed9839fcbc3c6e6a1e154cb.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_456860cc8fde8e597283943774d3acb4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a0e3a78c095ed5d4a3a263e4088ae0d0 = $(`&lt;div id=&quot;html_a0e3a78c095ed5d4a3a263e4088ae0d0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 51&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 69.0 sqm&lt;br&gt;Intersecting area: 69.5 sqm&lt;/div&gt;`)[0];\n",
" popup_456860cc8fde8e597283943774d3acb4.setContent(html_a0e3a78c095ed5d4a3a263e4088ae0d0);\n",
" \n",
" \n",
"\n",
" geo_json_c032ca652ed9839fcbc3c6e6a1e154cb.bindPopup(popup_456860cc8fde8e597283943774d3acb4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c032ca652ed9839fcbc3c6e6a1e154cb.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_486a7c64362e6a2459998c9ff4a45472_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_486a7c64362e6a2459998c9ff4a45472_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_486a7c64362e6a2459998c9ff4a45472 = L.geoJson(null, {\n",
" onEachFeature: geo_json_486a7c64362e6a2459998c9ff4a45472_onEachFeature,\n",
" \n",
" style: geo_json_486a7c64362e6a2459998c9ff4a45472_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_486a7c64362e6a2459998c9ff4a45472_add (data) {\n",
" geo_json_486a7c64362e6a2459998c9ff4a45472\n",
" .addData(data);\n",
" }\n",
" geo_json_486a7c64362e6a2459998c9ff4a45472_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0802244757060278, 52.323204077891035], [-2.080179451197349, 52.323194067402476], [-2.0801944388919638, 52.32317317565836], [-2.080242665276473, 52.323182631061435], [-2.0802244757060278, 52.323204077891035]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_486a7c64362e6a2459998c9ff4a45472.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f4159cb2b55b7d3b8fc8eb5c069aa985 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cff1d9be915f87cf6e7bc4e9236feba4 = $(`&lt;div id=&quot;html_cff1d9be915f87cf6e7bc4e9236feba4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 52&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 8.7 sqm&lt;/div&gt;`)[0];\n",
" popup_f4159cb2b55b7d3b8fc8eb5c069aa985.setContent(html_cff1d9be915f87cf6e7bc4e9236feba4);\n",
" \n",
" \n",
"\n",
" geo_json_486a7c64362e6a2459998c9ff4a45472.bindPopup(popup_f4159cb2b55b7d3b8fc8eb5c069aa985)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_486a7c64362e6a2459998c9ff4a45472.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_9f59cb6639435179b9dd1b29cb50811f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9f59cb6639435179b9dd1b29cb50811f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9f59cb6639435179b9dd1b29cb50811f = L.geoJson(null, {\n",
" onEachFeature: geo_json_9f59cb6639435179b9dd1b29cb50811f_onEachFeature,\n",
" \n",
" style: geo_json_9f59cb6639435179b9dd1b29cb50811f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9f59cb6639435179b9dd1b29cb50811f_add (data) {\n",
" geo_json_9f59cb6639435179b9dd1b29cb50811f\n",
" .addData(data);\n",
" }\n",
" geo_json_9f59cb6639435179b9dd1b29cb50811f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079008183545688, 52.322341486782], [-2.0789600039944522, 52.32234034318387], [-2.078972687383621, 52.322304032243764], [-2.0789771676204167, 52.322292250275], [-2.0790237648436247, 52.32229384264367], [-2.079008183545688, 52.322341486782]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9f59cb6639435179b9dd1b29cb50811f.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d3acea38f1955db6fad484edf3b1322d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3dfba40cdc0a392780b49f96cd0dabb3 = $(`&lt;div id=&quot;html_3dfba40cdc0a392780b49f96cd0dabb3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 53&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 17.0 sqm&lt;br&gt;Intersecting area: 17.4 sqm&lt;/div&gt;`)[0];\n",
" popup_d3acea38f1955db6fad484edf3b1322d.setContent(html_3dfba40cdc0a392780b49f96cd0dabb3);\n",
" \n",
" \n",
"\n",
" geo_json_9f59cb6639435179b9dd1b29cb50811f.bindPopup(popup_d3acea38f1955db6fad484edf3b1322d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9f59cb6639435179b9dd1b29cb50811f.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2c573d8399c7f8e51fa2886f63cba77e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2c573d8399c7f8e51fa2886f63cba77e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2c573d8399c7f8e51fa2886f63cba77e = L.geoJson(null, {\n",
" onEachFeature: geo_json_2c573d8399c7f8e51fa2886f63cba77e_onEachFeature,\n",
" \n",
" style: geo_json_2c573d8399c7f8e51fa2886f63cba77e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2c573d8399c7f8e51fa2886f63cba77e_add (data) {\n",
" geo_json_2c573d8399c7f8e51fa2886f63cba77e\n",
" .addData(data);\n",
" }\n",
" geo_json_2c573d8399c7f8e51fa2886f63cba77e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0795376480041963, 52.32238576578154], [-2.079502030416218, 52.322394463579954], [-2.0794426262116863, 52.322339035030126], [-2.0794585249982465, 52.32231075011941], [-2.0794936487694153, 52.32231058886437], [-2.079538800991418, 52.3223562888307], [-2.0795376480041963, 52.32238576578154]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2c573d8399c7f8e51fa2886f63cba77e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c9d534a254f30fad7375ebaf86428274 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3b860fc452610ba4de477076a1173b57 = $(`&lt;div id=&quot;html_3b860fc452610ba4de477076a1173b57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 54&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 38.0 sqm&lt;br&gt;Intersecting area: 37.7 sqm&lt;/div&gt;`)[0];\n",
" popup_c9d534a254f30fad7375ebaf86428274.setContent(html_3b860fc452610ba4de477076a1173b57);\n",
" \n",
" \n",
"\n",
" geo_json_2c573d8399c7f8e51fa2886f63cba77e.bindPopup(popup_c9d534a254f30fad7375ebaf86428274)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2c573d8399c7f8e51fa2886f63cba77e.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4bf1ac81074929585efc77f287406c47_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4bf1ac81074929585efc77f287406c47_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4bf1ac81074929585efc77f287406c47 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4bf1ac81074929585efc77f287406c47_onEachFeature,\n",
" \n",
" style: geo_json_4bf1ac81074929585efc77f287406c47_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4bf1ac81074929585efc77f287406c47_add (data) {\n",
" geo_json_4bf1ac81074929585efc77f287406c47\n",
" .addData(data);\n",
" }\n",
" geo_json_4bf1ac81074929585efc77f287406c47_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080313272669099, 52.32334814824921], [-2.080267740932417, 52.32334735938932], [-2.0802512998451226, 52.32331444308856], [-2.0802504644640667, 52.32331333516556], [-2.0802488676441917, 52.32331224843698], [-2.0802073793226117, 52.32329191659807], [-2.080222305344509, 52.32323702485591], [-2.080269186223916, 52.32323508069396], [-2.0803172670881485, 52.32325403341573], [-2.0803328861138604, 52.323281853721795], [-2.080313272669099, 52.32334814824921]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4bf1ac81074929585efc77f287406c47.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_091809b78f9e5b8a00501974af1b564a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_dec7bc0f6b9ba5e83eba88313fcd855b = $(`&lt;div id=&quot;html_dec7bc0f6b9ba5e83eba88313fcd855b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 55&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 74.0 sqm&lt;br&gt;Intersecting area: 74.2 sqm&lt;/div&gt;`)[0];\n",
" popup_091809b78f9e5b8a00501974af1b564a.setContent(html_dec7bc0f6b9ba5e83eba88313fcd855b);\n",
" \n",
" \n",
"\n",
" geo_json_4bf1ac81074929585efc77f287406c47.bindPopup(popup_091809b78f9e5b8a00501974af1b564a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4bf1ac81074929585efc77f287406c47.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_32201ddea422b22785970bb4da4ff7db_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_32201ddea422b22785970bb4da4ff7db_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_32201ddea422b22785970bb4da4ff7db = L.geoJson(null, {\n",
" onEachFeature: geo_json_32201ddea422b22785970bb4da4ff7db_onEachFeature,\n",
" \n",
" style: geo_json_32201ddea422b22785970bb4da4ff7db_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_32201ddea422b22785970bb4da4ff7db_add (data) {\n",
" geo_json_32201ddea422b22785970bb4da4ff7db\n",
" .addData(data);\n",
" }\n",
" geo_json_32201ddea422b22785970bb4da4ff7db_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080877981373994, 52.324991936033], [-2.08081607154334, 52.32501986523055], [-2.0807676880912593, 52.3250075162238], [-2.0807683720986194, 52.32498035277248], [-2.080809984192281, 52.32496063209503], [-2.0808598728083116, 52.32495201311209], [-2.0808790379120485, 52.324963925447285], [-2.080877981373994, 52.324991936033]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_32201ddea422b22785970bb4da4ff7db.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f7b0941c54bbeeabdd46e200f59019ec = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9dd7ae3f8a7c0c18349acd47786c4fe7 = $(`&lt;div id=&quot;html_9dd7ae3f8a7c0c18349acd47786c4fe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 56&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 40.0 sqm&lt;br&gt;Intersecting area: 39.6 sqm&lt;/div&gt;`)[0];\n",
" popup_f7b0941c54bbeeabdd46e200f59019ec.setContent(html_9dd7ae3f8a7c0c18349acd47786c4fe7);\n",
" \n",
" \n",
"\n",
" geo_json_32201ddea422b22785970bb4da4ff7db.bindPopup(popup_f7b0941c54bbeeabdd46e200f59019ec)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_32201ddea422b22785970bb4da4ff7db.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_36b8ff55288ae395f26dcdc03b6f7c9e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_36b8ff55288ae395f26dcdc03b6f7c9e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_36b8ff55288ae395f26dcdc03b6f7c9e = L.geoJson(null, {\n",
" onEachFeature: geo_json_36b8ff55288ae395f26dcdc03b6f7c9e_onEachFeature,\n",
" \n",
" style: geo_json_36b8ff55288ae395f26dcdc03b6f7c9e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_36b8ff55288ae395f26dcdc03b6f7c9e_add (data) {\n",
" geo_json_36b8ff55288ae395f26dcdc03b6f7c9e\n",
" .addData(data);\n",
" }\n",
" geo_json_36b8ff55288ae395f26dcdc03b6f7c9e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0803049882488076, 52.325280805619286], [-2.080258068396056, 52.32528106326286], [-2.0801969280904786, 52.32525318316216], [-2.080181613713983, 52.32521488366353], [-2.0802276120614374, 52.325177436932854], [-2.0803019647677568, 52.325176910673505], [-2.0803507327906217, 52.32519657582506], [-2.080365567608421, 52.32525187969085], [-2.0803049882488076, 52.325280805619286]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_36b8ff55288ae395f26dcdc03b6f7c9e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_943afb29c1973fd29df92fabe736c2f8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_47fa54e3b427da0c618234a670d2f500 = $(`&lt;div id=&quot;html_47fa54e3b427da0c618234a670d2f500&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 57&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 111.0 sqm&lt;br&gt;Intersecting area: 110.7 sqm&lt;/div&gt;`)[0];\n",
" popup_943afb29c1973fd29df92fabe736c2f8.setContent(html_47fa54e3b427da0c618234a670d2f500);\n",
" \n",
" \n",
"\n",
" geo_json_36b8ff55288ae395f26dcdc03b6f7c9e.bindPopup(popup_943afb29c1973fd29df92fabe736c2f8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_36b8ff55288ae395f26dcdc03b6f7c9e.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_a8493aa0d896f5e00baf087a3bb7d464_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a8493aa0d896f5e00baf087a3bb7d464_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a8493aa0d896f5e00baf087a3bb7d464 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a8493aa0d896f5e00baf087a3bb7d464_onEachFeature,\n",
" \n",
" style: geo_json_a8493aa0d896f5e00baf087a3bb7d464_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a8493aa0d896f5e00baf087a3bb7d464_add (data) {\n",
" geo_json_a8493aa0d896f5e00baf087a3bb7d464\n",
" .addData(data);\n",
" }\n",
" geo_json_a8493aa0d896f5e00baf087a3bb7d464_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0795544361354485, 52.32558728472805], [-2.0795238661752435, 52.325586912507674], [-2.0794922937111053, 52.32556675532806], [-2.079494130214262, 52.325546880360875], [-2.079539748222586, 52.32553729027905], [-2.0795736800544606, 52.32555743506171], [-2.0795544361354485, 52.32558728472805]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a8493aa0d896f5e00baf087a3bb7d464.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6c5c2be782b8dd83da534249091eb9f9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_dee3f36103a6e42dca082a7aca6679a9 = $(`&lt;div id=&quot;html_dee3f36103a6e42dca082a7aca6679a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 58&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.6 sqm&lt;/div&gt;`)[0];\n",
" popup_6c5c2be782b8dd83da534249091eb9f9.setContent(html_dee3f36103a6e42dca082a7aca6679a9);\n",
" \n",
" \n",
"\n",
" geo_json_a8493aa0d896f5e00baf087a3bb7d464.bindPopup(popup_6c5c2be782b8dd83da534249091eb9f9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a8493aa0d896f5e00baf087a3bb7d464.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_af3864d54534269ba5e0ace1cb266cb1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_af3864d54534269ba5e0ace1cb266cb1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_af3864d54534269ba5e0ace1cb266cb1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_af3864d54534269ba5e0ace1cb266cb1_onEachFeature,\n",
" \n",
" style: geo_json_af3864d54534269ba5e0ace1cb266cb1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_af3864d54534269ba5e0ace1cb266cb1_add (data) {\n",
" geo_json_af3864d54534269ba5e0ace1cb266cb1\n",
" .addData(data);\n",
" }\n",
" geo_json_af3864d54534269ba5e0ace1cb266cb1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.088632419617283, 52.32435716599358], [-2.088616273919567, 52.32433729271817], [-2.088619613499646, 52.32432638509612], [-2.0886516059779434, 52.32432680064047], [-2.088652637048488, 52.32435661316427], [-2.088632419617283, 52.32435716599358]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_af3864d54534269ba5e0ace1cb266cb1.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_950cd5a6815f43a989bddafce015d7a1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d5b7964aaa73fe061360bb89b1a91dff = $(`&lt;div id=&quot;html_d5b7964aaa73fe061360bb89b1a91dff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 59&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.9 sqm&lt;/div&gt;`)[0];\n",
" popup_950cd5a6815f43a989bddafce015d7a1.setContent(html_d5b7964aaa73fe061360bb89b1a91dff);\n",
" \n",
" \n",
"\n",
" geo_json_af3864d54534269ba5e0ace1cb266cb1.bindPopup(popup_950cd5a6815f43a989bddafce015d7a1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_af3864d54534269ba5e0ace1cb266cb1.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_44d265376490ede51d04befb7bae56bc_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_44d265376490ede51d04befb7bae56bc_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_44d265376490ede51d04befb7bae56bc = L.geoJson(null, {\n",
" onEachFeature: geo_json_44d265376490ede51d04befb7bae56bc_onEachFeature,\n",
" \n",
" style: geo_json_44d265376490ede51d04befb7bae56bc_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_44d265376490ede51d04befb7bae56bc_add (data) {\n",
" geo_json_44d265376490ede51d04befb7bae56bc\n",
" .addData(data);\n",
" }\n",
" geo_json_44d265376490ede51d04befb7bae56bc_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.088875315522234, 52.32485022662023], [-2.0888282356904972, 52.324888194477246], [-2.088723657483836, 52.32488841533766], [-2.0886765060137944, 52.324860009452806], [-2.0886760591554836, 52.32482228601685], [-2.0887353182032684, 52.32475847211595], [-2.088782550874374, 52.32474842863977], [-2.0888749907382644, 52.32477695585352], [-2.0888898587458766, 52.32479610724021], [-2.088875315522234, 52.32485022662023]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_44d265376490ede51d04befb7bae56bc.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_856ee570ceedae3288325a63987707fe = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_07a2d26b5eb87efb7d171cbece426fcf = $(`&lt;div id=&quot;html_07a2d26b5eb87efb7d171cbece426fcf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 60&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 173.0 sqm&lt;br&gt;Intersecting area: 172.6 sqm&lt;/div&gt;`)[0];\n",
" popup_856ee570ceedae3288325a63987707fe.setContent(html_07a2d26b5eb87efb7d171cbece426fcf);\n",
" \n",
" \n",
"\n",
" geo_json_44d265376490ede51d04befb7bae56bc.bindPopup(popup_856ee570ceedae3288325a63987707fe)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_44d265376490ede51d04befb7bae56bc.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_50133bd89c9b8c484b9fbd3bc489ddab_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_50133bd89c9b8c484b9fbd3bc489ddab_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_50133bd89c9b8c484b9fbd3bc489ddab = L.geoJson(null, {\n",
" onEachFeature: geo_json_50133bd89c9b8c484b9fbd3bc489ddab_onEachFeature,\n",
" \n",
" style: geo_json_50133bd89c9b8c484b9fbd3bc489ddab_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_50133bd89c9b8c484b9fbd3bc489ddab_add (data) {\n",
" geo_json_50133bd89c9b8c484b9fbd3bc489ddab\n",
" .addData(data);\n",
" }\n",
" geo_json_50133bd89c9b8c484b9fbd3bc489ddab_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0887836769898005, 52.325122256404356], [-2.088765290870836, 52.3251201431807], [-2.0887659690103115, 52.325100540439294], [-2.0888145796305024, 52.325099908649015], [-2.0888155487320064, 52.32512071753006], [-2.0887836769898005, 52.325122256404356]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_50133bd89c9b8c484b9fbd3bc489ddab.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_462605b1eabe72b214bb3bda7ef26a0a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b16966a37a3559508241ea468281ded2 = $(`&lt;div id=&quot;html_b16966a37a3559508241ea468281ded2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 61&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 7.9 sqm&lt;/div&gt;`)[0];\n",
" popup_462605b1eabe72b214bb3bda7ef26a0a.setContent(html_b16966a37a3559508241ea468281ded2);\n",
" \n",
" \n",
"\n",
" geo_json_50133bd89c9b8c484b9fbd3bc489ddab.bindPopup(popup_462605b1eabe72b214bb3bda7ef26a0a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_50133bd89c9b8c484b9fbd3bc489ddab.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_04611ee313ca641809e730ebcbff9b72_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_04611ee313ca641809e730ebcbff9b72_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_04611ee313ca641809e730ebcbff9b72 = L.geoJson(null, {\n",
" onEachFeature: geo_json_04611ee313ca641809e730ebcbff9b72_onEachFeature,\n",
" \n",
" style: geo_json_04611ee313ca641809e730ebcbff9b72_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_04611ee313ca641809e730ebcbff9b72_add (data) {\n",
" geo_json_04611ee313ca641809e730ebcbff9b72\n",
" .addData(data);\n",
" }\n",
" geo_json_04611ee313ca641809e730ebcbff9b72_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0877815984344905, 52.32327991054795], [-2.087736014525491, 52.3232794779197], [-2.087704684648628, 52.323251009509114], [-2.087719676400837, 52.323213228714955], [-2.0877525888194097, 52.323202965262205], [-2.087814902999142, 52.32322328522147], [-2.0877815984344905, 52.32327991054795]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_04611ee313ca641809e730ebcbff9b72.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_afa5bceaad5fd482481003ae39accac7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8c13bc0f4c3ba1bae93e16f5d3105be4 = $(`&lt;div id=&quot;html_8c13bc0f4c3ba1bae93e16f5d3105be4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 62&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 44.0 sqm&lt;br&gt;Intersecting area: 44.2 sqm&lt;/div&gt;`)[0];\n",
" popup_afa5bceaad5fd482481003ae39accac7.setContent(html_8c13bc0f4c3ba1bae93e16f5d3105be4);\n",
" \n",
" \n",
"\n",
" geo_json_04611ee313ca641809e730ebcbff9b72.bindPopup(popup_afa5bceaad5fd482481003ae39accac7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_04611ee313ca641809e730ebcbff9b72.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b = L.geoJson(null, {\n",
" onEachFeature: geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b_onEachFeature,\n",
" \n",
" style: geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b_add (data) {\n",
" geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b\n",
" .addData(data);\n",
" }\n",
" geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0874042869344813, 52.32329707652947], [-2.087343635190657, 52.32335179632464], [-2.087194416798048, 52.323343246619274], [-2.08714777150119, 52.323314993478355], [-2.0871630078032157, 52.32326704285695], [-2.087262053167631, 52.323238996514306], [-2.0873422383885565, 52.32323069306993], [-2.087346148001253, 52.3232542229192], [-2.087346687229947, 52.3232553525875], [-2.0873476869085255, 52.323256356948036], [-2.0873497225584563, 52.32325742527191], [-2.0874043994817857, 52.323276817929745], [-2.0874042869344813, 52.32329707652947]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a362627402b8f0187f83060e963aef5f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_be789a1324838ff9b758ec443cc93a82 = $(`&lt;div id=&quot;html_be789a1324838ff9b758ec443cc93a82&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 63&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 168.0 sqm&lt;br&gt;Intersecting area: 167.7 sqm&lt;/div&gt;`)[0];\n",
" popup_a362627402b8f0187f83060e963aef5f.setContent(html_be789a1324838ff9b758ec443cc93a82);\n",
" \n",
" \n",
"\n",
" geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b.bindPopup(popup_a362627402b8f0187f83060e963aef5f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_84085bed5e385dd2c80bdfbbd8ad4b0b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ed146a5cabee1147a4845b342d2735cc_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ed146a5cabee1147a4845b342d2735cc_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ed146a5cabee1147a4845b342d2735cc = L.geoJson(null, {\n",
" onEachFeature: geo_json_ed146a5cabee1147a4845b342d2735cc_onEachFeature,\n",
" \n",
" style: geo_json_ed146a5cabee1147a4845b342d2735cc_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ed146a5cabee1147a4845b342d2735cc_add (data) {\n",
" geo_json_ed146a5cabee1147a4845b342d2735cc\n",
" .addData(data);\n",
" }\n",
" geo_json_ed146a5cabee1147a4845b342d2735cc_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0881367994890363, 52.32551727610514], [-2.0881342882082716, 52.32549774768011], [-2.088137737328802, 52.32548648218061], [-2.0881697306395206, 52.325486897854994], [-2.088170761358513, 52.325516682508365], [-2.0881367994890363, 52.32551727610514]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ed146a5cabee1147a4845b342d2735cc.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_02823c843102eefc1f9ba2e2829e94c4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b8dbc5745cef49c7f44fa4c646672941 = $(`&lt;div id=&quot;html_b8dbc5745cef49c7f44fa4c646672941&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 64&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 7.9 sqm&lt;/div&gt;`)[0];\n",
" popup_02823c843102eefc1f9ba2e2829e94c4.setContent(html_b8dbc5745cef49c7f44fa4c646672941);\n",
" \n",
" \n",
"\n",
" geo_json_ed146a5cabee1147a4845b342d2735cc.bindPopup(popup_02823c843102eefc1f9ba2e2829e94c4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ed146a5cabee1147a4845b342d2735cc.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_1cbbe0a7ec6e35bb8645335eac19c54a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1cbbe0a7ec6e35bb8645335eac19c54a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1cbbe0a7ec6e35bb8645335eac19c54a = L.geoJson(null, {\n",
" onEachFeature: geo_json_1cbbe0a7ec6e35bb8645335eac19c54a_onEachFeature,\n",
" \n",
" style: geo_json_1cbbe0a7ec6e35bb8645335eac19c54a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1cbbe0a7ec6e35bb8645335eac19c54a_add (data) {\n",
" geo_json_1cbbe0a7ec6e35bb8645335eac19c54a\n",
" .addData(data);\n",
" }\n",
" geo_json_1cbbe0a7ec6e35bb8645335eac19c54a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0873045153261103, 52.32693853476126], [-2.0872592059364314, 52.326928171175986], [-2.0872913855697175, 52.32690724153506], [-2.0873090280886353, 52.32690992911196], [-2.0873045153261103, 52.32693853476126]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1cbbe0a7ec6e35bb8645335eac19c54a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_582d8dcbb1e66f2fa7f3027d64092b8c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b33dac1f0f6a621026a5a74a0116cef4 = $(`&lt;div id=&quot;html_b33dac1f0f6a621026a5a74a0116cef4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 65&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.8 sqm&lt;/div&gt;`)[0];\n",
" popup_582d8dcbb1e66f2fa7f3027d64092b8c.setContent(html_b33dac1f0f6a621026a5a74a0116cef4);\n",
" \n",
" \n",
"\n",
" geo_json_1cbbe0a7ec6e35bb8645335eac19c54a.bindPopup(popup_582d8dcbb1e66f2fa7f3027d64092b8c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1cbbe0a7ec6e35bb8645335eac19c54a.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_cf8197b3c7c54141f66d3b15ee7b8327_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cf8197b3c7c54141f66d3b15ee7b8327_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cf8197b3c7c54141f66d3b15ee7b8327 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cf8197b3c7c54141f66d3b15ee7b8327_onEachFeature,\n",
" \n",
" style: geo_json_cf8197b3c7c54141f66d3b15ee7b8327_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cf8197b3c7c54141f66d3b15ee7b8327_add (data) {\n",
" geo_json_cf8197b3c7c54141f66d3b15ee7b8327\n",
" .addData(data);\n",
" }\n",
" geo_json_cf8197b3c7c54141f66d3b15ee7b8327_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0886241231735805, 52.32524786712657], [-2.0885638159479996, 52.325248071607994], [-2.08854529576772, 52.325191481451206], [-2.0886011239530875, 52.32517985830064], [-2.0886400489477155, 52.32517249211479], [-2.0886698832008896, 52.32521950188067], [-2.0886241231735805, 52.32524786712657]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cf8197b3c7c54141f66d3b15ee7b8327.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_461a270c9f3fa1810d2d346e133f1d76 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_855dce2d01eb8f5f443f45c8de177aa1 = $(`&lt;div id=&quot;html_855dce2d01eb8f5f443f45c8de177aa1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 66&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 50.0 sqm&lt;br&gt;Intersecting area: 50.4 sqm&lt;/div&gt;`)[0];\n",
" popup_461a270c9f3fa1810d2d346e133f1d76.setContent(html_855dce2d01eb8f5f443f45c8de177aa1);\n",
" \n",
" \n",
"\n",
" geo_json_cf8197b3c7c54141f66d3b15ee7b8327.bindPopup(popup_461a270c9f3fa1810d2d346e133f1d76)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cf8197b3c7c54141f66d3b15ee7b8327.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4ccd3cbab55eace613b7b6f52a90f9fe_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4ccd3cbab55eace613b7b6f52a90f9fe_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4ccd3cbab55eace613b7b6f52a90f9fe = L.geoJson(null, {\n",
" onEachFeature: geo_json_4ccd3cbab55eace613b7b6f52a90f9fe_onEachFeature,\n",
" \n",
" style: geo_json_4ccd3cbab55eace613b7b6f52a90f9fe_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4ccd3cbab55eace613b7b6f52a90f9fe_add (data) {\n",
" geo_json_4ccd3cbab55eace613b7b6f52a90f9fe\n",
" .addData(data);\n",
" }\n",
" geo_json_4ccd3cbab55eace613b7b6f52a90f9fe_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0868262673808653, 52.32799053687962], [-2.0867504129162575, 52.3280185297954], [-2.0866763333868588, 52.328018584330536], [-2.0866577425183945, 52.3280024066704], [-2.0866563865509904, 52.32800159225613], [-2.0866550840639264, 52.32800111134148], [-2.086653648382827, 52.32800080493133], [-2.086652139709237, 52.328000687372395], [-2.086615742330716, 52.32800017113484], [-2.0865839459573485, 52.327962614605724], [-2.0865842044608343, 52.32793426743737], [-2.0866145472276902, 52.32791518232387], [-2.0867134071580637, 52.327905335447795], [-2.086765851155128, 52.327896722880475], [-2.0868559568552887, 52.32793472364953], [-2.0868262673808653, 52.32799053687962]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4ccd3cbab55eace613b7b6f52a90f9fe.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5c1903daa211e82fd3e9deb3c01858f7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c7408afbb7df4b8fbd428b2a08717213 = $(`&lt;div id=&quot;html_c7408afbb7df4b8fbd428b2a08717213&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 67&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 183.0 sqm&lt;br&gt;Intersecting area: 183.4 sqm&lt;/div&gt;`)[0];\n",
" popup_5c1903daa211e82fd3e9deb3c01858f7.setContent(html_c7408afbb7df4b8fbd428b2a08717213);\n",
" \n",
" \n",
"\n",
" geo_json_4ccd3cbab55eace613b7b6f52a90f9fe.bindPopup(popup_5c1903daa211e82fd3e9deb3c01858f7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4ccd3cbab55eace613b7b6f52a90f9fe.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_bbe7582073dc08a5ff167beaa608d2d1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_bbe7582073dc08a5ff167beaa608d2d1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_bbe7582073dc08a5ff167beaa608d2d1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_bbe7582073dc08a5ff167beaa608d2d1_onEachFeature,\n",
" \n",
" style: geo_json_bbe7582073dc08a5ff167beaa608d2d1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_bbe7582073dc08a5ff167beaa608d2d1_add (data) {\n",
" geo_json_bbe7582073dc08a5ff167beaa608d2d1\n",
" .addData(data);\n",
" }\n",
" geo_json_bbe7582073dc08a5ff167beaa608d2d1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0871488338042323, 52.327990517129855], [-2.0870748655356257, 52.3280269281707], [-2.087015325225372, 52.328036250949786], [-2.086923341470551, 52.328008959908885], [-2.086892227343532, 52.32797000408452], [-2.0869215022335648, 52.32790711945651], [-2.086955608535194, 52.32789620985611], [-2.0870872287477646, 52.327896167459755], [-2.0871337275142214, 52.327914650173696], [-2.0871645509268593, 52.327934816644714], [-2.0871488338042323, 52.327990517129855]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_bbe7582073dc08a5ff167beaa608d2d1.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_88281f72edfead00b9f4416ed2b6c4be = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8d408a195589cfa3672cf043b46e24da = $(`&lt;div id=&quot;html_8d408a195589cfa3672cf043b46e24da&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 68&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 222.0 sqm&lt;br&gt;Intersecting area: 221.5 sqm&lt;/div&gt;`)[0];\n",
" popup_88281f72edfead00b9f4416ed2b6c4be.setContent(html_8d408a195589cfa3672cf043b46e24da);\n",
" \n",
" \n",
"\n",
" geo_json_bbe7582073dc08a5ff167beaa608d2d1.bindPopup(popup_88281f72edfead00b9f4416ed2b6c4be)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_bbe7582073dc08a5ff167beaa608d2d1.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_e059a182b36501298c5e733d890c7b9c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e059a182b36501298c5e733d890c7b9c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e059a182b36501298c5e733d890c7b9c = L.geoJson(null, {\n",
" onEachFeature: geo_json_e059a182b36501298c5e733d890c7b9c_onEachFeature,\n",
" \n",
" style: geo_json_e059a182b36501298c5e733d890c7b9c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e059a182b36501298c5e733d890c7b9c_add (data) {\n",
" geo_json_e059a182b36501298c5e733d890c7b9c\n",
" .addData(data);\n",
" }\n",
" geo_json_e059a182b36501298c5e733d890c7b9c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079367611682851, 52.32536975903829], [-2.079349453298841, 52.32537171225884], [-2.0792605083260804, 52.32536247090614], [-2.0792581169148288, 52.325341326670625], [-2.0793373826418806, 52.32533116022022], [-2.0793683748109575, 52.32535104542889], [-2.079367611682851, 52.32536975903829]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e059a182b36501298c5e733d890c7b9c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_841b531e0f435738e28ca6a9d4c2813d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f329e9098ca70ad852697aad0e75dbe7 = $(`&lt;div id=&quot;html_f329e9098ca70ad852697aad0e75dbe7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 69&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 24.8 sqm&lt;/div&gt;`)[0];\n",
" popup_841b531e0f435738e28ca6a9d4c2813d.setContent(html_f329e9098ca70ad852697aad0e75dbe7);\n",
" \n",
" \n",
"\n",
" geo_json_e059a182b36501298c5e733d890c7b9c.bindPopup(popup_841b531e0f435738e28ca6a9d4c2813d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e059a182b36501298c5e733d890c7b9c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee = L.geoJson(null, {\n",
" onEachFeature: geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee_onEachFeature,\n",
" \n",
" style: geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee_add (data) {\n",
" geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee\n",
" .addData(data);\n",
" }\n",
" geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079057939445493, 52.325668315119344], [-2.0790120225284436, 52.3256684196554], [-2.078994349005887, 52.32564782778098], [-2.0790213507783806, 52.32563600194175], [-2.079071792333199, 52.325619251707145], [-2.0790894291601547, 52.32564884458107], [-2.079057939445493, 52.325668315119344]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cf1855a42d2fd5279740e2313005fd3f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_88aeb477ac1e71b18d6ae7af3562e4ea = $(`&lt;div id=&quot;html_88aeb477ac1e71b18d6ae7af3562e4ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 70&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.9 sqm&lt;/div&gt;`)[0];\n",
" popup_cf1855a42d2fd5279740e2313005fd3f.setContent(html_88aeb477ac1e71b18d6ae7af3562e4ea);\n",
" \n",
" \n",
"\n",
" geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee.bindPopup(popup_cf1855a42d2fd5279740e2313005fd3f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_48a9e2c4b31b9a13d419e2d1f86f38ee.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_30689c3437f9f13eb496eda612b13124_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_30689c3437f9f13eb496eda612b13124_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_30689c3437f9f13eb496eda612b13124 = L.geoJson(null, {\n",
" onEachFeature: geo_json_30689c3437f9f13eb496eda612b13124_onEachFeature,\n",
" \n",
" style: geo_json_30689c3437f9f13eb496eda612b13124_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_30689c3437f9f13eb496eda612b13124_add (data) {\n",
" geo_json_30689c3437f9f13eb496eda612b13124\n",
" .addData(data);\n",
" }\n",
" geo_json_30689c3437f9f13eb496eda612b13124_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.078923987827107, 52.325713203123165], [-2.0788920287753565, 52.32570242281938], [-2.0789093412810087, 52.32568189649086], [-2.078955787995761, 52.3256925241312], [-2.078923987827107, 52.325713203123165]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_30689c3437f9f13eb496eda612b13124.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d4d19a3ae4d783feaa21f9a7a61bc0f7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_45fc2272531c12aa5d58b959ac08eb09 = $(`&lt;div id=&quot;html_45fc2272531c12aa5d58b959ac08eb09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 71&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.1 sqm&lt;/div&gt;`)[0];\n",
" popup_d4d19a3ae4d783feaa21f9a7a61bc0f7.setContent(html_45fc2272531c12aa5d58b959ac08eb09);\n",
" \n",
" \n",
"\n",
" geo_json_30689c3437f9f13eb496eda612b13124.bindPopup(popup_d4d19a3ae4d783feaa21f9a7a61bc0f7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_30689c3437f9f13eb496eda612b13124.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_79e09016ab0e20ae1d2e77ef17040cad_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_79e09016ab0e20ae1d2e77ef17040cad_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_79e09016ab0e20ae1d2e77ef17040cad = L.geoJson(null, {\n",
" onEachFeature: geo_json_79e09016ab0e20ae1d2e77ef17040cad_onEachFeature,\n",
" \n",
" style: geo_json_79e09016ab0e20ae1d2e77ef17040cad_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_79e09016ab0e20ae1d2e77ef17040cad_add (data) {\n",
" geo_json_79e09016ab0e20ae1d2e77ef17040cad\n",
" .addData(data);\n",
" }\n",
" geo_json_79e09016ab0e20ae1d2e77ef17040cad_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0793247498855116, 52.32577378127544], [-2.0793059012997626, 52.325776320217585], [-2.079274617592805, 52.325775660722236], [-2.0792584618726555, 52.3257571455009], [-2.07927565026417, 52.325727219954075], [-2.0793247000888826, 52.325746030370624], [-2.0793247498855116, 52.32577378127544]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_79e09016ab0e20ae1d2e77ef17040cad.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_24407cc8d7eebfd52461d8d284438407 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_36d629f2b2f7e57d9cd883bb5fe54709 = $(`&lt;div id=&quot;html_36d629f2b2f7e57d9cd883bb5fe54709&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 72&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 17.7 sqm&lt;/div&gt;`)[0];\n",
" popup_24407cc8d7eebfd52461d8d284438407.setContent(html_36d629f2b2f7e57d9cd883bb5fe54709);\n",
" \n",
" \n",
"\n",
" geo_json_79e09016ab0e20ae1d2e77ef17040cad.bindPopup(popup_24407cc8d7eebfd52461d8d284438407)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_79e09016ab0e20ae1d2e77ef17040cad.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_cb86c21bb5984cc6752ddb8eda8154ae_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cb86c21bb5984cc6752ddb8eda8154ae_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cb86c21bb5984cc6752ddb8eda8154ae = L.geoJson(null, {\n",
" onEachFeature: geo_json_cb86c21bb5984cc6752ddb8eda8154ae_onEachFeature,\n",
" \n",
" style: geo_json_cb86c21bb5984cc6752ddb8eda8154ae_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cb86c21bb5984cc6752ddb8eda8154ae_add (data) {\n",
" geo_json_cb86c21bb5984cc6752ddb8eda8154ae\n",
" .addData(data);\n",
" }\n",
" geo_json_cb86c21bb5984cc6752ddb8eda8154ae_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0788488748294816, 52.32577663162799], [-2.078705246609087, 52.325776580278976], [-2.0787006051648476, 52.32575574230764], [-2.078748076833669, 52.325735496114866], [-2.078837059842001, 52.32574431259243], [-2.078855280184831, 52.325755610958204], [-2.0788488748294816, 52.32577663162799]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cb86c21bb5984cc6752ddb8eda8154ae.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a4b2602fa6d2ca4cda5edb543f91f138 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ec99206542359a1c49b5785b41edf89f = $(`&lt;div id=&quot;html_ec99206542359a1c49b5785b41edf89f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 73&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 39.0 sqm&lt;br&gt;Intersecting area: 38.7 sqm&lt;/div&gt;`)[0];\n",
" popup_a4b2602fa6d2ca4cda5edb543f91f138.setContent(html_ec99206542359a1c49b5785b41edf89f);\n",
" \n",
" \n",
"\n",
" geo_json_cb86c21bb5984cc6752ddb8eda8154ae.bindPopup(popup_a4b2602fa6d2ca4cda5edb543f91f138)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cb86c21bb5984cc6752ddb8eda8154ae.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_28049926480c36529f9c2f73a6e2b08a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_28049926480c36529f9c2f73a6e2b08a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_28049926480c36529f9c2f73a6e2b08a = L.geoJson(null, {\n",
" onEachFeature: geo_json_28049926480c36529f9c2f73a6e2b08a_onEachFeature,\n",
" \n",
" style: geo_json_28049926480c36529f9c2f73a6e2b08a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_28049926480c36529f9c2f73a6e2b08a_add (data) {\n",
" geo_json_28049926480c36529f9c2f73a6e2b08a\n",
" .addData(data);\n",
" }\n",
" geo_json_28049926480c36529f9c2f73a6e2b08a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079053665920684, 52.32594601255727], [-2.079024024920288, 52.325918779571495], [-2.0790368228025184, 52.32590574778602], [-2.079088704578329, 52.325898306826915], [-2.079103259186081, 52.325937164363296], [-2.079053665920684, 52.32594601255727]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_28049926480c36529f9c2f73a6e2b08a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_64589ac29653d66034264b96eeda1107 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f3763d127894afd9f4e2911703849321 = $(`&lt;div id=&quot;html_f3763d127894afd9f4e2911703849321&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 74&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 19.0 sqm&lt;br&gt;Intersecting area: 19.0 sqm&lt;/div&gt;`)[0];\n",
" popup_64589ac29653d66034264b96eeda1107.setContent(html_f3763d127894afd9f4e2911703849321);\n",
" \n",
" \n",
"\n",
" geo_json_28049926480c36529f9c2f73a6e2b08a.bindPopup(popup_64589ac29653d66034264b96eeda1107)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_28049926480c36529f9c2f73a6e2b08a.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_21295e553c23514e710c99cac4156cdc_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_21295e553c23514e710c99cac4156cdc_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_21295e553c23514e710c99cac4156cdc = L.geoJson(null, {\n",
" onEachFeature: geo_json_21295e553c23514e710c99cac4156cdc_onEachFeature,\n",
" \n",
" style: geo_json_21295e553c23514e710c99cac4156cdc_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_21295e553c23514e710c99cac4156cdc_add (data) {\n",
" geo_json_21295e553c23514e710c99cac4156cdc\n",
" .addData(data);\n",
" }\n",
" geo_json_21295e553c23514e710c99cac4156cdc_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0787224951072587, 52.326180623209694], [-2.0786871731848167, 52.32617917063025], [-2.07868615413576, 52.32613011810515], [-2.0786858673615938, 52.32612892889482], [-2.078685272988133, 52.326128038362604], [-2.0786843823988406, 52.32612724602164], [-2.078642267433049, 52.32609720824724], [-2.078645543953622, 52.32608651581492], [-2.078677564541229, 52.32608640362419], [-2.07875266291857, 52.32613211621531], [-2.078753187666562, 52.32616146166247], [-2.0787224951072587, 52.326180623209694]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_21295e553c23514e710c99cac4156cdc.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a0f968f79be01de534aed30003bdd62c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_759f280d23e0466d74567ef70f5d1294 = $(`&lt;div id=&quot;html_759f280d23e0466d74567ef70f5d1294&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 75&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 41.0 sqm&lt;br&gt;Intersecting area: 40.7 sqm&lt;/div&gt;`)[0];\n",
" popup_a0f968f79be01de534aed30003bdd62c.setContent(html_759f280d23e0466d74567ef70f5d1294);\n",
" \n",
" \n",
"\n",
" geo_json_21295e553c23514e710c99cac4156cdc.bindPopup(popup_a0f968f79be01de534aed30003bdd62c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_21295e553c23514e710c99cac4156cdc.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_aa95526b4947b1d63e972c0b361b444c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_aa95526b4947b1d63e972c0b361b444c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_aa95526b4947b1d63e972c0b361b444c = L.geoJson(null, {\n",
" onEachFeature: geo_json_aa95526b4947b1d63e972c0b361b444c_onEachFeature,\n",
" \n",
" style: geo_json_aa95526b4947b1d63e972c0b361b444c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_aa95526b4947b1d63e972c0b361b444c_add (data) {\n",
" geo_json_aa95526b4947b1d63e972c0b361b444c\n",
" .addData(data);\n",
" }\n",
" geo_json_aa95526b4947b1d63e972c0b361b444c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0794256991260602, 52.32617150961381], [-2.0793786526886118, 52.326171257247054], [-2.0793617734837335, 52.32614216466486], [-2.0793888546342103, 52.326130304527204], [-2.079426529493648, 52.32612244506164], [-2.079456229798515, 52.32615306990442], [-2.0794256991260602, 52.32617150961381]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_aa95526b4947b1d63e972c0b361b444c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b7c0f7e5154f3e1b2bf7a9440a7d71f7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a7b8d47856cd944d3ecdc1c7868af55c = $(`&lt;div id=&quot;html_a7b8d47856cd944d3ecdc1c7868af55c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 76&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 23.7 sqm&lt;/div&gt;`)[0];\n",
" popup_b7c0f7e5154f3e1b2bf7a9440a7d71f7.setContent(html_a7b8d47856cd944d3ecdc1c7868af55c);\n",
" \n",
" \n",
"\n",
" geo_json_aa95526b4947b1d63e972c0b361b444c.bindPopup(popup_b7c0f7e5154f3e1b2bf7a9440a7d71f7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_aa95526b4947b1d63e972c0b361b444c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_6a127ae99ac546ea418d0f811a57c699_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6a127ae99ac546ea418d0f811a57c699_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6a127ae99ac546ea418d0f811a57c699 = L.geoJson(null, {\n",
" onEachFeature: geo_json_6a127ae99ac546ea418d0f811a57c699_onEachFeature,\n",
" \n",
" style: geo_json_6a127ae99ac546ea418d0f811a57c699_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6a127ae99ac546ea418d0f811a57c699_add (data) {\n",
" geo_json_6a127ae99ac546ea418d0f811a57c699\n",
" .addData(data);\n",
" }\n",
" geo_json_6a127ae99ac546ea418d0f811a57c699_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.07911711964084, 52.32626123452189], [-2.0790694459491714, 52.32625981462726], [-2.0790820541288557, 52.326220256493144], [-2.0791194978789855, 52.32621436254003], [-2.07911711964084, 52.32626123452189]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6a127ae99ac546ea418d0f811a57c699.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c11a5530e8a4c84e61bedf82537f112f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f4c772db6c1c24ec1e694653f455693f = $(`&lt;div id=&quot;html_f4c772db6c1c24ec1e694653f455693f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 77&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.8 sqm&lt;/div&gt;`)[0];\n",
" popup_c11a5530e8a4c84e61bedf82537f112f.setContent(html_f4c772db6c1c24ec1e694653f455693f);\n",
" \n",
" \n",
"\n",
" geo_json_6a127ae99ac546ea418d0f811a57c699.bindPopup(popup_c11a5530e8a4c84e61bedf82537f112f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6a127ae99ac546ea418d0f811a57c699.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_692b6fb2e3551c63652e10682b96d466_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_692b6fb2e3551c63652e10682b96d466_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_692b6fb2e3551c63652e10682b96d466 = L.geoJson(null, {\n",
" onEachFeature: geo_json_692b6fb2e3551c63652e10682b96d466_onEachFeature,\n",
" \n",
" style: geo_json_692b6fb2e3551c63652e10682b96d466_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_692b6fb2e3551c63652e10682b96d466_add (data) {\n",
" geo_json_692b6fb2e3551c63652e10682b96d466\n",
" .addData(data);\n",
" }\n",
" geo_json_692b6fb2e3551c63652e10682b96d466_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0785572821753924, 52.32627996552395], [-2.0785269003644373, 52.32626187144711], [-2.078539238179641, 52.32622925847764], [-2.0785592202663135, 52.326221223195475], [-2.078591050130884, 52.326230976093036], [-2.0786039441128046, 52.32627929428334], [-2.0785572821753924, 52.32627996552395]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_692b6fb2e3551c63652e10682b96d466.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cfeef0387e12df639e86a0b2af7afb2d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_62267182eac65052e7148f8be6059ae5 = $(`&lt;div id=&quot;html_62267182eac65052e7148f8be6059ae5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 78&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 3.2 sqm&lt;/div&gt;`)[0];\n",
" popup_cfeef0387e12df639e86a0b2af7afb2d.setContent(html_62267182eac65052e7148f8be6059ae5);\n",
" \n",
" \n",
"\n",
" geo_json_692b6fb2e3551c63652e10682b96d466.bindPopup(popup_cfeef0387e12df639e86a0b2af7afb2d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_692b6fb2e3551c63652e10682b96d466.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_52e943f1088614062ca5dbd5a009f3bb_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_52e943f1088614062ca5dbd5a009f3bb_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_52e943f1088614062ca5dbd5a009f3bb = L.geoJson(null, {\n",
" onEachFeature: geo_json_52e943f1088614062ca5dbd5a009f3bb_onEachFeature,\n",
" \n",
" style: geo_json_52e943f1088614062ca5dbd5a009f3bb_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_52e943f1088614062ca5dbd5a009f3bb_add (data) {\n",
" geo_json_52e943f1088614062ca5dbd5a009f3bb\n",
" .addData(data);\n",
" }\n",
" geo_json_52e943f1088614062ca5dbd5a009f3bb_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.078969234024416, 52.32638730980137], [-2.078950267475882, 52.32637079134898], [-2.0789383212404227, 52.326356313456586], [-2.078986729564749, 52.3263393434688], [-2.0790016459766005, 52.32637782138508], [-2.078969234024416, 52.32638730980137]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_52e943f1088614062ca5dbd5a009f3bb.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cb174a77f858323c9b3cabfb6561c84b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f515356bef5c698e0c2e3d5a8acb483e = $(`&lt;div id=&quot;html_f515356bef5c698e0c2e3d5a8acb483e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 79&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 13.0 sqm&lt;br&gt;Intersecting area: 13.2 sqm&lt;/div&gt;`)[0];\n",
" popup_cb174a77f858323c9b3cabfb6561c84b.setContent(html_f515356bef5c698e0c2e3d5a8acb483e);\n",
" \n",
" \n",
"\n",
" geo_json_52e943f1088614062ca5dbd5a009f3bb.bindPopup(popup_cb174a77f858323c9b3cabfb6561c84b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_52e943f1088614062ca5dbd5a009f3bb.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_5e8722862cbab95606d304e2b43317cd_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5e8722862cbab95606d304e2b43317cd_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5e8722862cbab95606d304e2b43317cd = L.geoJson(null, {\n",
" onEachFeature: geo_json_5e8722862cbab95606d304e2b43317cd_onEachFeature,\n",
" \n",
" style: geo_json_5e8722862cbab95606d304e2b43317cd_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5e8722862cbab95606d304e2b43317cd_add (data) {\n",
" geo_json_5e8722862cbab95606d304e2b43317cd\n",
" .addData(data);\n",
" }\n",
" geo_json_5e8722862cbab95606d304e2b43317cd_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079583081956203, 52.32631682696032], [-2.0795705847156607, 52.32633300876509], [-2.0795241443302523, 52.32632146166461], [-2.0795427969883327, 52.32630124450321], [-2.079586523677895, 52.32630184247293], [-2.079583081956203, 52.32631682696032]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5e8722862cbab95606d304e2b43317cd.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c8cee7d4f626b6ecef9790fbd962cfd5 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_02b1c8e5416f3741721c931a4fc6638f = $(`&lt;div id=&quot;html_02b1c8e5416f3741721c931a4fc6638f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 80&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 10.1 sqm&lt;/div&gt;`)[0];\n",
" popup_c8cee7d4f626b6ecef9790fbd962cfd5.setContent(html_02b1c8e5416f3741721c931a4fc6638f);\n",
" \n",
" \n",
"\n",
" geo_json_5e8722862cbab95606d304e2b43317cd.bindPopup(popup_c8cee7d4f626b6ecef9790fbd962cfd5)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5e8722862cbab95606d304e2b43317cd.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_70caaafdad871df050f05b5231c3d983_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_70caaafdad871df050f05b5231c3d983_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_70caaafdad871df050f05b5231c3d983 = L.geoJson(null, {\n",
" onEachFeature: geo_json_70caaafdad871df050f05b5231c3d983_onEachFeature,\n",
" \n",
" style: geo_json_70caaafdad871df050f05b5231c3d983_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_70caaafdad871df050f05b5231c3d983_add (data) {\n",
" geo_json_70caaafdad871df050f05b5231c3d983\n",
" .addData(data);\n",
" }\n",
" geo_json_70caaafdad871df050f05b5231c3d983_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0803375351920423, 52.326772906893076], [-2.080271918357264, 52.32677138105448], [-2.0802573946257064, 52.32675266976955], [-2.080271515702039, 52.32670478196667], [-2.0803067398134463, 52.326696556195074], [-2.0803534206554195, 52.32671574718439], [-2.0803684007486405, 52.326753016601344], [-2.0803375351920423, 52.326772906893076]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_70caaafdad871df050f05b5231c3d983.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a0b98b4b7a1e7dd78cd9aea8db37b880 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3cef7395bf712096caedf8b1f1cba5d1 = $(`&lt;div id=&quot;html_3cef7395bf712096caedf8b1f1cba5d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 81&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 48.0 sqm&lt;br&gt;Intersecting area: 48.1 sqm&lt;/div&gt;`)[0];\n",
" popup_a0b98b4b7a1e7dd78cd9aea8db37b880.setContent(html_3cef7395bf712096caedf8b1f1cba5d1);\n",
" \n",
" \n",
"\n",
" geo_json_70caaafdad871df050f05b5231c3d983.bindPopup(popup_a0b98b4b7a1e7dd78cd9aea8db37b880)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_70caaafdad871df050f05b5231c3d983.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_dd2d2c29d6e089125b323b85348039e2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_dd2d2c29d6e089125b323b85348039e2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_dd2d2c29d6e089125b323b85348039e2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_dd2d2c29d6e089125b323b85348039e2_onEachFeature,\n",
" \n",
" style: geo_json_dd2d2c29d6e089125b323b85348039e2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_dd2d2c29d6e089125b323b85348039e2_add (data) {\n",
" geo_json_dd2d2c29d6e089125b323b85348039e2\n",
" .addData(data);\n",
" }\n",
" geo_json_dd2d2c29d6e089125b323b85348039e2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080001503208695, 52.32684344078002], [-2.0799366113118083, 52.326854181383496], [-2.079892095666919, 52.32683546883351], [-2.0799047929125836, 52.32681708875639], [-2.0799512070090165, 52.32678698415374], [-2.0799846820089636, 52.32678676273832], [-2.0800018740496573, 52.32679782068529], [-2.080001503208695, 52.32684344078002]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_dd2d2c29d6e089125b323b85348039e2.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_236db6911c947c683b3fb4e934cc93dd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ff55a60315df63b1379379229edb165e = $(`&lt;div id=&quot;html_ff55a60315df63b1379379229edb165e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 82&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 40.0 sqm&lt;br&gt;Intersecting area: 40.3 sqm&lt;/div&gt;`)[0];\n",
" popup_236db6911c947c683b3fb4e934cc93dd.setContent(html_ff55a60315df63b1379379229edb165e);\n",
" \n",
" \n",
"\n",
" geo_json_dd2d2c29d6e089125b323b85348039e2.bindPopup(popup_236db6911c947c683b3fb4e934cc93dd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_dd2d2c29d6e089125b323b85348039e2.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_19f2036130914d52f3c35d5a62c8166f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_19f2036130914d52f3c35d5a62c8166f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_19f2036130914d52f3c35d5a62c8166f = L.geoJson(null, {\n",
" onEachFeature: geo_json_19f2036130914d52f3c35d5a62c8166f_onEachFeature,\n",
" \n",
" style: geo_json_19f2036130914d52f3c35d5a62c8166f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_19f2036130914d52f3c35d5a62c8166f_add (data) {\n",
" geo_json_19f2036130914d52f3c35d5a62c8166f\n",
" .addData(data);\n",
" }\n",
" geo_json_19f2036130914d52f3c35d5a62c8166f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0809114079097357, 52.32686121755049], [-2.080879882722124, 52.32688057621469], [-2.080800892872861, 52.326869595875564], [-2.080801117247713, 52.32683260016855], [-2.08084248731418, 52.32682161182959], [-2.080879231155591, 52.326813167286076], [-2.080911355390682, 52.32683252268248], [-2.0809114079097357, 52.32686121755049]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_19f2036130914d52f3c35d5a62c8166f.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0b39c76a4f299949af168d3a12f96068 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bafa054a461c0481ac2a813797430862 = $(`&lt;div id=&quot;html_bafa054a461c0481ac2a813797430862&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 83&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 43.0 sqm&lt;br&gt;Intersecting area: 42.9 sqm&lt;/div&gt;`)[0];\n",
" popup_0b39c76a4f299949af168d3a12f96068.setContent(html_bafa054a461c0481ac2a813797430862);\n",
" \n",
" \n",
"\n",
" geo_json_19f2036130914d52f3c35d5a62c8166f.bindPopup(popup_0b39c76a4f299949af168d3a12f96068)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_19f2036130914d52f3c35d5a62c8166f.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee = L.geoJson(null, {\n",
" onEachFeature: geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee_onEachFeature,\n",
" \n",
" style: geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee_add (data) {\n",
" geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee\n",
" .addData(data);\n",
" }\n",
" geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0791435255168436, 52.32658596150745], [-2.079101509390016, 52.326593535207024], [-2.0790988060427766, 52.326573541929555], [-2.079146199983591, 52.326571782171285], [-2.0791435255168436, 52.32658596150745]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0b22454f546bec68d00732c3bab696fe = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f0083ad58c9ee2fcfdbc7534fbfc166b = $(`&lt;div id=&quot;html_f0083ad58c9ee2fcfdbc7534fbfc166b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 84&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 5.8 sqm&lt;/div&gt;`)[0];\n",
" popup_0b22454f546bec68d00732c3bab696fe.setContent(html_f0083ad58c9ee2fcfdbc7534fbfc166b);\n",
" \n",
" \n",
"\n",
" geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee.bindPopup(popup_0b22454f546bec68d00732c3bab696fe)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a343b80d8e2e07ff0b1ade3f1c26c3ee.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_da4b4b0940f2045c1f6cb1f24f6e455c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_da4b4b0940f2045c1f6cb1f24f6e455c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_da4b4b0940f2045c1f6cb1f24f6e455c = L.geoJson(null, {\n",
" onEachFeature: geo_json_da4b4b0940f2045c1f6cb1f24f6e455c_onEachFeature,\n",
" \n",
" style: geo_json_da4b4b0940f2045c1f6cb1f24f6e455c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_da4b4b0940f2045c1f6cb1f24f6e455c_add (data) {\n",
" geo_json_da4b4b0940f2045c1f6cb1f24f6e455c\n",
" .addData(data);\n",
" }\n",
" geo_json_da4b4b0940f2045c1f6cb1f24f6e455c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0794727250002922, 52.32662880731675], [-2.079421982984672, 52.32662915171417], [-2.0793766779525416, 52.326573433165926], [-2.0793821912215975, 52.32655332827326], [-2.079486359650284, 52.326562919765834], [-2.0795025053180805, 52.326591945395464], [-2.0794727250002922, 52.32662880731675]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_da4b4b0940f2045c1f6cb1f24f6e455c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6d8651b1638086489a5dd9c6c0334382 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_356b3aa0a78b240fce1533c6340dfdfb = $(`&lt;div id=&quot;html_356b3aa0a78b240fce1533c6340dfdfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 85&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 51.0 sqm&lt;br&gt;Intersecting area: 51.3 sqm&lt;/div&gt;`)[0];\n",
" popup_6d8651b1638086489a5dd9c6c0334382.setContent(html_356b3aa0a78b240fce1533c6340dfdfb);\n",
" \n",
" \n",
"\n",
" geo_json_da4b4b0940f2045c1f6cb1f24f6e455c.bindPopup(popup_6d8651b1638086489a5dd9c6c0334382)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_da4b4b0940f2045c1f6cb1f24f6e455c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_425ec461de8b516e8796d117944bc070_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_425ec461de8b516e8796d117944bc070_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_425ec461de8b516e8796d117944bc070 = L.geoJson(null, {\n",
" onEachFeature: geo_json_425ec461de8b516e8796d117944bc070_onEachFeature,\n",
" \n",
" style: geo_json_425ec461de8b516e8796d117944bc070_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_425ec461de8b516e8796d117944bc070_add (data) {\n",
" geo_json_425ec461de8b516e8796d117944bc070\n",
" .addData(data);\n",
" }\n",
" geo_json_425ec461de8b516e8796d117944bc070_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084120987408638, 52.32630270671666], [-2.0840743969599123, 52.32630313285345], [-2.0840432326626597, 52.326284470772336], [-2.0840428381528406, 52.32626373067537], [-2.0840695417033936, 52.326252998001294], [-2.0841228951062223, 52.326246516631436], [-2.084120987408638, 52.32630270671666]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_425ec461de8b516e8796d117944bc070.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ce18bb1a53340713e167a4f6c5b30e4b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_855302778b4c88968433cc8771337ce2 = $(`&lt;div id=&quot;html_855302778b4c88968433cc8771337ce2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 86&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 28.0 sqm&lt;br&gt;Intersecting area: 27.9 sqm&lt;/div&gt;`)[0];\n",
" popup_ce18bb1a53340713e167a4f6c5b30e4b.setContent(html_855302778b4c88968433cc8771337ce2);\n",
" \n",
" \n",
"\n",
" geo_json_425ec461de8b516e8796d117944bc070.bindPopup(popup_ce18bb1a53340713e167a4f6c5b30e4b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_425ec461de8b516e8796d117944bc070.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_b7fe796e3bb475f724271d2aa5828ded_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b7fe796e3bb475f724271d2aa5828ded_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b7fe796e3bb475f724271d2aa5828ded = L.geoJson(null, {\n",
" onEachFeature: geo_json_b7fe796e3bb475f724271d2aa5828ded_onEachFeature,\n",
" \n",
" style: geo_json_b7fe796e3bb475f724271d2aa5828ded_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b7fe796e3bb475f724271d2aa5828ded_add (data) {\n",
" geo_json_b7fe796e3bb475f724271d2aa5828ded\n",
" .addData(data);\n",
" }\n",
" geo_json_b7fe796e3bb475f724271d2aa5828ded_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083812234071687, 52.32638443824251], [-2.0837371004394467, 52.32638429749523], [-2.0837055245993636, 52.32636522117292], [-2.083705199394265, 52.3263453530717], [-2.08378252152185, 52.32631649979869], [-2.083815693771837, 52.326327050463355], [-2.083830208985479, 52.32637382870662], [-2.083812234071687, 52.32638443824251]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b7fe796e3bb475f724271d2aa5828ded.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_dc918e29673908f79b83f857ec0cd14e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0edc89bf0b7b42ab4c11fb8e8f983fc9 = $(`&lt;div id=&quot;html_0edc89bf0b7b42ab4c11fb8e8f983fc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 87&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 48.0 sqm&lt;br&gt;Intersecting area: 47.7 sqm&lt;/div&gt;`)[0];\n",
" popup_dc918e29673908f79b83f857ec0cd14e.setContent(html_0edc89bf0b7b42ab4c11fb8e8f983fc9);\n",
" \n",
" \n",
"\n",
" geo_json_b7fe796e3bb475f724271d2aa5828ded.bindPopup(popup_dc918e29673908f79b83f857ec0cd14e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b7fe796e3bb475f724271d2aa5828ded.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2cafa4a7db9ae481df075fb7771fb100_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2cafa4a7db9ae481df075fb7771fb100_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2cafa4a7db9ae481df075fb7771fb100 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2cafa4a7db9ae481df075fb7771fb100_onEachFeature,\n",
" \n",
" style: geo_json_2cafa4a7db9ae481df075fb7771fb100_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2cafa4a7db9ae481df075fb7771fb100_add (data) {\n",
" geo_json_2cafa4a7db9ae481df075fb7771fb100\n",
" .addData(data);\n",
" }\n",
" geo_json_2cafa4a7db9ae481df075fb7771fb100_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083677272797534, 52.32638443351762], [-2.083646854277705, 52.326382205776206], [-2.0836501154826896, 52.32634465591002], [-2.0836833005020776, 52.326354206894266], [-2.083677272797534, 52.32638443351762]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2cafa4a7db9ae481df075fb7771fb100.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7f280e87fda684e72afbf3340b73c524 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f587d5ac7ed9e1a7839caadca365dc5f = $(`&lt;div id=&quot;html_f587d5ac7ed9e1a7839caadca365dc5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 88&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.4 sqm&lt;/div&gt;`)[0];\n",
" popup_7f280e87fda684e72afbf3340b73c524.setContent(html_f587d5ac7ed9e1a7839caadca365dc5f);\n",
" \n",
" \n",
"\n",
" geo_json_2cafa4a7db9ae481df075fb7771fb100.bindPopup(popup_7f280e87fda684e72afbf3340b73c524)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2cafa4a7db9ae481df075fb7771fb100.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_8e2413c11082be302b919cd5c5f20bb1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8e2413c11082be302b919cd5c5f20bb1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8e2413c11082be302b919cd5c5f20bb1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8e2413c11082be302b919cd5c5f20bb1_onEachFeature,\n",
" \n",
" style: geo_json_8e2413c11082be302b919cd5c5f20bb1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8e2413c11082be302b919cd5c5f20bb1_add (data) {\n",
" geo_json_8e2413c11082be302b919cd5c5f20bb1\n",
" .addData(data);\n",
" }\n",
" geo_json_8e2413c11082be302b919cd5c5f20bb1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084840939173595, 52.32651795049923], [-2.084794961830589, 52.326518371085555], [-2.084790554389099, 52.32650631481356], [-2.084776681688847, 52.3264890842996], [-2.084792451775133, 52.32647808693189], [-2.0848562966307016, 52.32647926721169], [-2.084840939173595, 52.32651795049923]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8e2413c11082be302b919cd5c5f20bb1.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1b02a97b6c96d6c66597d41e834b2e91 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e95c91be07fcd65e9ff1c23be512c4e7 = $(`&lt;div id=&quot;html_e95c91be07fcd65e9ff1c23be512c4e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 89&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 19.0 sqm&lt;br&gt;Intersecting area: 18.6 sqm&lt;/div&gt;`)[0];\n",
" popup_1b02a97b6c96d6c66597d41e834b2e91.setContent(html_e95c91be07fcd65e9ff1c23be512c4e7);\n",
" \n",
" \n",
"\n",
" geo_json_8e2413c11082be302b919cd5c5f20bb1.bindPopup(popup_1b02a97b6c96d6c66597d41e834b2e91)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8e2413c11082be302b919cd5c5f20bb1.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ccd9f8de793ae4c2818ab17825cf8a23_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ccd9f8de793ae4c2818ab17825cf8a23_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ccd9f8de793ae4c2818ab17825cf8a23 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ccd9f8de793ae4c2818ab17825cf8a23_onEachFeature,\n",
" \n",
" style: geo_json_ccd9f8de793ae4c2818ab17825cf8a23_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ccd9f8de793ae4c2818ab17825cf8a23_add (data) {\n",
" geo_json_ccd9f8de793ae4c2818ab17825cf8a23\n",
" .addData(data);\n",
" }\n",
" geo_json_ccd9f8de793ae4c2818ab17825cf8a23_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0838403175387668, 52.3266989698997], [-2.083823560077687, 52.326697043541365], [-2.083823684577807, 52.326677576984515], [-2.0838684825140628, 52.32666872481135], [-2.0838403175387668, 52.3266989698997]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ccd9f8de793ae4c2818ab17825cf8a23.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7a4bbdbf1b5397ca02e052c868d43bce = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_577c2e4f6a6a26a53052598836d762b0 = $(`&lt;div id=&quot;html_577c2e4f6a6a26a53052598836d762b0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 90&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 5.0 sqm&lt;br&gt;Intersecting area: 5.4 sqm&lt;/div&gt;`)[0];\n",
" popup_7a4bbdbf1b5397ca02e052c868d43bce.setContent(html_577c2e4f6a6a26a53052598836d762b0);\n",
" \n",
" \n",
"\n",
" geo_json_ccd9f8de793ae4c2818ab17825cf8a23.bindPopup(popup_7a4bbdbf1b5397ca02e052c868d43bce)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ccd9f8de793ae4c2818ab17825cf8a23.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_e5f9447eb0247f1182198c066f4b9391_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e5f9447eb0247f1182198c066f4b9391_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e5f9447eb0247f1182198c066f4b9391 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e5f9447eb0247f1182198c066f4b9391_onEachFeature,\n",
" \n",
" style: geo_json_e5f9447eb0247f1182198c066f4b9391_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e5f9447eb0247f1182198c066f4b9391_add (data) {\n",
" geo_json_e5f9447eb0247f1182198c066f4b9391\n",
" .addData(data);\n",
" }\n",
" geo_json_e5f9447eb0247f1182198c066f4b9391_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0848099128603192, 52.326706106161815], [-2.084806570288644, 52.32667702259439], [-2.0848401685045546, 52.32666612745024], [-2.084871495261422, 52.326667443520996], [-2.084872631253597, 52.32668746926179], [-2.0848099128603192, 52.326706106161815]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e5f9447eb0247f1182198c066f4b9391.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6f21e0833fc0211ab33a95f2ca84c9ea = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ac885125596a6a700344fab174ca7a25 = $(`&lt;div id=&quot;html_ac885125596a6a700344fab174ca7a25&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 91&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.6 sqm&lt;/div&gt;`)[0];\n",
" popup_6f21e0833fc0211ab33a95f2ca84c9ea.setContent(html_ac885125596a6a700344fab174ca7a25);\n",
" \n",
" \n",
"\n",
" geo_json_e5f9447eb0247f1182198c066f4b9391.bindPopup(popup_6f21e0833fc0211ab33a95f2ca84c9ea)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e5f9447eb0247f1182198c066f4b9391.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_f2bac84e76f75924eb5899e7f272165f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f2bac84e76f75924eb5899e7f272165f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f2bac84e76f75924eb5899e7f272165f = L.geoJson(null, {\n",
" onEachFeature: geo_json_f2bac84e76f75924eb5899e7f272165f_onEachFeature,\n",
" \n",
" style: geo_json_f2bac84e76f75924eb5899e7f272165f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f2bac84e76f75924eb5899e7f272165f_add (data) {\n",
" geo_json_f2bac84e76f75924eb5899e7f272165f\n",
" .addData(data);\n",
" }\n",
" geo_json_f2bac84e76f75924eb5899e7f272165f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084723794855731, 52.32671618142088], [-2.0847223458374278, 52.32671654297089], [-2.0847207639556933, 52.32671724624485], [-2.084719540536007, 52.32671817940525], [-2.0847188804382033, 52.326719048333395], [-2.0847078070201985, 52.32674300977432], [-2.0846331039207633, 52.32673430433133], [-2.0846161179086633, 52.32670575288972], [-2.084639094389831, 52.32670257362597], [-2.0846414759444634, 52.326701858096754], [-2.0846432872759353, 52.326700671885774], [-2.084644096681465, 52.32669961855012], [-2.084644447663073, 52.326698240102694], [-2.0846443758848, 52.32666074654764], [-2.0846806815008856, 52.326640751429196], [-2.084711341700507, 52.32667327208597], [-2.0847122132337828, 52.326674011353866], [-2.08471361595396, 52.326674760129464], [-2.084715995695672, 52.32667539671826], [-2.0847834670196974, 52.32668523468593], [-2.08478445961779, 52.32670549067932], [-2.084723794855731, 52.32671618142088]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f2bac84e76f75924eb5899e7f272165f.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9138c0d3051ef5ddee469f0d8108cf97 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4070ddd0352d75a1a390d896291b8b57 = $(`&lt;div id=&quot;html_4070ddd0352d75a1a390d896291b8b57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 92&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 66.0 sqm&lt;br&gt;Intersecting area: 66.5 sqm&lt;/div&gt;`)[0];\n",
" popup_9138c0d3051ef5ddee469f0d8108cf97.setContent(html_4070ddd0352d75a1a390d896291b8b57);\n",
" \n",
" \n",
"\n",
" geo_json_f2bac84e76f75924eb5899e7f272165f.bindPopup(popup_9138c0d3051ef5ddee469f0d8108cf97)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f2bac84e76f75924eb5899e7f272165f.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_3f9ddeec8896bc0a9a6110b5fe99295b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3f9ddeec8896bc0a9a6110b5fe99295b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3f9ddeec8896bc0a9a6110b5fe99295b = L.geoJson(null, {\n",
" onEachFeature: geo_json_3f9ddeec8896bc0a9a6110b5fe99295b_onEachFeature,\n",
" \n",
" style: geo_json_3f9ddeec8896bc0a9a6110b5fe99295b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3f9ddeec8896bc0a9a6110b5fe99295b_add (data) {\n",
" geo_json_3f9ddeec8896bc0a9a6110b5fe99295b\n",
" .addData(data);\n",
" }\n",
" geo_json_3f9ddeec8896bc0a9a6110b5fe99295b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.08406130411007, 52.32677924945155], [-2.0840440239533677, 52.32674938197366], [-2.084091517623067, 52.32672985283613], [-2.08412430998488, 52.32674028231948], [-2.084124649691465, 52.32676844385959], [-2.08406130411007, 52.32677924945155]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3f9ddeec8896bc0a9a6110b5fe99295b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2a09273a31ee151035c427de6edc16ec = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_512ce07aef811c56e1d61b28faebbc50 = $(`&lt;div id=&quot;html_512ce07aef811c56e1d61b28faebbc50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 93&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 20.8 sqm&lt;/div&gt;`)[0];\n",
" popup_2a09273a31ee151035c427de6edc16ec.setContent(html_512ce07aef811c56e1d61b28faebbc50);\n",
" \n",
" \n",
"\n",
" geo_json_3f9ddeec8896bc0a9a6110b5fe99295b.bindPopup(popup_2a09273a31ee151035c427de6edc16ec)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3f9ddeec8896bc0a9a6110b5fe99295b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2feeff3b3917a8d664677e70325c7c09_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2feeff3b3917a8d664677e70325c7c09_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2feeff3b3917a8d664677e70325c7c09 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2feeff3b3917a8d664677e70325c7c09_onEachFeature,\n",
" \n",
" style: geo_json_2feeff3b3917a8d664677e70325c7c09_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2feeff3b3917a8d664677e70325c7c09_add (data) {\n",
" geo_json_2feeff3b3917a8d664677e70325c7c09\n",
" .addData(data);\n",
" }\n",
" geo_json_2feeff3b3917a8d664677e70325c7c09_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0849687577025384, 52.32640938176066], [-2.084953791451716, 52.326378974233506], [-2.0849712285134037, 52.32636960825541], [-2.085005360665823, 52.32637785280641], [-2.0850173258879074, 52.32640040776249], [-2.0849687577025384, 52.32640938176066]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2feeff3b3917a8d664677e70325c7c09.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3893a851a96fd3460afb4b752797d0e1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9905acc192199fdf85a88084d714ce02 = $(`&lt;div id=&quot;html_9905acc192199fdf85a88084d714ce02&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 94&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_3893a851a96fd3460afb4b752797d0e1.setContent(html_9905acc192199fdf85a88084d714ce02);\n",
" \n",
" \n",
"\n",
" geo_json_2feeff3b3917a8d664677e70325c7c09.bindPopup(popup_3893a851a96fd3460afb4b752797d0e1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2feeff3b3917a8d664677e70325c7c09.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_9e9e073eefe3a659b41372041fd5daba_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9e9e073eefe3a659b41372041fd5daba_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9e9e073eefe3a659b41372041fd5daba = L.geoJson(null, {\n",
" onEachFeature: geo_json_9e9e073eefe3a659b41372041fd5daba_onEachFeature,\n",
" \n",
" style: geo_json_9e9e073eefe3a659b41372041fd5daba_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9e9e073eefe3a659b41372041fd5daba_add (data) {\n",
" geo_json_9e9e073eefe3a659b41372041fd5daba\n",
" .addData(data);\n",
" }\n",
" geo_json_9e9e073eefe3a659b41372041fd5daba_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0850244792258463, 52.32653558187534], [-2.0850227011048568, 52.32653647768067], [-2.085021463510192, 52.32653766708004], [-2.0850208880151717, 52.32653903310445], [-2.0850210330573633, 52.32654044176457], [-2.085034023858853, 52.326560644142795], [-2.0850179240988096, 52.32657187103322], [-2.0849282299461023, 52.32658086031074], [-2.0849370656684094, 52.326540918592535], [-2.0849370115893318, 52.3265395008772], [-2.0849362386807675, 52.32653816459468], [-2.0849345356072138, 52.32653688382044], [-2.0849321922132273, 52.32653606650157], [-2.084881091981993, 52.32652705920228], [-2.0848654952795527, 52.32650607384235], [-2.084919900764498, 52.326486517814644], [-2.0849219411724937, 52.326485430327736], [-2.084923200239317, 52.32648396311687], [-2.084939817017232, 52.32645086541658], [-2.085014585874853, 52.32644132951372], [-2.0850630842444207, 52.326460882336285], [-2.0850776573870835, 52.32651646807892], [-2.0850244792258463, 52.32653558187534]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9e9e073eefe3a659b41372041fd5daba.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_014e95520fe8b1d4c379bdf84f66dcd9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4b7130dfd97a97ddde66fb6458abb764 = $(`&lt;div id=&quot;html_4b7130dfd97a97ddde66fb6458abb764&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 95&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 134.0 sqm&lt;br&gt;Intersecting area: 133.7 sqm&lt;/div&gt;`)[0];\n",
" popup_014e95520fe8b1d4c379bdf84f66dcd9.setContent(html_4b7130dfd97a97ddde66fb6458abb764);\n",
" \n",
" \n",
"\n",
" geo_json_9e9e073eefe3a659b41372041fd5daba.bindPopup(popup_014e95520fe8b1d4c379bdf84f66dcd9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9e9e073eefe3a659b41372041fd5daba.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_7da7f7ef25c1d3c1161c8e25dba32c58_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7da7f7ef25c1d3c1161c8e25dba32c58_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7da7f7ef25c1d3c1161c8e25dba32c58 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7da7f7ef25c1d3c1161c8e25dba32c58_onEachFeature,\n",
" \n",
" style: geo_json_7da7f7ef25c1d3c1161c8e25dba32c58_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7da7f7ef25c1d3c1161c8e25dba32c58_add (data) {\n",
" geo_json_7da7f7ef25c1d3c1161c8e25dba32c58\n",
" .addData(data);\n",
" }\n",
" geo_json_7da7f7ef25c1d3c1161c8e25dba32c58_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.085034481467678, 52.327731666971005], [-2.084969423024979, 52.3277298502583], [-2.0849545682532478, 52.327693549582015], [-2.084968999255252, 52.32764907007744], [-2.0849745109916893, 52.327637051606125], [-2.0850643153441575, 52.327639237927286], [-2.0850445168980327, 52.32768753765628], [-2.0850442960486104, 52.32768867597237], [-2.085044552083763, 52.32768981035171], [-2.08504526725409, 52.327690868877944], [-2.085065183428134, 52.327712148667054], [-2.085034481467678, 52.327731666971005]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7da7f7ef25c1d3c1161c8e25dba32c58.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8bc0ff9f015ad3ba471fa57919eec198 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_eaac87f35225b5d6dc5e992cd2b91370 = $(`&lt;div id=&quot;html_eaac87f35225b5d6dc5e992cd2b91370&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 96&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 63.5 sqm&lt;/div&gt;`)[0];\n",
" popup_8bc0ff9f015ad3ba471fa57919eec198.setContent(html_eaac87f35225b5d6dc5e992cd2b91370);\n",
" \n",
" \n",
"\n",
" geo_json_7da7f7ef25c1d3c1161c8e25dba32c58.bindPopup(popup_8bc0ff9f015ad3ba471fa57919eec198)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7da7f7ef25c1d3c1161c8e25dba32c58.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_72ddcd5096b0d20cecdb2e9856a8d354_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_72ddcd5096b0d20cecdb2e9856a8d354_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_72ddcd5096b0d20cecdb2e9856a8d354 = L.geoJson(null, {\n",
" onEachFeature: geo_json_72ddcd5096b0d20cecdb2e9856a8d354_onEachFeature,\n",
" \n",
" style: geo_json_72ddcd5096b0d20cecdb2e9856a8d354_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_72ddcd5096b0d20cecdb2e9856a8d354_add (data) {\n",
" geo_json_72ddcd5096b0d20cecdb2e9856a8d354\n",
" .addData(data);\n",
" }\n",
" geo_json_72ddcd5096b0d20cecdb2e9856a8d354_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0850636966302836, 52.328001010944455], [-2.084971330759331, 52.32799106254202], [-2.0849851981194645, 52.327953323392784], [-2.085017806798344, 52.32795158722988], [-2.0850796117889576, 52.32796221665551], [-2.0850636966302836, 52.328001010944455]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_72ddcd5096b0d20cecdb2e9856a8d354.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a19d3bfad278b014989466f3f6168c4f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b0dac3e58ae210ad282fc8960a5a47ef = $(`&lt;div id=&quot;html_b0dac3e58ae210ad282fc8960a5a47ef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 97&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 30.0 sqm&lt;br&gt;Intersecting area: 29.9 sqm&lt;/div&gt;`)[0];\n",
" popup_a19d3bfad278b014989466f3f6168c4f.setContent(html_b0dac3e58ae210ad282fc8960a5a47ef);\n",
" \n",
" \n",
"\n",
" geo_json_72ddcd5096b0d20cecdb2e9856a8d354.bindPopup(popup_a19d3bfad278b014989466f3f6168c4f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_72ddcd5096b0d20cecdb2e9856a8d354.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_177234d33e5c07446441ffbf444d292e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_177234d33e5c07446441ffbf444d292e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_177234d33e5c07446441ffbf444d292e = L.geoJson(null, {\n",
" onEachFeature: geo_json_177234d33e5c07446441ffbf444d292e_onEachFeature,\n",
" \n",
" style: geo_json_177234d33e5c07446441ffbf444d292e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_177234d33e5c07446441ffbf444d292e_add (data) {\n",
" geo_json_177234d33e5c07446441ffbf444d292e\n",
" .addData(data);\n",
" }\n",
" geo_json_177234d33e5c07446441ffbf444d292e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0840938424488162, 52.327282530575985], [-2.084057609339553, 52.327274702607376], [-2.08404472044319, 52.32726244288897], [-2.0840608524131423, 52.32725168899303], [-2.084109665081895, 52.32726189217425], [-2.0840938424488162, 52.327282530575985]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_177234d33e5c07446441ffbf444d292e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a4cef4c0ff3057c7a1a28576365b6f2a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2a9be582ecac382a850e724e5dbd0210 = $(`&lt;div id=&quot;html_2a9be582ecac382a850e724e5dbd0210&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 98&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 9.0 sqm&lt;/div&gt;`)[0];\n",
" popup_a4cef4c0ff3057c7a1a28576365b6f2a.setContent(html_2a9be582ecac382a850e724e5dbd0210);\n",
" \n",
" \n",
"\n",
" geo_json_177234d33e5c07446441ffbf444d292e.bindPopup(popup_a4cef4c0ff3057c7a1a28576365b6f2a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_177234d33e5c07446441ffbf444d292e.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_a98f9888809c3454b9931bf880f5767a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a98f9888809c3454b9931bf880f5767a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a98f9888809c3454b9931bf880f5767a = L.geoJson(null, {\n",
" onEachFeature: geo_json_a98f9888809c3454b9931bf880f5767a_onEachFeature,\n",
" \n",
" style: geo_json_a98f9888809c3454b9931bf880f5767a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a98f9888809c3454b9931bf880f5767a_add (data) {\n",
" geo_json_a98f9888809c3454b9931bf880f5767a\n",
" .addData(data);\n",
" }\n",
" geo_json_a98f9888809c3454b9931bf880f5767a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084296838856989, 52.32771474005955], [-2.0841811309078606, 52.32771467447908], [-2.084163025730079, 52.327693325823255], [-2.0842080869708877, 52.32766504732505], [-2.0842409488336084, 52.32766460128683], [-2.0843155590032074, 52.32769227275613], [-2.084296838856989, 52.32771474005955]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a98f9888809c3454b9931bf880f5767a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_04525a1f1623f61d624ea71ed3f03716 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4cc19a0d5f51d2d43ad4cbaf3e3ef211 = $(`&lt;div id=&quot;html_4cc19a0d5f51d2d43ad4cbaf3e3ef211&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 99&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 42.0 sqm&lt;br&gt;Intersecting area: 42.0 sqm&lt;/div&gt;`)[0];\n",
" popup_04525a1f1623f61d624ea71ed3f03716.setContent(html_4cc19a0d5f51d2d43ad4cbaf3e3ef211);\n",
" \n",
" \n",
"\n",
" geo_json_a98f9888809c3454b9931bf880f5767a.bindPopup(popup_04525a1f1623f61d624ea71ed3f03716)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a98f9888809c3454b9931bf880f5767a.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_87882c5be9fc3625a066df60479adb79_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_87882c5be9fc3625a066df60479adb79_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_87882c5be9fc3625a066df60479adb79 = L.geoJson(null, {\n",
" onEachFeature: geo_json_87882c5be9fc3625a066df60479adb79_onEachFeature,\n",
" \n",
" style: geo_json_87882c5be9fc3625a066df60479adb79_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_87882c5be9fc3625a066df60479adb79_add (data) {\n",
" geo_json_87882c5be9fc3625a066df60479adb79\n",
" .addData(data);\n",
" }\n",
" geo_json_87882c5be9fc3625a066df60479adb79_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084314511507322, 52.32795705537148], [-2.0842822393897844, 52.32795677999709], [-2.084265676009629, 52.327936839014704], [-2.0842830622821458, 52.327916597739645], [-2.084331309846684, 52.32791861027286], [-2.084314511507322, 52.32795705537148]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_87882c5be9fc3625a066df60479adb79.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d23b8857fc68715a065d470a96bcf155 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6ed541f6f3aa9053ba192992e3b4b706 = $(`&lt;div id=&quot;html_6ed541f6f3aa9053ba192992e3b4b706&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 100&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 15.0 sqm&lt;br&gt;Intersecting area: 14.7 sqm&lt;/div&gt;`)[0];\n",
" popup_d23b8857fc68715a065d470a96bcf155.setContent(html_6ed541f6f3aa9053ba192992e3b4b706);\n",
" \n",
" \n",
"\n",
" geo_json_87882c5be9fc3625a066df60479adb79.bindPopup(popup_d23b8857fc68715a065d470a96bcf155)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_87882c5be9fc3625a066df60479adb79.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_e6493db5179c425107d88910b248e8aa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e6493db5179c425107d88910b248e8aa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e6493db5179c425107d88910b248e8aa = L.geoJson(null, {\n",
" onEachFeature: geo_json_e6493db5179c425107d88910b248e8aa_onEachFeature,\n",
" \n",
" style: geo_json_e6493db5179c425107d88910b248e8aa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e6493db5179c425107d88910b248e8aa_add (data) {\n",
" geo_json_e6493db5179c425107d88910b248e8aa\n",
" .addData(data);\n",
" }\n",
" geo_json_e6493db5179c425107d88910b248e8aa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0833890014779666, 52.327049517731446], [-2.0833428205445843, 52.3270496520103], [-2.0833392788478577, 52.32703431544575], [-2.083338879403768, 52.32703335827134], [-2.083338147011188, 52.32703247865034], [-2.0833249413183283, 52.32702015164915], [-2.0833413753865098, 52.327000699622275], [-2.0834050097816617, 52.327010500636646], [-2.0833890014779666, 52.327049517731446]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e6493db5179c425107d88910b248e8aa.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_bf4abe080a9ea71ab5ae1e013c126980 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_60b77a5ee38b35a72f3926374366abf6 = $(`&lt;div id=&quot;html_60b77a5ee38b35a72f3926374366abf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 101&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 21.0 sqm&lt;/div&gt;`)[0];\n",
" popup_bf4abe080a9ea71ab5ae1e013c126980.setContent(html_60b77a5ee38b35a72f3926374366abf6);\n",
" \n",
" \n",
"\n",
" geo_json_e6493db5179c425107d88910b248e8aa.bindPopup(popup_bf4abe080a9ea71ab5ae1e013c126980)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e6493db5179c425107d88910b248e8aa.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_0262d7251b38f47e9d7b45b9a9a23441_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0262d7251b38f47e9d7b45b9a9a23441_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0262d7251b38f47e9d7b45b9a9a23441 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0262d7251b38f47e9d7b45b9a9a23441_onEachFeature,\n",
" \n",
" style: geo_json_0262d7251b38f47e9d7b45b9a9a23441_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0262d7251b38f47e9d7b45b9a9a23441_add (data) {\n",
" geo_json_0262d7251b38f47e9d7b45b9a9a23441\n",
" .addData(data);\n",
" }\n",
" geo_json_0262d7251b38f47e9d7b45b9a9a23441_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083536342599565, 52.327166494415245], [-2.0834741234395104, 52.32716653853003], [-2.083442449288057, 52.3271469191974], [-2.083442015100603, 52.327101901105614], [-2.083487268578736, 52.327063608568345], [-2.0835215104886453, 52.32706301611003], [-2.08358207378676, 52.32709992913854], [-2.0835823062048173, 52.327138267654185], [-2.083536342599565, 52.327166494415245]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0262d7251b38f47e9d7b45b9a9a23441.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9506ba490c3d9db601e27e8ea5779a2a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6a752e5a47a4fcf7e9dada4f92d039de = $(`&lt;div id=&quot;html_6a752e5a47a4fcf7e9dada4f92d039de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 102&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 87.0 sqm&lt;br&gt;Intersecting area: 87.2 sqm&lt;/div&gt;`)[0];\n",
" popup_9506ba490c3d9db601e27e8ea5779a2a.setContent(html_6a752e5a47a4fcf7e9dada4f92d039de);\n",
" \n",
" \n",
"\n",
" geo_json_0262d7251b38f47e9d7b45b9a9a23441.bindPopup(popup_9506ba490c3d9db601e27e8ea5779a2a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0262d7251b38f47e9d7b45b9a9a23441.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_b146636034de9e960ae26a07a8fd6a5f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b146636034de9e960ae26a07a8fd6a5f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b146636034de9e960ae26a07a8fd6a5f = L.geoJson(null, {\n",
" onEachFeature: geo_json_b146636034de9e960ae26a07a8fd6a5f_onEachFeature,\n",
" \n",
" style: geo_json_b146636034de9e960ae26a07a8fd6a5f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b146636034de9e960ae26a07a8fd6a5f_add (data) {\n",
" geo_json_b146636034de9e960ae26a07a8fd6a5f\n",
" .addData(data);\n",
" }\n",
" geo_json_b146636034de9e960ae26a07a8fd6a5f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0840959162136676, 52.32718246374062], [-2.084031140374481, 52.32718375331756], [-2.083985071750181, 52.32713648786365], [-2.0839883764561753, 52.327116552450015], [-2.084064903671244, 52.32710812168662], [-2.084081133129332, 52.327131690482375], [-2.0840825913108616, 52.3271330505576], [-2.0840844036037525, 52.32713389793748], [-2.084086179868283, 52.327134313815], [-2.084110412213999, 52.32713707717869], [-2.0840959162136676, 52.32718246374062]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b146636034de9e960ae26a07a8fd6a5f.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_185c2636e440c69c71dddd3c007379ef = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_67f1e8de54da5820dda4008f0bce5b4a = $(`&lt;div id=&quot;html_67f1e8de54da5820dda4008f0bce5b4a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 103&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 50.0 sqm&lt;br&gt;Intersecting area: 50.3 sqm&lt;/div&gt;`)[0];\n",
" popup_185c2636e440c69c71dddd3c007379ef.setContent(html_67f1e8de54da5820dda4008f0bce5b4a);\n",
" \n",
" \n",
"\n",
" geo_json_b146636034de9e960ae26a07a8fd6a5f.bindPopup(popup_185c2636e440c69c71dddd3c007379ef)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b146636034de9e960ae26a07a8fd6a5f.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_a12ca341ecadb7f745f32a20a9c340e9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a12ca341ecadb7f745f32a20a9c340e9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a12ca341ecadb7f745f32a20a9c340e9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a12ca341ecadb7f745f32a20a9c340e9_onEachFeature,\n",
" \n",
" style: geo_json_a12ca341ecadb7f745f32a20a9c340e9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a12ca341ecadb7f745f32a20a9c340e9_add (data) {\n",
" geo_json_a12ca341ecadb7f745f32a20a9c340e9\n",
" .addData(data);\n",
" }\n",
" geo_json_a12ca341ecadb7f745f32a20a9c340e9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083286128694586, 52.327256739882095], [-2.083211728436821, 52.3272658024457], [-2.08317858887676, 52.32724640433686], [-2.083163447080499, 52.32721812289051], [-2.083164315624741, 52.32719075702512], [-2.083186706660774, 52.327188960253594], [-2.0831891677704846, 52.32718839033498], [-2.0831911407959423, 52.32718732450147], [-2.083192252235262, 52.327186119932165], [-2.083192710423416, 52.327184764785414], [-2.0831926515240418, 52.32716983930558], [-2.083192325498865, 52.327168911748196], [-2.083191688522684, 52.32716804734155], [-2.083189919505956, 52.327166798054435], [-2.0831639278853373, 52.32715546269568], [-2.0831777168537386, 52.327129190800115], [-2.0831964134216845, 52.32710805603563], [-2.0832736310681352, 52.32711010156953], [-2.0832605672204663, 52.32718478515742], [-2.083260690220515, 52.32718621001799], [-2.0832611761441746, 52.32718711498615], [-2.083261964188413, 52.327187937930276], [-2.0832630175876643, 52.32718863932158], [-2.0832642893306956, 52.327189189519586], [-2.0833038798082226, 52.32720108162232], [-2.083286128694586, 52.327256739882095]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a12ca341ecadb7f745f32a20a9c340e9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5ed78128ca12aad382c88b5574ad9f5f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_91a8e5e76e287e2e0b89463cd4ec5a5f = $(`&lt;div id=&quot;html_91a8e5e76e287e2e0b89463cd4ec5a5f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 104&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 118.0 sqm&lt;br&gt;Intersecting area: 117.5 sqm&lt;/div&gt;`)[0];\n",
" popup_5ed78128ca12aad382c88b5574ad9f5f.setContent(html_91a8e5e76e287e2e0b89463cd4ec5a5f);\n",
" \n",
" \n",
"\n",
" geo_json_a12ca341ecadb7f745f32a20a9c340e9.bindPopup(popup_5ed78128ca12aad382c88b5574ad9f5f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a12ca341ecadb7f745f32a20a9c340e9.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_0400ff5355774e5f1ec8be317fb6adf0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0400ff5355774e5f1ec8be317fb6adf0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0400ff5355774e5f1ec8be317fb6adf0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0400ff5355774e5f1ec8be317fb6adf0_onEachFeature,\n",
" \n",
" style: geo_json_0400ff5355774e5f1ec8be317fb6adf0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0400ff5355774e5f1ec8be317fb6adf0_add (data) {\n",
" geo_json_0400ff5355774e5f1ec8be317fb6adf0\n",
" .addData(data);\n",
" }\n",
" geo_json_0400ff5355774e5f1ec8be317fb6adf0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080628026788012, 52.32734855097607], [-2.080597173852751, 52.327345750974516], [-2.0806145494223434, 52.327317241962405], [-2.080647263498134, 52.32732759874217], [-2.080628026788012, 52.32734855097607]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0400ff5355774e5f1ec8be317fb6adf0.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_893d97e619e6f897476e6c67bf4570c1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6010f081314a799b857e47dd34595f61 = $(`&lt;div id=&quot;html_6010f081314a799b857e47dd34595f61&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 105&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.9 sqm&lt;/div&gt;`)[0];\n",
" popup_893d97e619e6f897476e6c67bf4570c1.setContent(html_6010f081314a799b857e47dd34595f61);\n",
" \n",
" \n",
"\n",
" geo_json_0400ff5355774e5f1ec8be317fb6adf0.bindPopup(popup_893d97e619e6f897476e6c67bf4570c1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0400ff5355774e5f1ec8be317fb6adf0.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0_onEachFeature,\n",
" \n",
" style: geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0_add (data) {\n",
" geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0\n",
" .addData(data);\n",
" }\n",
" geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.081158385924101, 52.32744708508977], [-2.0810834501550235, 52.32744699735989], [-2.081050963648488, 52.32742161163766], [-2.0810492597660355, 52.32742064456764], [-2.0810478840623823, 52.32742020409664], [-2.080963368936631, 52.32739975380226], [-2.080978329412794, 52.32734420209903], [-2.08100963575228, 52.32732536948537], [-2.081058494543108, 52.327325058968604], [-2.0810607111421726, 52.32732475986631], [-2.0810626716858835, 52.327324059977485], [-2.081063743103585, 52.327323402056], [-2.0810645707209083, 52.32732262383732], [-2.08106511791999, 52.32732175770385], [-2.0810653642188535, 52.32732084053239], [-2.081065757270503, 52.32729112857287], [-2.0810932152785946, 52.32727980359769], [-2.0811161674757335, 52.327271883612106], [-2.081160380260316, 52.32729854593476], [-2.0811550981352327, 52.327330674237956], [-2.08115510870848, 52.32733163528004], [-2.0811554523143534, 52.32733257272064], [-2.0811563244153146, 52.32733364644927], [-2.08115733822664, 52.327334379347825], [-2.0811913420517665, 52.32735422603843], [-2.0811915470745928, 52.32741792051994], [-2.081158385924101, 52.32744708508977]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_92abb781396863dd9ecea01c9a8a6fe9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e9cfaa04e6f963cf4dddae3ffbce17ea = $(`&lt;div id=&quot;html_e9cfaa04e6f963cf4dddae3ffbce17ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 106&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 196.8 sqm&lt;/div&gt;`)[0];\n",
" popup_92abb781396863dd9ecea01c9a8a6fe9.setContent(html_e9cfaa04e6f963cf4dddae3ffbce17ea);\n",
" \n",
" \n",
"\n",
" geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0.bindPopup(popup_92abb781396863dd9ecea01c9a8a6fe9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cc2f6fe3e9db8fbbbad2ddac2b1734d0.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_496d9bad013795696cad8c7d96af8f2c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_496d9bad013795696cad8c7d96af8f2c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_496d9bad013795696cad8c7d96af8f2c = L.geoJson(null, {\n",
" onEachFeature: geo_json_496d9bad013795696cad8c7d96af8f2c_onEachFeature,\n",
" \n",
" style: geo_json_496d9bad013795696cad8c7d96af8f2c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_496d9bad013795696cad8c7d96af8f2c_add (data) {\n",
" geo_json_496d9bad013795696cad8c7d96af8f2c\n",
" .addData(data);\n",
" }\n",
" geo_json_496d9bad013795696cad8c7d96af8f2c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.081055053091306, 52.32756404316018], [-2.081023696210308, 52.327563386874616], [-2.0810071649017288, 52.32754325212233], [-2.0810122643606426, 52.32752347558324], [-2.0810734335816528, 52.327534732364704], [-2.081055053091306, 52.32756404316018]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_496d9bad013795696cad8c7d96af8f2c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_54a95e1fb391004f804b9a428b9772f5 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4f6eb54920eb144232f03b16edf31853 = $(`&lt;div id=&quot;html_4f6eb54920eb144232f03b16edf31853&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 107&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.9 sqm&lt;/div&gt;`)[0];\n",
" popup_54a95e1fb391004f804b9a428b9772f5.setContent(html_4f6eb54920eb144232f03b16edf31853);\n",
" \n",
" \n",
"\n",
" geo_json_496d9bad013795696cad8c7d96af8f2c.bindPopup(popup_54a95e1fb391004f804b9a428b9772f5)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_496d9bad013795696cad8c7d96af8f2c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_42682202a083c6da43de96486e387ec2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_42682202a083c6da43de96486e387ec2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_42682202a083c6da43de96486e387ec2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_42682202a083c6da43de96486e387ec2_onEachFeature,\n",
" \n",
" style: geo_json_42682202a083c6da43de96486e387ec2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_42682202a083c6da43de96486e387ec2_add (data) {\n",
" geo_json_42682202a083c6da43de96486e387ec2\n",
" .addData(data);\n",
" }\n",
" geo_json_42682202a083c6da43de96486e387ec2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0828765108601806, 52.3274274937031], [-2.082801819099485, 52.32743701831097], [-2.082769022842206, 52.327426967851466], [-2.082767825546858, 52.32737997155481], [-2.082795539203616, 52.32735962434926], [-2.082860204700448, 52.32735097615319], [-2.082892114249987, 52.32736942225236], [-2.0828765108601806, 52.3274274937031]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_42682202a083c6da43de96486e387ec2.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_dce40faefaff1aac7f93cb33b9707e76 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_87b9d7b7e4cfb95bfac9d5535faeaa2c = $(`&lt;div id=&quot;html_87b9d7b7e4cfb95bfac9d5535faeaa2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 108&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 64.0 sqm&lt;/div&gt;`)[0];\n",
" popup_dce40faefaff1aac7f93cb33b9707e76.setContent(html_87b9d7b7e4cfb95bfac9d5535faeaa2c);\n",
" \n",
" \n",
"\n",
" geo_json_42682202a083c6da43de96486e387ec2.bindPopup(popup_dce40faefaff1aac7f93cb33b9707e76)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_42682202a083c6da43de96486e387ec2.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_9b8f360e6f3112ecc4fbe3adb8707afe_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9b8f360e6f3112ecc4fbe3adb8707afe_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9b8f360e6f3112ecc4fbe3adb8707afe = L.geoJson(null, {\n",
" onEachFeature: geo_json_9b8f360e6f3112ecc4fbe3adb8707afe_onEachFeature,\n",
" \n",
" style: geo_json_9b8f360e6f3112ecc4fbe3adb8707afe_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9b8f360e6f3112ecc4fbe3adb8707afe_add (data) {\n",
" geo_json_9b8f360e6f3112ecc4fbe3adb8707afe\n",
" .addData(data);\n",
" }\n",
" geo_json_9b8f360e6f3112ecc4fbe3adb8707afe_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.08259576254254, 52.32756297267278], [-2.0825644056399586, 52.32756231679614], [-2.082547873632557, 52.327542182259705], [-2.082552972404256, 52.32752240565441], [-2.0826141420139446, 52.32753366163806], [-2.08259576254254, 52.32756297267278]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9b8f360e6f3112ecc4fbe3adb8707afe.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3926aaaf4977ae170ccbf443c2939335 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cfbd3808e0964e5cb7ca76be2dda1f42 = $(`&lt;div id=&quot;html_cfbd3808e0964e5cb7ca76be2dda1f42&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 109&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.9 sqm&lt;/div&gt;`)[0];\n",
" popup_3926aaaf4977ae170ccbf443c2939335.setContent(html_cfbd3808e0964e5cb7ca76be2dda1f42);\n",
" \n",
" \n",
"\n",
" geo_json_9b8f360e6f3112ecc4fbe3adb8707afe.bindPopup(popup_3926aaaf4977ae170ccbf443c2939335)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9b8f360e6f3112ecc4fbe3adb8707afe.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_12f1e14b91eab448e6d9bece6cdf5aa5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_12f1e14b91eab448e6d9bece6cdf5aa5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_12f1e14b91eab448e6d9bece6cdf5aa5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_12f1e14b91eab448e6d9bece6cdf5aa5_onEachFeature,\n",
" \n",
" style: geo_json_12f1e14b91eab448e6d9bece6cdf5aa5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_12f1e14b91eab448e6d9bece6cdf5aa5_add (data) {\n",
" geo_json_12f1e14b91eab448e6d9bece6cdf5aa5\n",
" .addData(data);\n",
" }\n",
" geo_json_12f1e14b91eab448e6d9bece6cdf5aa5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0812015248518487, 52.3276263449843], [-2.0811833216624667, 52.32759716997109], [-2.0811862270220067, 52.32758599315748], [-2.0812334285261755, 52.327577180787564], [-2.081264613420818, 52.32759602159465], [-2.0812649310126474, 52.32761553099616], [-2.0812015248518487, 52.3276263449843]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_12f1e14b91eab448e6d9bece6cdf5aa5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_df3a5d71b87f8c7d648588b38ed81376 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f81febb97dbd4552ee617ef88b9c4792 = $(`&lt;div id=&quot;html_f81febb97dbd4552ee617ef88b9c4792&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 110&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.6 sqm&lt;/div&gt;`)[0];\n",
" popup_df3a5d71b87f8c7d648588b38ed81376.setContent(html_f81febb97dbd4552ee617ef88b9c4792);\n",
" \n",
" \n",
"\n",
" geo_json_12f1e14b91eab448e6d9bece6cdf5aa5.bindPopup(popup_df3a5d71b87f8c7d648588b38ed81376)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_12f1e14b91eab448e6d9bece6cdf5aa5.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_43a8286eeb5083b0ee553785f25f7a3d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_43a8286eeb5083b0ee553785f25f7a3d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_43a8286eeb5083b0ee553785f25f7a3d = L.geoJson(null, {\n",
" onEachFeature: geo_json_43a8286eeb5083b0ee553785f25f7a3d_onEachFeature,\n",
" \n",
" style: geo_json_43a8286eeb5083b0ee553785f25f7a3d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_43a8286eeb5083b0ee553785f25f7a3d_add (data) {\n",
" geo_json_43a8286eeb5083b0ee553785f25f7a3d\n",
" .addData(data);\n",
" }\n",
" geo_json_43a8286eeb5083b0ee553785f25f7a3d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.08237383038617, 52.32763423514653], [-2.0823287197422085, 52.327597194728405], [-2.0823626974764813, 52.32757586960627], [-2.082464752041985, 52.32757627017352], [-2.0824677341366358, 52.32760640321617], [-2.08237383038617, 52.32763423514653]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_43a8286eeb5083b0ee553785f25f7a3d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5d456351c19c3a24bac60a63c5a575fd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_134c85fc35265220dce82142a56b5570 = $(`&lt;div id=&quot;html_134c85fc35265220dce82142a56b5570&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 111&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 42.0 sqm&lt;br&gt;Intersecting area: 42.0 sqm&lt;/div&gt;`)[0];\n",
" popup_5d456351c19c3a24bac60a63c5a575fd.setContent(html_134c85fc35265220dce82142a56b5570);\n",
" \n",
" \n",
"\n",
" geo_json_43a8286eeb5083b0ee553785f25f7a3d.bindPopup(popup_5d456351c19c3a24bac60a63c5a575fd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_43a8286eeb5083b0ee553785f25f7a3d.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_588bff9f4d15fab344f88b626239b2fe_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_588bff9f4d15fab344f88b626239b2fe_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_588bff9f4d15fab344f88b626239b2fe = L.geoJson(null, {\n",
" onEachFeature: geo_json_588bff9f4d15fab344f88b626239b2fe_onEachFeature,\n",
" \n",
" style: geo_json_588bff9f4d15fab344f88b626239b2fe_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_588bff9f4d15fab344f88b626239b2fe_add (data) {\n",
" geo_json_588bff9f4d15fab344f88b626239b2fe\n",
" .addData(data);\n",
" }\n",
" geo_json_588bff9f4d15fab344f88b626239b2fe_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082420814124805, 52.327660618157026], [-2.082430141267317, 52.327638164018715], [-2.082451874074438, 52.32763104565278], [-2.0824666811733126, 52.32765155630023], [-2.082420814124805, 52.327660618157026]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_588bff9f4d15fab344f88b626239b2fe.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0608a838a46e0a24580dadf56eca064c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_14d8a1d32742a7a660a5eb04389f1464 = $(`&lt;div id=&quot;html_14d8a1d32742a7a660a5eb04389f1464&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 112&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 5.7 sqm&lt;/div&gt;`)[0];\n",
" popup_0608a838a46e0a24580dadf56eca064c.setContent(html_14d8a1d32742a7a660a5eb04389f1464);\n",
" \n",
" \n",
"\n",
" geo_json_588bff9f4d15fab344f88b626239b2fe.bindPopup(popup_0608a838a46e0a24580dadf56eca064c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_588bff9f4d15fab344f88b626239b2fe.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_d6f92193052463b2894593344aaa4975_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d6f92193052463b2894593344aaa4975_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d6f92193052463b2894593344aaa4975 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d6f92193052463b2894593344aaa4975_onEachFeature,\n",
" \n",
" style: geo_json_d6f92193052463b2894593344aaa4975_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d6f92193052463b2894593344aaa4975_add (data) {\n",
" geo_json_d6f92193052463b2894593344aaa4975\n",
" .addData(data);\n",
" }\n",
" geo_json_d6f92193052463b2894593344aaa4975_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082115671299766, 52.327804865000445], [-2.082039291377984, 52.32782393159268], [-2.081990831573902, 52.3277983549767], [-2.081988477857342, 52.32779752052794], [-2.08198618098299, 52.327797266805966], [-2.0819195060248883, 52.32779649958801], [-2.081903506495187, 52.32776666237722], [-2.0819591804863675, 52.32773804022491], [-2.0819604291360845, 52.32773721495451], [-2.0819614276406306, 52.32773601227171], [-2.081979679127692, 52.3277023025262], [-2.082100617404553, 52.327702763082335], [-2.0821311929324953, 52.3277227161734], [-2.082115671299766, 52.327804865000445]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d6f92193052463b2894593344aaa4975.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4684ba6fc9446fd6c1be9f6f0bded74a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c539010b8216e91040d779faf2ab6ffd = $(`&lt;div id=&quot;html_c539010b8216e91040d779faf2ab6ffd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 113&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 146.0 sqm&lt;br&gt;Intersecting area: 146.2 sqm&lt;/div&gt;`)[0];\n",
" popup_4684ba6fc9446fd6c1be9f6f0bded74a.setContent(html_c539010b8216e91040d779faf2ab6ffd);\n",
" \n",
" \n",
"\n",
" geo_json_d6f92193052463b2894593344aaa4975.bindPopup(popup_4684ba6fc9446fd6c1be9f6f0bded74a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d6f92193052463b2894593344aaa4975.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_f23d559d7b32fd4b0517bdd93e1936d3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f23d559d7b32fd4b0517bdd93e1936d3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f23d559d7b32fd4b0517bdd93e1936d3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f23d559d7b32fd4b0517bdd93e1936d3_onEachFeature,\n",
" \n",
" style: geo_json_f23d559d7b32fd4b0517bdd93e1936d3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f23d559d7b32fd4b0517bdd93e1936d3_add (data) {\n",
" geo_json_f23d559d7b32fd4b0517bdd93e1936d3\n",
" .addData(data);\n",
" }\n",
" geo_json_f23d559d7b32fd4b0517bdd93e1936d3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0825687454388597, 52.32794931819936], [-2.082536146504874, 52.32794924845354], [-2.0825051056450534, 52.32793016873968], [-2.0825052206763486, 52.327910033320954], [-2.0825320370209544, 52.32789925507081], [-2.082582656757971, 52.327890818249294], [-2.082600251094564, 52.327909281660375], [-2.0825687454388597, 52.32794931819936]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f23d559d7b32fd4b0517bdd93e1936d3.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3012d9089a78334994a47346aed3ef57 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_454db208da0a2f5ee903a816fd2f8095 = $(`&lt;div id=&quot;html_454db208da0a2f5ee903a816fd2f8095&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 114&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 29.0 sqm&lt;br&gt;Intersecting area: 29.5 sqm&lt;/div&gt;`)[0];\n",
" popup_3012d9089a78334994a47346aed3ef57.setContent(html_454db208da0a2f5ee903a816fd2f8095);\n",
" \n",
" \n",
"\n",
" geo_json_f23d559d7b32fd4b0517bdd93e1936d3.bindPopup(popup_3012d9089a78334994a47346aed3ef57)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f23d559d7b32fd4b0517bdd93e1936d3.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_8c115f78dde95223c4c63ded9d0a581b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8c115f78dde95223c4c63ded9d0a581b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8c115f78dde95223c4c63ded9d0a581b = L.geoJson(null, {\n",
" onEachFeature: geo_json_8c115f78dde95223c4c63ded9d0a581b_onEachFeature,\n",
" \n",
" style: geo_json_8c115f78dde95223c4c63ded9d0a581b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8c115f78dde95223c4c63ded9d0a581b_add (data) {\n",
" geo_json_8c115f78dde95223c4c63ded9d0a581b\n",
" .addData(data);\n",
" }\n",
" geo_json_8c115f78dde95223c4c63ded9d0a581b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082668633911681, 52.327976573819896], [-2.0826388160257467, 52.327975946551994], [-2.0826224756240266, 52.327957153229384], [-2.0826408462429913, 52.327917534045454], [-2.082672337582111, 52.327917754678516], [-2.0827030131831905, 52.32793686067764], [-2.082668633911681, 52.327976573819896]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8c115f78dde95223c4c63ded9d0a581b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e86a7cbe3cef1628edfa29cae26677a8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_39bdf10a0684fa8594340fb514300bfe = $(`&lt;div id=&quot;html_39bdf10a0684fa8594340fb514300bfe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 115&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 24.5 sqm&lt;/div&gt;`)[0];\n",
" popup_e86a7cbe3cef1628edfa29cae26677a8.setContent(html_39bdf10a0684fa8594340fb514300bfe);\n",
" \n",
" \n",
"\n",
" geo_json_8c115f78dde95223c4c63ded9d0a581b.bindPopup(popup_e86a7cbe3cef1628edfa29cae26677a8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8c115f78dde95223c4c63ded9d0a581b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_1fe0accc3f525bde96c85ba6a0ade7a7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1fe0accc3f525bde96c85ba6a0ade7a7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1fe0accc3f525bde96c85ba6a0ade7a7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1fe0accc3f525bde96c85ba6a0ade7a7_onEachFeature,\n",
" \n",
" style: geo_json_1fe0accc3f525bde96c85ba6a0ade7a7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1fe0accc3f525bde96c85ba6a0ade7a7_add (data) {\n",
" geo_json_1fe0accc3f525bde96c85ba6a0ade7a7\n",
" .addData(data);\n",
" }\n",
" geo_json_1fe0accc3f525bde96c85ba6a0ade7a7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.078950629363494, 52.322394081204635], [-2.0788722636236043, 52.322377844376064], [-2.0787819555281914, 52.3223165323285], [-2.078780079139284, 52.322315777505786], [-2.0787779173311933, 52.32231540585796], [-2.078753501764331, 52.322314368539736], [-2.0786799921097905, 52.32226901986442], [-2.0786814646987524, 52.322257226430054], [-2.0787062608152342, 52.32225612204541], [-2.078760946169587, 52.32224847347387], [-2.0787901489241256, 52.322266715733505], [-2.078790783033356, 52.322289106305895], [-2.0787914240208485, 52.32229066028459], [-2.0787929140782047, 52.3222919781492], [-2.078794078576461, 52.322292558136894], [-2.0789075208107306, 52.32233814160186], [-2.0789516768397425, 52.322374314647405], [-2.078950629363494, 52.322394081204635]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1fe0accc3f525bde96c85ba6a0ade7a7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_23c5d2ddfcea9a4a190e0f3dd403f3c4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4a78fd8d9464b9eb7e8ec8cad1342b67 = $(`&lt;div id=&quot;html_4a78fd8d9464b9eb7e8ec8cad1342b67&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 116&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 89.0 sqm&lt;br&gt;Intersecting area: 13.4 sqm&lt;/div&gt;`)[0];\n",
" popup_23c5d2ddfcea9a4a190e0f3dd403f3c4.setContent(html_4a78fd8d9464b9eb7e8ec8cad1342b67);\n",
" \n",
" \n",
"\n",
" geo_json_1fe0accc3f525bde96c85ba6a0ade7a7.bindPopup(popup_23c5d2ddfcea9a4a190e0f3dd403f3c4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1fe0accc3f525bde96c85ba6a0ade7a7.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_fa36c03702d553280233b4908a3eca42_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_fa36c03702d553280233b4908a3eca42_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_fa36c03702d553280233b4908a3eca42 = L.geoJson(null, {\n",
" onEachFeature: geo_json_fa36c03702d553280233b4908a3eca42_onEachFeature,\n",
" \n",
" style: geo_json_fa36c03702d553280233b4908a3eca42_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_fa36c03702d553280233b4908a3eca42_add (data) {\n",
" geo_json_fa36c03702d553280233b4908a3eca42\n",
" .addData(data);\n",
" }\n",
" geo_json_fa36c03702d553280233b4908a3eca42_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0877673855137946, 52.323180778109325], [-2.0877490389964453, 52.32315678434537], [-2.087748261271675, 52.32315599198823], [-2.0877472358216, 52.32315531309593], [-2.087745328458797, 52.323154571024965], [-2.087742765997436, 52.32315420254037], [-2.0877220286501275, 52.323154217986136], [-2.0877201231976144, 52.323154438763915], [-2.0877187095922802, 52.32315483088989], [-2.0877169184738897, 52.323155737536084], [-2.087715679612054, 52.323156941347754], [-2.0877150944832694, 52.32315856091831], [-2.0877153877851713, 52.323159973062204], [-2.0877405540250793, 52.323197378724124], [-2.087687097101982, 52.32320799100886], [-2.087685668828952, 52.32320838224942], [-2.0876844096242997, 52.323208949566954], [-2.087683373742208, 52.32320966775724], [-2.087624242660043, 52.32326077609766], [-2.0875582753258253, 52.32324497723011], [-2.08755599029894, 52.32324467505878], [-2.0875540449768932, 52.323244771801726], [-2.0875522103131128, 52.32324517952136], [-2.0875506153628116, 52.32324586845664], [-2.0874911974368513, 52.32327964383716], [-2.08745688842419, 52.32327966931645], [-2.0873671785729155, 52.32322436614794], [-2.087367901631447, 52.32320417631941], [-2.0874062040670065, 52.323186214249766], [-2.087407694109116, 52.32318514960366], [-2.0874085762702603, 52.32318385525991], [-2.0874087813106232, 52.32318292641919], [-2.0874086679511445, 52.32318199152164], [-2.08740808620666, 52.32318087626757], [-2.087407293798887, 52.32318007493382], [-2.087381711693718, 52.32316150038108], [-2.0873822482125712, 52.32313229890994], [-2.087413445897771, 52.32311333340971], [-2.08748761356052, 52.32310412452284], [-2.0875523544509327, 52.32312159022911], [-2.0875538046084277, 52.3231218750377], [-2.0875553189454776, 52.323121971005186], [-2.087623376259508, 52.323121920396574], [-2.087625994619439, 52.323121622672396], [-2.0876276719885305, 52.323121065830115], [-2.0876292912811647, 52.32312007750266], [-2.087630336393679, 52.323118831580416], [-2.0876306921108774, 52.3231176832685], [-2.0876311869956607, 52.32306089090294], [-2.0876873525973427, 52.32304085939452], [-2.087752782221662, 52.323032025442934], [-2.087828826720626, 52.32305114126587], [-2.0878438247308266, 52.323170236754486], [-2.0877673855137946, 52.323180778109325]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_fa36c03702d553280233b4908a3eca42.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_affcb997adb62f3f88681e560029ee25 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f094ebd1160c67fd28137e20963d9635 = $(`&lt;div id=&quot;html_f094ebd1160c67fd28137e20963d9635&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 117&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 506.0 sqm&lt;br&gt;Intersecting area: 505.7 sqm&lt;/div&gt;`)[0];\n",
" popup_affcb997adb62f3f88681e560029ee25.setContent(html_f094ebd1160c67fd28137e20963d9635);\n",
" \n",
" \n",
"\n",
" geo_json_fa36c03702d553280233b4908a3eca42.bindPopup(popup_affcb997adb62f3f88681e560029ee25)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_fa36c03702d553280233b4908a3eca42.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb = L.geoJson(null, {\n",
" onEachFeature: geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb_onEachFeature,\n",
" \n",
" style: geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb_add (data) {\n",
" geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb\n",
" .addData(data);\n",
" }\n",
" geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.085140619838725, 52.32376644345485], [-2.085123324542607, 52.3237200934964], [-2.0851508728657673, 52.32370782713492], [-2.0851731414286125, 52.32370053166848], [-2.0851890389468926, 52.32373492206942], [-2.0851899862682712, 52.32373618360762], [-2.08519122628779, 52.323737058353565], [-2.085193133648555, 52.32373780855502], [-2.085194947761128, 52.3237381362851], [-2.085196837599474, 52.3237381690801], [-2.08519903040978, 52.32373781687576], [-2.0852312701139177, 52.32372667267298], [-2.0852605144969445, 52.323747880964966], [-2.085140619838725, 52.32376644345485]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_33d6f3c4931051bce84e51eea74044d0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_799bea80674632cbc5d74818412c078c = $(`&lt;div id=&quot;html_799bea80674632cbc5d74818412c078c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 118&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 33.0 sqm&lt;br&gt;Intersecting area: 32.9 sqm&lt;/div&gt;`)[0];\n",
" popup_33d6f3c4931051bce84e51eea74044d0.setContent(html_799bea80674632cbc5d74818412c078c);\n",
" \n",
" \n",
"\n",
" geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb.bindPopup(popup_33d6f3c4931051bce84e51eea74044d0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ff48a332db17cbfbb5c7c4cafad0fdbb.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_3eafc4e905f3515f35dae89d38c1fb56_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3eafc4e905f3515f35dae89d38c1fb56_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3eafc4e905f3515f35dae89d38c1fb56 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3eafc4e905f3515f35dae89d38c1fb56_onEachFeature,\n",
" \n",
" style: geo_json_3eafc4e905f3515f35dae89d38c1fb56_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3eafc4e905f3515f35dae89d38c1fb56_add (data) {\n",
" geo_json_3eafc4e905f3515f35dae89d38c1fb56\n",
" .addData(data);\n",
" }\n",
" geo_json_3eafc4e905f3515f35dae89d38c1fb56_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.088635427026923, 52.3243130281444], [-2.0886037386667873, 52.32431280745338], [-2.0885723916697807, 52.32429328543751], [-2.088571812245595, 52.32422522107584], [-2.088570922978249, 52.32422369071354], [-2.088542728843127, 52.324193759260744], [-2.0885565881945065, 52.324163653251745], [-2.0885919996618107, 52.32415551117192], [-2.088624265162457, 52.324175084637304], [-2.088624821178443, 52.32423435750109], [-2.0886539720520356, 52.32428333124764], [-2.088635427026923, 52.3243130281444]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3eafc4e905f3515f35dae89d38c1fb56.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a5c9ac151a0543005e7a054b7cfbff62 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_fc965515e641e5d8292f1a2fc2ab118a = $(`&lt;div id=&quot;html_fc965515e641e5d8292f1a2fc2ab118a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 119&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 76.0 sqm&lt;br&gt;Intersecting area: 76.3 sqm&lt;/div&gt;`)[0];\n",
" popup_a5c9ac151a0543005e7a054b7cfbff62.setContent(html_fc965515e641e5d8292f1a2fc2ab118a);\n",
" \n",
" \n",
"\n",
" geo_json_3eafc4e905f3515f35dae89d38c1fb56.bindPopup(popup_a5c9ac151a0543005e7a054b7cfbff62)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3eafc4e905f3515f35dae89d38c1fb56.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_f4b9b8f04359cb253c2694ad539597d5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f4b9b8f04359cb253c2694ad539597d5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f4b9b8f04359cb253c2694ad539597d5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f4b9b8f04359cb253c2694ad539597d5_onEachFeature,\n",
" \n",
" style: geo_json_f4b9b8f04359cb253c2694ad539597d5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f4b9b8f04359cb253c2694ad539597d5_add (data) {\n",
" geo_json_f4b9b8f04359cb253c2694ad539597d5\n",
" .addData(data);\n",
" }\n",
" geo_json_f4b9b8f04359cb253c2694ad539597d5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0887537490843524, 52.32467256947348], [-2.088719671932049, 52.32466949442386], [-2.088719277453667, 52.32460231456445], [-2.0886755426115995, 52.32450906879353], [-2.088694008186526, 52.32449752316283], [-2.088742092611035, 52.324534052785125], [-2.0887428070910463, 52.32458373837297], [-2.0887430764752573, 52.32458490779712], [-2.08874364606619, 52.324585787507644], [-2.0887445045190582, 52.324586574404364], [-2.0887720502184175, 52.32460685531207], [-2.0887722279578127, 52.324661048097376], [-2.0887537490843524, 52.32467256947348]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f4b9b8f04359cb253c2694ad539597d5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_68e5d3d7d809cf430b6bab021519682a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_18da9ae985112b5d7ee3b91fc69b3abb = $(`&lt;div id=&quot;html_18da9ae985112b5d7ee3b91fc69b3abb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 120&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 58.0 sqm&lt;br&gt;Intersecting area: 58.4 sqm&lt;/div&gt;`)[0];\n",
" popup_68e5d3d7d809cf430b6bab021519682a.setContent(html_18da9ae985112b5d7ee3b91fc69b3abb);\n",
" \n",
" \n",
"\n",
" geo_json_f4b9b8f04359cb253c2694ad539597d5.bindPopup(popup_68e5d3d7d809cf430b6bab021519682a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f4b9b8f04359cb253c2694ad539597d5.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_183381f69b75995d8a7b1374018f0578_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_183381f69b75995d8a7b1374018f0578_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_183381f69b75995d8a7b1374018f0578 = L.geoJson(null, {\n",
" onEachFeature: geo_json_183381f69b75995d8a7b1374018f0578_onEachFeature,\n",
" \n",
" style: geo_json_183381f69b75995d8a7b1374018f0578_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_183381f69b75995d8a7b1374018f0578_add (data) {\n",
" geo_json_183381f69b75995d8a7b1374018f0578\n",
" .addData(data);\n",
" }\n",
" geo_json_183381f69b75995d8a7b1374018f0578_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083753928311206, 52.32448542648855], [-2.083724429641392, 52.32453979321212], [-2.0836980789270116, 52.32455039250528], [-2.0836966983124037, 52.32455120170541], [-2.0836955605670093, 52.324552419785164], [-2.083695169059033, 52.32455332627572], [-2.0836803066093195, 52.32461186033259], [-2.083633498826024, 52.32463142029095], [-2.0835728173568526, 52.324631144214266], [-2.083554985093628, 52.32458335328341], [-2.083627353188638, 52.32450842525851], [-2.083627871033356, 52.324506824635726], [-2.0836285559704186, 52.32447565243098], [-2.083665593922249, 52.32447351612803], [-2.0836681180481587, 52.32447298840566], [-2.083670168737898, 52.32447194318826], [-2.0836713402491194, 52.324470737670964], [-2.0836718482617975, 52.32446936990011], [-2.083672379735669, 52.324447835301136], [-2.0837168843092218, 52.32441152642447], [-2.083754591819943, 52.32441897676145], [-2.0837684709724056, 52.32444016488064], [-2.083753928311206, 52.32448542648855]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_183381f69b75995d8a7b1374018f0578.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9aeee525695bcc0b08ffced696d96c13 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_db9e7392e5ac46599535a143b5f6c4b9 = $(`&lt;div id=&quot;html_db9e7392e5ac46599535a143b5f6c4b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 121&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 175.0 sqm&lt;br&gt;Intersecting area: 175.0 sqm&lt;/div&gt;`)[0];\n",
" popup_9aeee525695bcc0b08ffced696d96c13.setContent(html_db9e7392e5ac46599535a143b5f6c4b9);\n",
" \n",
" \n",
"\n",
" geo_json_183381f69b75995d8a7b1374018f0578.bindPopup(popup_9aeee525695bcc0b08ffced696d96c13)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_183381f69b75995d8a7b1374018f0578.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_fbdaeefcf475e6d8f33e51270669569d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_fbdaeefcf475e6d8f33e51270669569d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_fbdaeefcf475e6d8f33e51270669569d = L.geoJson(null, {\n",
" onEachFeature: geo_json_fbdaeefcf475e6d8f33e51270669569d_onEachFeature,\n",
" \n",
" style: geo_json_fbdaeefcf475e6d8f33e51270669569d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_fbdaeefcf475e6d8f33e51270669569d_add (data) {\n",
" geo_json_fbdaeefcf475e6d8f33e51270669569d\n",
" .addData(data);\n",
" }\n",
" geo_json_fbdaeefcf475e6d8f33e51270669569d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0834916101421355, 52.324748748649284], [-2.083490819387442, 52.32474957451195], [-2.0834902610607173, 52.32475071935801], [-2.0834748719392784, 52.32481025256884], [-2.0834339057832767, 52.32482945319614], [-2.0834323758021767, 52.324830425219595], [-2.0834014255750466, 52.32487321800873], [-2.0833678009524914, 52.324874243324686], [-2.0833499266588187, 52.324862468027526], [-2.083364553068917, 52.32479908576856], [-2.0834657720885748, 52.32468902709829], [-2.083530199217607, 52.324680597162036], [-2.0835482278597213, 52.32470185788039], [-2.0834916101421355, 52.324748748649284]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_fbdaeefcf475e6d8f33e51270669569d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4c1e5fdde04907aa6498dcf9ab7a64f3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_222d7234f3a6c03c9ae25c9adbf701be = $(`&lt;div id=&quot;html_222d7234f3a6c03c9ae25c9adbf701be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 122&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 123.0 sqm&lt;br&gt;Intersecting area: 122.5 sqm&lt;/div&gt;`)[0];\n",
" popup_4c1e5fdde04907aa6498dcf9ab7a64f3.setContent(html_222d7234f3a6c03c9ae25c9adbf701be);\n",
" \n",
" \n",
"\n",
" geo_json_fbdaeefcf475e6d8f33e51270669569d.bindPopup(popup_4c1e5fdde04907aa6498dcf9ab7a64f3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_fbdaeefcf475e6d8f33e51270669569d.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_3b49f4dd7ad8bbdd1797315ba2688352_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3b49f4dd7ad8bbdd1797315ba2688352_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3b49f4dd7ad8bbdd1797315ba2688352 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3b49f4dd7ad8bbdd1797315ba2688352_onEachFeature,\n",
" \n",
" style: geo_json_3b49f4dd7ad8bbdd1797315ba2688352_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3b49f4dd7ad8bbdd1797315ba2688352_add (data) {\n",
" geo_json_3b49f4dd7ad8bbdd1797315ba2688352\n",
" .addData(data);\n",
" }\n",
" geo_json_3b49f4dd7ad8bbdd1797315ba2688352_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0833157446133757, 52.32498269475225], [-2.083315013025149, 52.32498377948964], [-2.083314765787639, 52.32498494299409], [-2.0833148124889713, 52.3250097271392], [-2.0833150641091063, 52.32501088939051], [-2.0833157997838647, 52.32501197308989], [-2.083316702112459, 52.32501273302201], [-2.083318159063856, 52.325013493461995], [-2.08338638639661, 52.325040589277826], [-2.0833872664264237, 52.325062200187446], [-2.083313402824537, 52.32511660630009], [-2.083216218616219, 52.325143877546225], [-2.0832146131207323, 52.32514449271335], [-2.0832133176564063, 52.32514534050218], [-2.083212418673385, 52.32514636242606], [-2.083212028611323, 52.32514726082031], [-2.083196902636368, 52.32520577252042], [-2.0831296313992627, 52.32522449536064], [-2.0831274352036426, 52.32522543548454], [-2.083125936746482, 52.3252267967629], [-2.083125361206659, 52.32522816098221], [-2.083125504711676, 52.32522956784555], [-2.0831389240368274, 52.325259060604076], [-2.083108909572448, 52.32529573302288], [-2.0830428389771733, 52.32528429824763], [-2.0830413464617066, 52.325284139275816], [-2.0830394596917365, 52.32528420983041], [-2.0830373271646705, 52.32528467972492], [-2.0830355298797, 52.32528552516917], [-2.082989920663547, 52.32531489592733], [-2.082927621559294, 52.32531473663135], [-2.082895944675379, 52.32527717451721], [-2.0829109749864503, 52.32523941319988], [-2.082943648588699, 52.32522012240317], [-2.083048915862874, 52.325219955618], [-2.083050435763775, 52.325219855652605], [-2.0830518892740404, 52.32521956514453], [-2.0830535153298717, 52.32521895356181], [-2.083054596922579, 52.32521829112219], [-2.0830554303222355, 52.32521750569183], [-2.08305598037451, 52.32521663235346], [-2.0830562222045867, 52.325215707091374], [-2.0830561470833118, 52.325214772163], [-2.083042229456864, 52.32515976377182], [-2.083057250199947, 52.32511387170423], [-2.083112124550546, 52.325094449228985], [-2.0831136506165757, 52.32509373073312], [-2.0831148197314393, 52.325092793130494], [-2.0831157074373667, 52.32509123899731], [-2.0831302911568277, 52.32503302796667], [-2.083160244918765, 52.32501411301906], [-2.0832413881898906, 52.32500443798221], [-2.0832432200851643, 52.32500406089695], [-2.0832451113046275, 52.325003242351734], [-2.0832466625905575, 52.32500189002829], [-2.083247152426709, 52.32500099155913], [-2.0832473237934197, 52.325000049267565], [-2.083247818856958, 52.3249426986494], [-2.0833191054445646, 52.324895917187106], [-2.083369353434034, 52.324887540525154], [-2.083387278138401, 52.32490658705322], [-2.0833157446133757, 52.32498269475225]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3b49f4dd7ad8bbdd1797315ba2688352.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c65881f61fdbdda1ce189b29ed0376c2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a1f2dffd56376bd4b060cac1d3e0fae9 = $(`&lt;div id=&quot;html_a1f2dffd56376bd4b060cac1d3e0fae9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 123&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 531.0 sqm&lt;br&gt;Intersecting area: 530.9 sqm&lt;/div&gt;`)[0];\n",
" popup_c65881f61fdbdda1ce189b29ed0376c2.setContent(html_a1f2dffd56376bd4b060cac1d3e0fae9);\n",
" \n",
" \n",
"\n",
" geo_json_3b49f4dd7ad8bbdd1797315ba2688352.bindPopup(popup_c65881f61fdbdda1ce189b29ed0376c2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3b49f4dd7ad8bbdd1797315ba2688352.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_18cb30996ef27e3ce4e3cedf71610605_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_18cb30996ef27e3ce4e3cedf71610605_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_18cb30996ef27e3ce4e3cedf71610605 = L.geoJson(null, {\n",
" onEachFeature: geo_json_18cb30996ef27e3ce4e3cedf71610605_onEachFeature,\n",
" \n",
" style: geo_json_18cb30996ef27e3ce4e3cedf71610605_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_18cb30996ef27e3ce4e3cedf71610605_add (data) {\n",
" geo_json_18cb30996ef27e3ce4e3cedf71610605\n",
" .addData(data);\n",
" }\n",
" geo_json_18cb30996ef27e3ce4e3cedf71610605_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082992089841347, 52.3254214983562], [-2.0829821434203493, 52.325422399891124], [-2.0829803201941193, 52.325422716731545], [-2.0829786911681536, 52.32542330853575], [-2.082977599261092, 52.325423954799014], [-2.0829765784033176, 52.325424932755126], [-2.08297599943889, 52.32542603805834], [-2.0829758823289084, 52.32542696502856], [-2.0829761764665538, 52.32542811196788], [-2.082976751786934, 52.32542897192675], [-2.082977604251753, 52.325429741786316], [-2.082992465211693, 52.325438558786765], [-2.08297801218397, 52.325475104231614], [-2.082945115926341, 52.3254946819847], [-2.082911356222223, 52.325484181832806], [-2.082910724869523, 52.325447960771854], [-2.082955821833306, 52.32542856682911], [-2.082957159887121, 52.32542773159506], [-2.0829582360096044, 52.32542649199025], [-2.0829586182796653, 52.32542534457013], [-2.0829585031073465, 52.32542417592464], [-2.0829580583078258, 52.32542327901962], [-2.082957320195993, 52.325422457834215], [-2.082955422322447, 52.325421308423536], [-2.082866657877323, 52.325384366366144], [-2.0828676207882837, 52.32535638639964], [-2.082908556883024, 52.32534580399502], [-2.0829460789410588, 52.32533851709086], [-2.082948564326889, 52.32536970952577], [-2.0829488965933685, 52.325370844752364], [-2.0829498995918914, 52.32537208379295], [-2.0829508927771343, 52.32537277983676], [-2.0829520955186305, 52.32537333638001], [-2.0830067468600304, 52.32539358874776], [-2.082992089841347, 52.3254214983562]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_18cb30996ef27e3ce4e3cedf71610605.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_014a378625b7ac8de9c97bd5f632c68a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4bce0fd7313a641a5c142e291b586103 = $(`&lt;div id=&quot;html_4bce0fd7313a641a5c142e291b586103&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 124&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 79.0 sqm&lt;br&gt;Intersecting area: 79.1 sqm&lt;/div&gt;`)[0];\n",
" popup_014a378625b7ac8de9c97bd5f632c68a.setContent(html_4bce0fd7313a641a5c142e291b586103);\n",
" \n",
" \n",
"\n",
" geo_json_18cb30996ef27e3ce4e3cedf71610605.bindPopup(popup_014a378625b7ac8de9c97bd5f632c68a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_18cb30996ef27e3ce4e3cedf71610605.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_d82b16e3623ae03da3722ac87827a547_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d82b16e3623ae03da3722ac87827a547_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d82b16e3623ae03da3722ac87827a547 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d82b16e3623ae03da3722ac87827a547_onEachFeature,\n",
" \n",
" style: geo_json_d82b16e3623ae03da3722ac87827a547_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d82b16e3623ae03da3722ac87827a547_add (data) {\n",
" geo_json_d82b16e3623ae03da3722ac87827a547\n",
" .addData(data);\n",
" }\n",
" geo_json_d82b16e3623ae03da3722ac87827a547_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083756602783431, 52.32627528919721], [-2.083726114135811, 52.32629410218179], [-2.0836632423400965, 52.32629444084041], [-2.083573439518417, 52.326257433524425], [-2.0835723942013344, 52.326207434396416], [-2.0835720999290204, 52.32620623081654], [-2.0835712893466436, 52.32620511930324], [-2.0835136256995748, 52.326148277440645], [-2.0835141381075006, 52.3261204838887], [-2.083541249039852, 52.32610944987157], [-2.083578358713674, 52.326101063562234], [-2.0836387612444702, 52.32612889747759], [-2.083639809933555, 52.32617908720135], [-2.0836400629480343, 52.32618020180661], [-2.0836405883711704, 52.326181043814195], [-2.083668374290587, 52.32621499622975], [-2.0836700377920376, 52.32621632919149], [-2.083672018651367, 52.326217106333615], [-2.0836742980371428, 52.32621745892884], [-2.0837116642644276, 52.326218221715166], [-2.083756978542818, 52.32625521831757], [-2.083756602783431, 52.32627528919721]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d82b16e3623ae03da3722ac87827a547.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6b4beaac8ad86c233a5a3c913fa8a3a9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5aede0bdb4dd3282099bf2e8c4b87eb2 = $(`&lt;div id=&quot;html_5aede0bdb4dd3282099bf2e8c4b87eb2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 125&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 172.0 sqm&lt;br&gt;Intersecting area: 172.3 sqm&lt;/div&gt;`)[0];\n",
" popup_6b4beaac8ad86c233a5a3c913fa8a3a9.setContent(html_5aede0bdb4dd3282099bf2e8c4b87eb2);\n",
" \n",
" \n",
"\n",
" geo_json_d82b16e3623ae03da3722ac87827a547.bindPopup(popup_6b4beaac8ad86c233a5a3c913fa8a3a9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d82b16e3623ae03da3722ac87827a547.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_6cd39d3a6d39d8a556d379ebc3cd4267_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6cd39d3a6d39d8a556d379ebc3cd4267_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6cd39d3a6d39d8a556d379ebc3cd4267 = L.geoJson(null, {\n",
" onEachFeature: geo_json_6cd39d3a6d39d8a556d379ebc3cd4267_onEachFeature,\n",
" \n",
" style: geo_json_6cd39d3a6d39d8a556d379ebc3cd4267_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6cd39d3a6d39d8a556d379ebc3cd4267_add (data) {\n",
" geo_json_6cd39d3a6d39d8a556d379ebc3cd4267\n",
" .addData(data);\n",
" }\n",
" geo_json_6cd39d3a6d39d8a556d379ebc3cd4267_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0848265699024284, 52.32628396404222], [-2.0847874547424627, 52.32628482200143], [-2.0847852501833075, 52.32628523713748], [-2.0847833633299246, 52.32628605121139], [-2.0847819833000014, 52.32628718316832], [-2.084781244881538, 52.32628852234028], [-2.084781289122125, 52.32629016841527], [-2.084782297150429, 52.32629169422311], [-2.0848136711614935, 52.32631854962549], [-2.0847852023857913, 52.326384268671866], [-2.084784956612081, 52.32638541689542], [-2.084785110975981, 52.326386338279015], [-2.084785570468239, 52.32638722168428], [-2.084813511228571, 52.326426404213734], [-2.084782491082005, 52.32644639646948], [-2.084735676415518, 52.32645546530655], [-2.0847035002847827, 52.326436556896184], [-2.0846881178972985, 52.32634277864459], [-2.0846874139500478, 52.32634143421724], [-2.0846860647771477, 52.32634028983712], [-2.084684201173871, 52.326339458681844], [-2.08468200965241, 52.32633902243633], [-2.0846445317417275, 52.326338999931906], [-2.0846430383010186, 52.32633914305027], [-2.084641625914072, 52.32633947130699], [-2.0846403517788565, 52.32633997027851], [-2.0846392730848526, 52.32634061744778], [-2.084638113254739, 52.32634180768753], [-2.0846376385272927, 52.3263429273062], [-2.084633818082666, 52.32637457374345], [-2.084588129204353, 52.326374606565714], [-2.0845717018209067, 52.32635955798722], [-2.0845702125247176, 52.32635879938228], [-2.0845684508178035, 52.32635830618801], [-2.084566152647482, 52.32635811185152], [-2.0845642396281723, 52.32635829392903], [-2.084562144020719, 52.32635890586526], [-2.0845035681338557, 52.32638366645167], [-2.08446657077413, 52.32638405529455], [-2.084464713487372, 52.326384222047835], [-2.084462985855982, 52.326384670997804], [-2.084461502286566, 52.32638537509378], [-2.084420045233746, 52.3264108353827], [-2.0844191016500666, 52.32641154628444], [-2.084418286326182, 52.32641257444613], [-2.0844179201716257, 52.32641369668681], [-2.084417213742296, 52.3264364073272], [-2.084391659663087, 52.32644668614776], [-2.0843898321973855, 52.32644787416268], [-2.0843888197095217, 52.32644938434272], [-2.084388661550602, 52.3264503158405], [-2.0843887404785306, 52.32649166888548], [-2.0843888977644567, 52.32649258936722], [-2.084389360185098, 52.32649347097571], [-2.0843908359157783, 52.32649480855873], [-2.084392649623442, 52.32649563795383], [-2.0843944185034746, 52.326496042141784], [-2.084460550483785, 52.326505449725666], [-2.0844905123678013, 52.32654661771188], [-2.084492026278499, 52.32654796695645], [-2.084494229017593, 52.32654889406425], [-2.0844960652618547, 52.32654922718196], [-2.0844979786898743, 52.32654925817073], [-2.0846334006686567, 52.32654055012926], [-2.084652627575743, 52.32656162820744], [-2.0846209495277734, 52.32660825434718], [-2.0845010844468694, 52.32661730363225], [-2.084499250983438, 52.32661765826202], [-2.0844976308111907, 52.32661829323222], [-2.0844963368423683, 52.32661916441006], [-2.084495455517845, 52.326620211503254], [-2.084495090439391, 52.32662112786264], [-2.0844950853575313, 52.32662230558222], [-2.0844954422004256, 52.32662322322849], [-2.084496102650993, 52.32662407502514], [-2.0845355291649255, 52.32665927570842], [-2.0845488384490074, 52.326734096044525], [-2.0844892027998396, 52.32677044933676], [-2.0844579076255334, 52.32677955637382], [-2.084395003569115, 52.32677103830541], [-2.084392363757133, 52.326770979962305], [-2.084390197305872, 52.32677138967075], [-2.0843886182266997, 52.32677202910689], [-2.084340272042893, 52.32679766511182], [-2.0842938707728274, 52.326795996490155], [-2.0842935917814462, 52.32675740897462], [-2.0843258633097705, 52.32673860265792], [-2.084387892176304, 52.32674680044171], [-2.084390539151357, 52.32674676707957], [-2.084392994278732, 52.326746159381464], [-2.084394701949119, 52.32674524115582], [-2.084396002233651, 52.326743826966705], [-2.084410686128926, 52.32671255394148], [-2.0844541325947397, 52.32669525352725], [-2.0844552597757193, 52.32669463329786], [-2.084456156337884, 52.32669388467093], [-2.084456892358188, 52.32669281610651], [-2.084457144455373, 52.326691899823956], [-2.0844570189914267, 52.32669074287782], [-2.0844564152943295, 52.32668964380854], [-2.0844553716492027, 52.326688675413834], [-2.084453958618868, 52.32668790417083], [-2.084380618348689, 52.32666051326857], [-2.0843805475947876, 52.326623439550296], [-2.084406072634734, 52.32660481784818], [-2.084406861987743, 52.32660401536119], [-2.0844074394419465, 52.326602899262255], [-2.0844075491771106, 52.32660196420251], [-2.084407340512319, 52.326601035664034], [-2.0844064532563014, 52.32659974261156], [-2.0844049589668767, 52.326598680142695], [-2.0843661051604703, 52.32658055048292], [-2.084336248205551, 52.326535115640816], [-2.0843358956662854, 52.326477219935356], [-2.0843355350234307, 52.32647584469477], [-2.08433450553839, 52.32647460388464], [-2.084333205356733, 52.326473757938025], [-2.0843067784272367, 52.32646184327479], [-2.0843210013440814, 52.326408913204844], [-2.0843386117984903, 52.32637960245046], [-2.084388118616012, 52.326387259899604], [-2.0843900337070327, 52.326387396075596], [-2.084392309027541, 52.32638715081021], [-2.084394032106125, 52.32638662185031], [-2.0843954714975936, 52.32638583597643], [-2.084455675463285, 52.326343042644304], [-2.0846552893765256, 52.32631567792295], [-2.084657436506372, 52.3263151549518], [-2.084742407370319, 52.32628036651712], [-2.0847443156222973, 52.32627922878345], [-2.084745063848055, 52.32627841373323], [-2.0847455214045225, 52.326277521574376], [-2.0847456678167133, 52.32627659098477], [-2.0847454958279963, 52.326275661524505], [-2.0847321186512766, 52.32624590910485], [-2.084762529542733, 52.32622657538442], [-2.0848417768422958, 52.32625404990008], [-2.0848265699024284, 52.32628396404222]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6cd39d3a6d39d8a556d379ebc3cd4267.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ebc829300bbe185279b05502c3fb5188 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_fe4cd7085b99b30ef79510f19f1b6d73 = $(`&lt;div id=&quot;html_fe4cd7085b99b30ef79510f19f1b6d73&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 126&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 685.0 sqm&lt;br&gt;Intersecting area: 684.5 sqm&lt;/div&gt;`)[0];\n",
" popup_ebc829300bbe185279b05502c3fb5188.setContent(html_fe4cd7085b99b30ef79510f19f1b6d73);\n",
" \n",
" \n",
"\n",
" geo_json_6cd39d3a6d39d8a556d379ebc3cd4267.bindPopup(popup_ebc829300bbe185279b05502c3fb5188)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6cd39d3a6d39d8a556d379ebc3cd4267.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_5802057b280c8238c030a8bd71cb4b3d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5802057b280c8238c030a8bd71cb4b3d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5802057b280c8238c030a8bd71cb4b3d = L.geoJson(null, {\n",
" onEachFeature: geo_json_5802057b280c8238c030a8bd71cb4b3d_onEachFeature,\n",
" \n",
" style: geo_json_5802057b280c8238c030a8bd71cb4b3d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5802057b280c8238c030a8bd71cb4b3d_add (data) {\n",
" geo_json_5802057b280c8238c030a8bd71cb4b3d\n",
" .addData(data);\n",
" }\n",
" geo_json_5802057b280c8238c030a8bd71cb4b3d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.08385969955999, 52.326572231209724], [-2.0838151238348606, 52.32660846465953], [-2.0837793727711293, 52.326609245273715], [-2.0837767750080505, 52.32660969033567], [-2.0837754671256707, 52.32661019741544], [-2.0837743620236595, 52.32661086077846], [-2.0837731875595358, 52.32661208338155], [-2.0837726942316266, 52.32661346912097], [-2.0837725138915797, 52.326642969677174], [-2.083752987695013, 52.32665424468007], [-2.0836910047580424, 52.326652349559126], [-2.0836317237975543, 52.32654374965363], [-2.083632259114905, 52.326516467629105], [-2.0836464871743052, 52.32651468195925], [-2.0836483059104736, 52.32651429678788], [-2.0836498966890433, 52.326513634877266], [-2.0836511524847734, 52.326512742160034], [-2.083651986843555, 52.32651167982386], [-2.083652352495913, 52.326510285186046], [-2.083651993298862, 52.32650889016281], [-2.0836322550396282, 52.32647164701048], [-2.083657599705197, 52.326460714915626], [-2.083658706274324, 52.326460055149326], [-2.083659563165671, 52.32645926879794], [-2.0836601337517013, 52.326458389149266], [-2.083660390234306, 52.32645745668665], [-2.083660254472887, 52.32645627816688], [-2.0836472833643356, 52.32641743984479], [-2.0837242119890034, 52.32640618160481], [-2.0837698898758843, 52.32640652671102], [-2.08382988330961, 52.3264342241704], [-2.0838312504889793, 52.32652071427219], [-2.08383170308796, 52.32652183862041], [-2.083832839593629, 52.32652303800338], [-2.0838605777931405, 52.32654401665539], [-2.08385969955999, 52.326572231209724]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5802057b280c8238c030a8bd71cb4b3d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2880531f09c92f00e47b6e5cc6e63f34 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6231cd6bc85267dec79073a0b42fd2eb = $(`&lt;div id=&quot;html_6231cd6bc85267dec79073a0b42fd2eb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 127&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 315.0 sqm&lt;br&gt;Intersecting area: 314.5 sqm&lt;/div&gt;`)[0];\n",
" popup_2880531f09c92f00e47b6e5cc6e63f34.setContent(html_6231cd6bc85267dec79073a0b42fd2eb);\n",
" \n",
" \n",
"\n",
" geo_json_5802057b280c8238c030a8bd71cb4b3d.bindPopup(popup_2880531f09c92f00e47b6e5cc6e63f34)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5802057b280c8238c030a8bd71cb4b3d.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_557451e523310caed8868293a3d4dc4b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_557451e523310caed8868293a3d4dc4b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_557451e523310caed8868293a3d4dc4b = L.geoJson(null, {\n",
" onEachFeature: geo_json_557451e523310caed8868293a3d4dc4b_onEachFeature,\n",
" \n",
" style: geo_json_557451e523310caed8868293a3d4dc4b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_557451e523310caed8868293a3d4dc4b_add (data) {\n",
" geo_json_557451e523310caed8868293a3d4dc4b\n",
" .addData(data);\n",
" }\n",
" geo_json_557451e523310caed8868293a3d4dc4b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.081059485608705, 52.32629628154286], [-2.0810582102929422, 52.326297756813034], [-2.0810579097539144, 52.326298696497965], [-2.0810579408533116, 52.32629965392942], [-2.081072133719206, 52.326347471100135], [-2.0810546221524624, 52.32635906073075], [-2.0809916486642477, 52.326348799494184], [-2.0810035168819345, 52.32631152427516], [-2.0810034835088835, 52.32631012721926], [-2.0810029180218437, 52.32630901372359], [-2.0810019052412927, 52.326308027298026], [-2.081000512784041, 52.32630723352353], [-2.0809981066128467, 52.32630654383246], [-2.080996600900567, 52.326306402823015], [-2.080995079409826, 52.32630645601055], [-2.0809352440848126, 52.326314368962876], [-2.080902284449006, 52.32629453406846], [-2.080887729645526, 52.32621238986411], [-2.0809067700082298, 52.326201540898595], [-2.0809644960290354, 52.32620930112231], [-2.0809668085053743, 52.32620930852197], [-2.080968659631881, 52.32620897640657], [-2.0809703062795784, 52.326208360345845], [-2.080971632611181, 52.326207501770526], [-2.0809725492378948, 52.32620646187269], [-2.0809729422689047, 52.32620554640084], [-2.080973013896189, 52.326204600584695], [-2.080972646413909, 52.32620344020023], [-2.0809602958515545, 52.326180840151544], [-2.0809463356417597, 52.32615902154921], [-2.0809635321569844, 52.32614768837643], [-2.081038592774067, 52.326147443457046], [-2.0810570845047462, 52.32615830886756], [-2.081071746714362, 52.326203646222716], [-2.081045801094122, 52.32621519670196], [-2.081044659223829, 52.326215826803065], [-2.0810437567596196, 52.32621658799441], [-2.081043133271037, 52.326217447887345], [-2.0810427861734366, 52.32621860336619], [-2.0810429004926765, 52.32623534392744], [-2.0810433159688944, 52.32623626873289], [-2.081044042371266, 52.326237118707276], [-2.0810862027823656, 52.326275772695546], [-2.081059485608705, 52.32629628154286]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_557451e523310caed8868293a3d4dc4b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9e35f083842aac82d50b38b05ae02273 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9a241eba15b9c61d5d970ff7c3aa5615 = $(`&lt;div id=&quot;html_9a241eba15b9c61d5d970ff7c3aa5615&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 128&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 197.0 sqm&lt;/div&gt;`)[0];\n",
" popup_9e35f083842aac82d50b38b05ae02273.setContent(html_9a241eba15b9c61d5d970ff7c3aa5615);\n",
" \n",
" \n",
"\n",
" geo_json_557451e523310caed8868293a3d4dc4b.bindPopup(popup_9e35f083842aac82d50b38b05ae02273)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_557451e523310caed8868293a3d4dc4b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd = L.geoJson(null, {\n",
" onEachFeature: geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd_onEachFeature,\n",
" \n",
" style: geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd_add (data) {\n",
" geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd\n",
" .addData(data);\n",
" }\n",
" geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0804817556479467, 52.32689902175769], [-2.080419416435609, 52.3268602905355], [-2.080417893501887, 52.32685956516728], [-2.080416115746793, 52.32685910878054], [-2.08041381764713, 52.32685895751906], [-2.0802723246039854, 52.3268633882269], [-2.080270787121125, 52.32686353850906], [-2.0802693350990125, 52.32686388292765], [-2.0802671946686386, 52.32686490567072], [-2.0802662951491535, 52.32686568483314], [-2.0802655796392027, 52.326866792916526], [-2.080252280646273, 52.32689956674221], [-2.0802521458619454, 52.32690048832864], [-2.080252413518168, 52.326901630799874], [-2.080252965325498, 52.32690249168376], [-2.080254038193954, 52.326903441216295], [-2.080295339306848, 52.32692869708801], [-2.0802965083507456, 52.32692927885355], [-2.0802978473151796, 52.32692970137932], [-2.080300425965076, 52.32693000978377], [-2.080367147586422, 52.326930540537134], [-2.080426698966871, 52.326966870610356], [-2.0804275908154444, 52.32702236107662], [-2.0803064756053646, 52.32703413008707], [-2.0802782064079217, 52.32701653217743], [-2.0802762535767534, 52.32701582238313], [-2.080274038821234, 52.32701551283412], [-2.080271776419943, 52.32701563214492], [-2.080269682057598, 52.32701617028723], [-2.0802684798763607, 52.32701673749074], [-2.0802672856419293, 52.32701763912381], [-2.0802666283339217, 52.32701847655958], [-2.0802662646080146, 52.327019378522465], [-2.0802654475612345, 52.327033254543494], [-2.080217849126224, 52.327060844619325], [-2.0802168423825487, 52.327061565420195], [-2.0802161058281667, 52.327062399312965], [-2.0802156119485384, 52.32706354499944], [-2.080215624368259, 52.32706472899989], [-2.0802208575705996, 52.32708776280761], [-2.080176408390707, 52.32711479153036], [-2.0801288423687887, 52.32711500641042], [-2.0800827544447795, 52.32708715197788], [-2.0800818083365664, 52.327064647466514], [-2.0800812864533897, 52.3270632947988], [-2.0800801133675737, 52.327062104394265], [-2.080079024907946, 52.32706145874046], [-2.080077396569905, 52.32706086649507], [-2.0800385070076803, 52.327050599161765], [-2.0800381216369312, 52.32700389266663], [-2.080124342607707, 52.326947728924765], [-2.0801253161341355, 52.32694648941591], [-2.080125626619793, 52.32694535733678], [-2.0801271026821553, 52.32692184607591], [-2.080196798616919, 52.32688520494675], [-2.0801980823904884, 52.32688432482916], [-2.0801990661128937, 52.326883045753604], [-2.0802147372273887, 52.32684995565831], [-2.08028808316175, 52.32680495919836], [-2.080313655483296, 52.32680408858988], [-2.08038109917687, 52.326795928925556], [-2.0804120749050226, 52.32683741550305], [-2.0804130641806844, 52.32683838936774], [-2.080414424358439, 52.326839177778226], [-2.080416418124848, 52.326839808424076], [-2.0804186298003122, 52.326840040658986], [-2.0804844417376787, 52.326840677153974], [-2.080542666456091, 52.32688818199206], [-2.0804817556479467, 52.32689902175769]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_80c7104f5601f02eb8dc70eca5ac9bc9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a06e5f4e3ca03cd131285916e2fc27e0 = $(`&lt;div id=&quot;html_a06e5f4e3ca03cd131285916e2fc27e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 129&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 500.0 sqm&lt;br&gt;Intersecting area: 499.6 sqm&lt;/div&gt;`)[0];\n",
" popup_80c7104f5601f02eb8dc70eca5ac9bc9.setContent(html_a06e5f4e3ca03cd131285916e2fc27e0);\n",
" \n",
" \n",
"\n",
" geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd.bindPopup(popup_80c7104f5601f02eb8dc70eca5ac9bc9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_62d39a0bb5b68d7c2d1b9ee6297e03cd.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_eea099a836ff58af7698bc943b7c3474_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_eea099a836ff58af7698bc943b7c3474_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_eea099a836ff58af7698bc943b7c3474 = L.geoJson(null, {\n",
" onEachFeature: geo_json_eea099a836ff58af7698bc943b7c3474_onEachFeature,\n",
" \n",
" style: geo_json_eea099a836ff58af7698bc943b7c3474_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_eea099a836ff58af7698bc943b7c3474_add (data) {\n",
" geo_json_eea099a836ff58af7698bc943b7c3474\n",
" .addData(data);\n",
" }\n",
" geo_json_eea099a836ff58af7698bc943b7c3474_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082244581028088, 52.32664536096116], [-2.0821900379601024, 52.326638215875185], [-2.082188140659157, 52.32663818213704], [-2.082186651686562, 52.32663837106921], [-2.082184932912907, 52.32663886403567], [-2.0821837425285734, 52.32663944293647], [-2.0821825689105875, 52.32664035805675], [-2.0821819322016526, 52.32664120357816], [-2.0821815934710126, 52.32664211092675], [-2.082181567327541, 52.32664304232942], [-2.082187942228708, 52.326671149318685], [-2.0821578216709553, 52.326717201932475], [-2.082074143835449, 52.32674501121245], [-2.0820720489730884, 52.326746052835816], [-2.082071175910312, 52.326746837390715], [-2.0820704956617875, 52.32674794545622], [-2.082054849976308, 52.326789224950346], [-2.0820009063924005, 52.326799215567796], [-2.081999521901476, 52.32679956984613], [-2.0819980044755395, 52.326800242469126], [-2.0818351969281, 52.32691533940294], [-2.081760616784456, 52.32690712202512], [-2.0817590687283714, 52.3269071033203], [-2.0817575503786743, 52.32690728417811], [-2.0817561277678513, 52.3269076555632], [-2.081754862480822, 52.32690820214584], [-2.0817535904909343, 52.3269090930579], [-2.081752628844466, 52.3269103829211], [-2.0817523624918235, 52.326911555424715], [-2.0817527143061363, 52.32691295765205], [-2.0817763940444514, 52.326951077617366], [-2.0816761024066155, 52.32699791150827], [-2.081675148589555, 52.3269986772369], [-2.081615123751023, 52.32705936220752], [-2.0815661306398567, 52.32705987802373], [-2.0815492024135294, 52.32704812787583], [-2.081564120029648, 52.32697617081768], [-2.0816322998718046, 52.32696536770698], [-2.081634391252021, 52.32696481246372], [-2.081636340750831, 52.32696370711759], [-2.0816374052152335, 52.32696247202587], [-2.0816523552078676, 52.32693038194827], [-2.0816938811769865, 52.32691092084412], [-2.0817483454855883, 52.32690310833008], [-2.081750477986107, 52.32690257463196], [-2.081752234146266, 52.326901662704], [-2.081753110174645, 52.32690088803922], [-2.081753702832509, 52.326900017378314], [-2.08175398577337, 52.32689909029442], [-2.0817539473541946, 52.326898148146675], [-2.0817396471331637, 52.32685069703718], [-2.0817694884056746, 52.326822338332185], [-2.081882233743618, 52.32678558809121], [-2.0818843374461373, 52.326784559947235], [-2.08188555455754, 52.326783357112895], [-2.081886100782787, 52.32678198123441], [-2.08188715028767, 52.326759205640734], [-2.0819420835821116, 52.326731423690426], [-2.081943149092224, 52.32673076037213], [-2.081944128889868, 52.32672976717536], [-2.08194474076557, 52.32672818896689], [-2.081947474408067, 52.32669574954334], [-2.0820562744598, 52.32668630240767], [-2.0820577560249447, 52.32668607572369], [-2.082059128674939, 52.3266856657109], [-2.0820603337408863, 52.32668509039782], [-2.0820613169821516, 52.3266843749947], [-2.0820620388331794, 52.32668355009015], [-2.082062465622674, 52.32668265167006], [-2.0820768064207327, 52.326634041581585], [-2.0821062341536156, 52.326615487781105], [-2.0821529913599526, 52.3266296039431], [-2.082155217786229, 52.326629879286756], [-2.0821578394636813, 52.32662965809928], [-2.082160162243999, 52.32662888062594], [-2.082161882582784, 52.32662764866852], [-2.0821627077345, 52.3266263517038], [-2.0821627986332576, 52.32662473161065], [-2.0821510641013883, 52.32658896600958], [-2.0822063804248208, 52.32657798903894], [-2.0822583477705674, 52.32656987326647], [-2.0822756468860475, 52.32659957377533], [-2.082244581028088, 52.32664536096116]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_eea099a836ff58af7698bc943b7c3474.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_abfe9012b1093dd188ce61c9912be74b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2c42600e04d202a2a89f046c5a49f0f1 = $(`&lt;div id=&quot;html_2c42600e04d202a2a89f046c5a49f0f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 130&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 516.0 sqm&lt;br&gt;Intersecting area: 515.9 sqm&lt;/div&gt;`)[0];\n",
" popup_abfe9012b1093dd188ce61c9912be74b.setContent(html_2c42600e04d202a2a89f046c5a49f0f1);\n",
" \n",
" \n",
"\n",
" geo_json_eea099a836ff58af7698bc943b7c3474.bindPopup(popup_abfe9012b1093dd188ce61c9912be74b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_eea099a836ff58af7698bc943b7c3474.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_87aaf9afc3f55c73e4c45c73b71b06ac_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_87aaf9afc3f55c73e4c45c73b71b06ac_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_87aaf9afc3f55c73e4c45c73b71b06ac = L.geoJson(null, {\n",
" onEachFeature: geo_json_87aaf9afc3f55c73e4c45c73b71b06ac_onEachFeature,\n",
" \n",
" style: geo_json_87aaf9afc3f55c73e4c45c73b71b06ac_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_87aaf9afc3f55c73e4c45c73b71b06ac_add (data) {\n",
" geo_json_87aaf9afc3f55c73e4c45c73b71b06ac\n",
" .addData(data);\n",
" }\n",
" geo_json_87aaf9afc3f55c73e4c45c73b71b06ac_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0799925324642765, 52.32712425379402], [-2.0799910024395563, 52.327124475096426], [-2.0799895842822544, 52.32712489140491], [-2.079987562891852, 52.327126027342224], [-2.079959889658402, 52.32715150996029], [-2.079958923571418, 52.327152809697324], [-2.079958661585517, 52.32715399029174], [-2.079958508481479, 52.32720319732032], [-2.079901394423564, 52.32725049034727], [-2.0799003679642416, 52.327251677749054], [-2.0798847127558924, 52.32732057033678], [-2.0798214789990674, 52.327330927663425], [-2.0797895124654238, 52.32731189281401], [-2.0797887677126323, 52.32729274780147], [-2.0798458912896356, 52.32724493789206], [-2.0798466674974025, 52.3272441192574], [-2.079847147161252, 52.32724321990933], [-2.0798473083305398, 52.327242277630006], [-2.0798472498451503, 52.327216394899686], [-2.079846857326229, 52.327215175198766], [-2.0798037961541853, 52.32713912487127], [-2.07982183926115, 52.32712820034506], [-2.079885481508712, 52.32712806458784], [-2.0798873872831476, 52.32712790596726], [-2.079889161930531, 52.32712744895879], [-2.079890944578305, 52.32712655232752], [-2.079892021302117, 52.32712557526071], [-2.0799195152084224, 52.3270917903353], [-2.0799687533695064, 52.32708313531126], [-2.0800135494098138, 52.327092040238874], [-2.0800306645290156, 52.32712132495306], [-2.0799925324642765, 52.32712425379402]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_87aaf9afc3f55c73e4c45c73b71b06ac.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e3657a81d7217c7791a4d1691ebe304d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_dadfdd482e1f9d99891ea5825e2cb590 = $(`&lt;div id=&quot;html_dadfdd482e1f9d99891ea5825e2cb590&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 131&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 195.0 sqm&lt;br&gt;Intersecting area: 55.5 sqm&lt;/div&gt;`)[0];\n",
" popup_e3657a81d7217c7791a4d1691ebe304d.setContent(html_dadfdd482e1f9d99891ea5825e2cb590);\n",
" \n",
" \n",
"\n",
" geo_json_87aaf9afc3f55c73e4c45c73b71b06ac.bindPopup(popup_e3657a81d7217c7791a4d1691ebe304d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_87aaf9afc3f55c73e4c45c73b71b06ac.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4e5b0a4e418bc540b1c00db78e4b883d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4e5b0a4e418bc540b1c00db78e4b883d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4e5b0a4e418bc540b1c00db78e4b883d = L.geoJson(null, {\n",
" onEachFeature: geo_json_4e5b0a4e418bc540b1c00db78e4b883d_onEachFeature,\n",
" \n",
" style: geo_json_4e5b0a4e418bc540b1c00db78e4b883d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4e5b0a4e418bc540b1c00db78e4b883d_add (data) {\n",
" geo_json_4e5b0a4e418bc540b1c00db78e4b883d\n",
" .addData(data);\n",
" }\n",
" geo_json_4e5b0a4e418bc540b1c00db78e4b883d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084386492865598, 52.327156833431474], [-2.0842652847808933, 52.327147232379204], [-2.0842493960645525, 52.32711464799829], [-2.084248598709863, 52.32711356345325], [-2.08424764204307, 52.32711281165667], [-2.084246449404883, 52.327112200277746], [-2.0842201666023583, 52.327101413760154], [-2.0842196545122653, 52.32707060563], [-2.084219470742959, 52.3270696510008], [-2.0842189613200754, 52.327068742456696], [-2.0842181483202076, 52.32706792133724], [-2.08421676302012, 52.327067074550044], [-2.0841763756414116, 52.32704823750096], [-2.0841615263003055, 52.327016640387164], [-2.0841606850149854, 52.32701560262112], [-2.0841597181541602, 52.327014889489995], [-2.084158531463826, 52.327014313168156], [-2.084157177796332, 52.32701389878595], [-2.084154581546965, 52.327013609361856], [-2.084132539507496, 52.32701367994676], [-2.084130361354618, 52.32701411393097], [-2.08412878670849, 52.32701477673668], [-2.0841273434674257, 52.32701586557945], [-2.0841266103894127, 52.32701694672586], [-2.084126367109569, 52.3270178719909], [-2.084126442258205, 52.32701880781422], [-2.084140233196144, 52.3270733100062], [-2.0841240471183022, 52.327084886557316], [-2.084062400624243, 52.32709434330577], [-2.084029517449473, 52.32707486524204], [-2.0840442540480204, 52.32699161631439], [-2.0840769745482195, 52.326972648821716], [-2.084123946017224, 52.326984711587905], [-2.0841258627087695, 52.32698489991239], [-2.0841281689828146, 52.32698471126798], [-2.0841299376401436, 52.32698422093833], [-2.084131434342053, 52.32698346289569], [-2.0841328784508018, 52.326982058492284], [-2.0841902019101206, 52.32689316564151], [-2.0842171799784484, 52.32688232305979], [-2.0842183483207544, 52.326881738757145], [-2.0842192992522213, 52.32688102155872], [-2.084236584198271, 52.32686479448383], [-2.084268542079485, 52.3268645990124], [-2.0843006584958563, 52.326901376492245], [-2.0842447631982832, 52.326976538552195], [-2.0842441162086836, 52.32697812847934], [-2.0842444421178556, 52.32697975547354], [-2.084245468707745, 52.32698101426552], [-2.0842470788081986, 52.326982017319075], [-2.0842716931230574, 52.32699199320938], [-2.084272340425219, 52.327022896539866], [-2.0842728467346148, 52.32702448024909], [-2.0842737554723763, 52.327025492793645], [-2.0842753552575912, 52.32702647158201], [-2.0843014363439383, 52.32703690761393], [-2.0843455324288893, 52.327113811427274], [-2.0843461664196687, 52.327114636275006], [-2.084347318507564, 52.32711553087184], [-2.084348798887943, 52.327116218461214], [-2.0844029724171667, 52.327135288311645], [-2.084386492865598, 52.327156833431474]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4e5b0a4e418bc540b1c00db78e4b883d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6b68c0a54971ab50e03c5ebf88bb2bc5 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_dd0cc8cb4121fa90a24bca31cafda1bd = $(`&lt;div id=&quot;html_dd0cc8cb4121fa90a24bca31cafda1bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 132&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 322.0 sqm&lt;br&gt;Intersecting area: 321.8 sqm&lt;/div&gt;`)[0];\n",
" popup_6b68c0a54971ab50e03c5ebf88bb2bc5.setContent(html_dd0cc8cb4121fa90a24bca31cafda1bd);\n",
" \n",
" \n",
"\n",
" geo_json_4e5b0a4e418bc540b1c00db78e4b883d.bindPopup(popup_6b68c0a54971ab50e03c5ebf88bb2bc5)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4e5b0a4e418bc540b1c00db78e4b883d.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_b214770ff6919e1e267e3126de3985a5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b214770ff6919e1e267e3126de3985a5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b214770ff6919e1e267e3126de3985a5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_b214770ff6919e1e267e3126de3985a5_onEachFeature,\n",
" \n",
" style: geo_json_b214770ff6919e1e267e3126de3985a5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b214770ff6919e1e267e3126de3985a5_add (data) {\n",
" geo_json_b214770ff6919e1e267e3126de3985a5\n",
" .addData(data);\n",
" }\n",
" geo_json_b214770ff6919e1e267e3126de3985a5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084931918850846, 52.32713700009064], [-2.08485251621908, 52.3271471865723], [-2.084836085730002, 52.32713606854826], [-2.084836815414891, 52.32703687291451], [-2.084914173502517, 52.32703490405505], [-2.0849327224209797, 52.32705575602285], [-2.084931918850846, 52.32713700009064]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b214770ff6919e1e267e3126de3985a5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a98dc40147405f7d892fed617d9de587 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3e549989db154a3cd8acc46b9f656f0c = $(`&lt;div id=&quot;html_3e549989db154a3cd8acc46b9f656f0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 133&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 76.0 sqm&lt;br&gt;Intersecting area: 75.9 sqm&lt;/div&gt;`)[0];\n",
" popup_a98dc40147405f7d892fed617d9de587.setContent(html_3e549989db154a3cd8acc46b9f656f0c);\n",
" \n",
" \n",
"\n",
" geo_json_b214770ff6919e1e267e3126de3985a5.bindPopup(popup_a98dc40147405f7d892fed617d9de587)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b214770ff6919e1e267e3126de3985a5.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c9a975c4bba5d3fad7a777d5cca722ac_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c9a975c4bba5d3fad7a777d5cca722ac_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c9a975c4bba5d3fad7a777d5cca722ac = L.geoJson(null, {\n",
" onEachFeature: geo_json_c9a975c4bba5d3fad7a777d5cca722ac_onEachFeature,\n",
" \n",
" style: geo_json_c9a975c4bba5d3fad7a777d5cca722ac_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c9a975c4bba5d3fad7a777d5cca722ac_add (data) {\n",
" geo_json_c9a975c4bba5d3fad7a777d5cca722ac\n",
" .addData(data);\n",
" }\n",
" geo_json_c9a975c4bba5d3fad7a777d5cca722ac_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0842284250214917, 52.32747050566831], [-2.0841880567650843, 52.32748964498532], [-2.0841865811717715, 52.327490708679385], [-2.084185808445831, 52.32749177277128], [-2.0841855284561777, 52.327492689073075], [-2.0841855639857454, 52.32749362223245], [-2.0841958383472954, 52.327542953070555], [-2.084132189573759, 52.327535340706994], [-2.084129878411468, 52.327535292013046], [-2.0841280110553484, 52.327535590919176], [-2.084126334994164, 52.3275361773797], [-2.0840944342352206, 52.3275527726844], [-2.084049962579076, 52.3275530885192], [-2.0840307634746496, 52.32754285249888], [-2.0840306561593125, 52.327486389664344], [-2.0840837104147107, 52.32747151078601], [-2.084085267456479, 52.32747084260492], [-2.0840864924616547, 52.327469952597326], [-2.084087301899723, 52.327468898369645], [-2.0840876529047, 52.327467519924056], [-2.0840871685727578, 52.32746592091154], [-2.084085788102048, 52.327464532016144], [-2.084084025612814, 52.32746364773807], [-2.084081530077158, 52.32746309302542], [-2.084047454960764, 52.327462818874146], [-2.0840303864833234, 52.32744409638846], [-2.084029780068161, 52.327406053018265], [-2.0840559926870044, 52.32738679799639], [-2.084057061495131, 52.32738556287981], [-2.0840574579970315, 52.32738418619802], [-2.084057026477587, 52.327382579058394], [-2.084055928047809, 52.32738135357785], [-2.084015345151872, 52.32735240354623], [-2.0840329163435967, 52.327332241287976], [-2.0841121548045063, 52.327331900635635], [-2.0841136556986783, 52.32733179887403], [-2.0841160888297803, 52.32733118040741], [-2.084118007474181, 52.3273300741422], [-2.084134969330313, 52.327314361552936], [-2.0841679330659164, 52.32731592207207], [-2.0841414840762673, 52.3273558772118], [-2.084141044218541, 52.32735683138207], [-2.0841410595284864, 52.32741730301494], [-2.0841413082420766, 52.32741845987322], [-2.0841420351577624, 52.32741953817614], [-2.0841434664226695, 52.32742062766612], [-2.084145375417346, 52.32742139406578], [-2.0841475756711136, 52.32742176468743], [-2.084196718831162, 52.32742202534263], [-2.084229119227128, 52.327442858527064], [-2.0842284250214917, 52.32747050566831]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c9a975c4bba5d3fad7a777d5cca722ac.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ca85f22a6d840c614c8de6f429c7ea52 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8ae1082449d4382074ccc1ccd3c6d0bd = $(`&lt;div id=&quot;html_8ae1082449d4382074ccc1ccd3c6d0bd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 134&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 234.0 sqm&lt;br&gt;Intersecting area: 234.1 sqm&lt;/div&gt;`)[0];\n",
" popup_ca85f22a6d840c614c8de6f429c7ea52.setContent(html_8ae1082449d4382074ccc1ccd3c6d0bd);\n",
" \n",
" \n",
"\n",
" geo_json_c9a975c4bba5d3fad7a777d5cca722ac.bindPopup(popup_ca85f22a6d840c614c8de6f429c7ea52)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c9a975c4bba5d3fad7a777d5cca722ac.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ace1ff8a2465ed8274040ba03330e500_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ace1ff8a2465ed8274040ba03330e500_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ace1ff8a2465ed8274040ba03330e500 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ace1ff8a2465ed8274040ba03330e500_onEachFeature,\n",
" \n",
" style: geo_json_ace1ff8a2465ed8274040ba03330e500_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ace1ff8a2465ed8274040ba03330e500_add (data) {\n",
" geo_json_ace1ff8a2465ed8274040ba03330e500\n",
" .addData(data);\n",
" }\n",
" geo_json_ace1ff8a2465ed8274040ba03330e500_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0884477628614055, 52.32539208467391], [-2.0883993334432733, 52.32538810151373], [-2.088397810459065, 52.32538812243194], [-2.088396327471758, 52.32538833481415], [-2.0883946264763185, 52.325388856622624], [-2.088393459729983, 52.325389457144155], [-2.088392150266552, 52.325390598984555], [-2.0883915391539567, 52.32539170343822], [-2.0883773031406516, 52.32543548738976], [-2.08834791823171, 52.325453940238866], [-2.0882841454931653, 52.32545511542396], [-2.0882518974784547, 52.32544395937642], [-2.088251684656814, 52.32538951939652], [-2.0883291935370516, 52.32536024496019], [-2.0883738634888784, 52.32537583282075], [-2.08837566900531, 52.32537621804663], [-2.0883775766249064, 52.325376303818715], [-2.0883794543009553, 52.325376085747735], [-2.08838117732519, 52.32537557650918], [-2.0883823646343784, 52.3253749831614], [-2.088383322762774, 52.325374251541426], [-2.088384013644196, 52.32537341403504], [-2.0883844065258113, 52.32537250752803], [-2.0883986312000045, 52.32531646005567], [-2.088471432169417, 52.325271439129935], [-2.0885382498234706, 52.325280825038696], [-2.0885659929405795, 52.325364342891106], [-2.0884477628614055, 52.32539208467391]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ace1ff8a2465ed8274040ba03330e500.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_68cdb814a23143db93fd01b11054700a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d28e4a10990cc79ef2cc2423f7fa3e3c = $(`&lt;div id=&quot;html_d28e4a10990cc79ef2cc2423f7fa3e3c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 135&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 197.2 sqm&lt;/div&gt;`)[0];\n",
" popup_68cdb814a23143db93fd01b11054700a.setContent(html_d28e4a10990cc79ef2cc2423f7fa3e3c);\n",
" \n",
" \n",
"\n",
" geo_json_ace1ff8a2465ed8274040ba03330e500.bindPopup(popup_68cdb814a23143db93fd01b11054700a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ace1ff8a2465ed8274040ba03330e500.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_9b420d24fa2a5ff93db4fe0d878e613a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9b420d24fa2a5ff93db4fe0d878e613a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9b420d24fa2a5ff93db4fe0d878e613a = L.geoJson(null, {\n",
" onEachFeature: geo_json_9b420d24fa2a5ff93db4fe0d878e613a_onEachFeature,\n",
" \n",
" style: geo_json_9b420d24fa2a5ff93db4fe0d878e613a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9b420d24fa2a5ff93db4fe0d878e613a_add (data) {\n",
" geo_json_9b420d24fa2a5ff93db4fe0d878e613a\n",
" .addData(data);\n",
" }\n",
" geo_json_9b420d24fa2a5ff93db4fe0d878e613a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0853542573936035, 52.32650907759967], [-2.085248136757049, 52.32651799181536], [-2.085129188887787, 52.32647204894419], [-2.085128543266519, 52.32644308749702], [-2.0851566833780213, 52.326422567711255], [-2.0851770633186097, 52.32640531877161], [-2.08526507472872, 52.32641417066936], [-2.0852948734813004, 52.326460929573784], [-2.085295649785607, 52.32646174352342], [-2.0852969808020076, 52.32646259123333], [-2.0852982774162596, 52.32646309824], [-2.085299717478952, 52.326463428935675], [-2.0853020082126905, 52.326463564824856], [-2.0853042555324173, 52.32646325843155], [-2.0853062364855144, 52.3264625404783], [-2.085307757506468, 52.32646148213001], [-2.085321925369299, 52.326441471380065], [-2.085382362944482, 52.32644105448948], [-2.085415008150942, 52.32646033187216], [-2.085415334341685, 52.326480313243756], [-2.0853542573936035, 52.32650907759967]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9b420d24fa2a5ff93db4fe0d878e613a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_191d496b0f8409be9c9ecf5f7c14b0a9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_42d05d721abd86f757442d5eb779fa86 = $(`&lt;div id=&quot;html_42d05d721abd86f757442d5eb779fa86&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 136&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 154.0 sqm&lt;br&gt;Intersecting area: 153.7 sqm&lt;/div&gt;`)[0];\n",
" popup_191d496b0f8409be9c9ecf5f7c14b0a9.setContent(html_42d05d721abd86f757442d5eb779fa86);\n",
" \n",
" \n",
"\n",
" geo_json_9b420d24fa2a5ff93db4fe0d878e613a.bindPopup(popup_191d496b0f8409be9c9ecf5f7c14b0a9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9b420d24fa2a5ff93db4fe0d878e613a.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c3d50d4f75f09c34716722a0ad3c89a5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c3d50d4f75f09c34716722a0ad3c89a5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c3d50d4f75f09c34716722a0ad3c89a5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c3d50d4f75f09c34716722a0ad3c89a5_onEachFeature,\n",
" \n",
" style: geo_json_c3d50d4f75f09c34716722a0ad3c89a5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c3d50d4f75f09c34716722a0ad3c89a5_add (data) {\n",
" geo_json_c3d50d4f75f09c34716722a0ad3c89a5\n",
" .addData(data);\n",
" }\n",
" geo_json_c3d50d4f75f09c34716722a0ad3c89a5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0871796508478355, 52.32717314635906], [-2.0871784764185333, 52.32717435011656], [-2.087177965549704, 52.327175717003776], [-2.0871770824617695, 52.32720784681489], [-2.087136913383899, 52.3272267739236], [-2.0871355343014173, 52.327227625417976], [-2.08713472742357, 52.32722844861589], [-2.0871342244529765, 52.32722935789632], [-2.08713404878413, 52.32723031278686], [-2.0871337698173935, 52.32726149548346], [-2.087060634707307, 52.32736943728468], [-2.0869735952385793, 52.32746197921555], [-2.0869730994250313, 52.32746354567397], [-2.0869723938300315, 52.32749572389528], [-2.086885939654145, 52.32756076522457], [-2.0868851116704312, 52.32756205503084], [-2.0868699389314966, 52.327603675533005], [-2.086813957801767, 52.3276408274275], [-2.0868125532808106, 52.327642181485196], [-2.0868120149100475, 52.327643750670674], [-2.0868109570750493, 52.32766698211176], [-2.0867407888363183, 52.32771277770878], [-2.0867398600139544, 52.3277135290731], [-2.0867390903035576, 52.32771460666591], [-2.086738802048203, 52.32771577020723], [-2.0867380959564525, 52.327738806302], [-2.0865775009621403, 52.32791821677761], [-2.0865360834128377, 52.32793773166092], [-2.086535006129528, 52.32793835457411], [-2.0865341550448195, 52.32793909689012], [-2.086533565330005, 52.327939928913835], [-2.08647469322348, 52.32805307417553], [-2.0864518596918917, 52.328054605783585], [-2.0864496285662066, 52.32805497961472], [-2.08644742057243, 52.32805592610161], [-2.0864460816615513, 52.32805708142798], [-2.086445546343281, 52.32805797004927], [-2.086444515101791, 52.3280611299633], [-2.0863225996059303, 52.32806121937348], [-2.0863207135608093, 52.32804217952654], [-2.086375172193868, 52.32802290418459], [-2.0863769606395732, 52.32802201554063], [-2.0863782114459513, 52.32802083151483], [-2.0863787521648263, 52.32801970195129], [-2.086393613646652, 52.32796116129585], [-2.0864490318867226, 52.32793292559209], [-2.0864500768346916, 52.32793227213813], [-2.0864508838435105, 52.32793150288642], [-2.0864515097733327, 52.3279304263013], [-2.086451676740191, 52.327929517266206], [-2.0864522099756138, 52.327898299330386], [-2.0865076307975587, 52.327869940431164], [-2.086508719686682, 52.327869249185774], [-2.0865095442130133, 52.32786843316834], [-2.086510067753528, 52.32786752747223], [-2.0865102639846733, 52.32786657436382], [-2.0865109618977282, 52.32784379539843], [-2.086597760064011, 52.327760534569016], [-2.0866277798134343, 52.32769123316446], [-2.0866987655659615, 52.32764475018366], [-2.0867000589273204, 52.327643576012846], [-2.086700691617388, 52.32764221263481], [-2.086715644808803, 52.327565619559216], [-2.086785486887281, 52.327545890386396], [-2.0867871202671493, 52.32754525717139], [-2.0867884274244237, 52.32754438415836], [-2.0868240225331274, 52.32750940854929], [-2.0868247908797875, 52.327508387594854], [-2.086833949472053, 52.32745654608358], [-2.086931790547546, 52.32742010857972], [-2.0869330102548562, 52.3274195394993], [-2.0869340110447787, 52.32741882763513], [-2.086934747499927, 52.327418004490596], [-2.0869351888682925, 52.327417105146296], [-2.086964385355531, 52.327322780052306], [-2.0869908657174503, 52.327312001932654], [-2.086992297795691, 52.3273112376084], [-2.0869933626533763, 52.327310273972074], [-2.0870527325195845, 52.3272141231362], [-2.087122560456957, 52.327186082334265], [-2.087124467267051, 52.32718496973581], [-2.0871255022412654, 52.32718373911339], [-2.087154138698421, 52.32713088794991], [-2.08717169802188, 52.327114403121506], [-2.0872039928315256, 52.32711458688973], [-2.087206978471313, 52.327153081592996], [-2.0871796508478355, 52.32717314635906]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c3d50d4f75f09c34716722a0ad3c89a5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1b8e98468da17f471b3b79e160735ce9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3017360e54c397fd3d450a1fedcc7649 = $(`&lt;div id=&quot;html_3017360e54c397fd3d450a1fedcc7649&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 137&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 848.0 sqm&lt;br&gt;Intersecting area: 847.8 sqm&lt;/div&gt;`)[0];\n",
" popup_1b8e98468da17f471b3b79e160735ce9.setContent(html_3017360e54c397fd3d450a1fedcc7649);\n",
" \n",
" \n",
"\n",
" geo_json_c3d50d4f75f09c34716722a0ad3c89a5.bindPopup(popup_1b8e98468da17f471b3b79e160735ce9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c3d50d4f75f09c34716722a0ad3c89a5.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_386e216a8f2fc829895089d1689c9733_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_386e216a8f2fc829895089d1689c9733_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_386e216a8f2fc829895089d1689c9733 = L.geoJson(null, {\n",
" onEachFeature: geo_json_386e216a8f2fc829895089d1689c9733_onEachFeature,\n",
" \n",
" style: geo_json_386e216a8f2fc829895089d1689c9733_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_386e216a8f2fc829895089d1689c9733_add (data) {\n",
" geo_json_386e216a8f2fc829895089d1689c9733\n",
" .addData(data);\n",
" }\n",
" geo_json_386e216a8f2fc829895089d1689c9733_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080296604283324, 52.32190963216026], [-2.0802575505095215, 52.321901816629854], [-2.0802548818160416, 52.321901852615014], [-2.0802527391992656, 52.32190234853487], [-2.0802507003048007, 52.32190340357516], [-2.0802494132707574, 52.32190483569418], [-2.08024337194204, 52.321926898170375], [-2.080243577423628, 52.32192855762056], [-2.080244752402988, 52.32193005818624], [-2.080246739529888, 52.321931193193564], [-2.080249262694542, 52.32193180819924], [-2.0802854161634845, 52.3219349103498], [-2.0802668326516267, 52.32196373751571], [-2.080235563497875, 52.32196315108614], [-2.0801769972981132, 52.321927470207925], [-2.080175269840847, 52.32189881511495], [-2.0802305992917733, 52.32188670268869], [-2.0802322914249256, 52.32188617201394], [-2.0802339446363645, 52.32188521163346], [-2.0802655645851114, 52.32186004538557], [-2.080298493767326, 52.32186023420474], [-2.0803144317993345, 52.3218999887986], [-2.080296604283324, 52.32190963216026]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_386e216a8f2fc829895089d1689c9733.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cd0640438c46be429f78c1c48db28303 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7227f149804f141c39e040e3bb18627d = $(`&lt;div id=&quot;html_7227f149804f141c39e040e3bb18627d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 138&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 57.0 sqm&lt;br&gt;Intersecting area: 57.3 sqm&lt;/div&gt;`)[0];\n",
" popup_cd0640438c46be429f78c1c48db28303.setContent(html_7227f149804f141c39e040e3bb18627d);\n",
" \n",
" \n",
"\n",
" geo_json_386e216a8f2fc829895089d1689c9733.bindPopup(popup_cd0640438c46be429f78c1c48db28303)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_386e216a8f2fc829895089d1689c9733.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_b33981b80f78a1c0c25070f5f450507b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b33981b80f78a1c0c25070f5f450507b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b33981b80f78a1c0c25070f5f450507b = L.geoJson(null, {\n",
" onEachFeature: geo_json_b33981b80f78a1c0c25070f5f450507b_onEachFeature,\n",
" \n",
" style: geo_json_b33981b80f78a1c0c25070f5f450507b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b33981b80f78a1c0c25070f5f450507b_add (data) {\n",
" geo_json_b33981b80f78a1c0c25070f5f450507b\n",
" .addData(data);\n",
" }\n",
" geo_json_b33981b80f78a1c0c25070f5f450507b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080758939041728, 52.32196333362077], [-2.0807573850727024, 52.32196400086063], [-2.0807559653844447, 52.321965089646994], [-2.0807243470130077, 52.321999043946754], [-2.0806453216396643, 52.32200723782068], [-2.0806156287132596, 52.32198843806326], [-2.0806008335684925, 52.321916642547166], [-2.0806558475860277, 52.321895737722805], [-2.080657055476353, 52.321895165118036], [-2.0806582495486605, 52.32189425449075], [-2.0806590193223924, 52.321893185930286], [-2.080659315049352, 52.32189203228308], [-2.0806609734881767, 52.32185212274254], [-2.0807390450061467, 52.32186084277474], [-2.0807160179790025, 52.32189619185428], [-2.080715837766264, 52.32189713235252], [-2.0807159818062684, 52.32189807532493], [-2.080716445609112, 52.32189897942352], [-2.080717442190507, 52.32189999193608], [-2.0807188360193654, 52.32190081088597], [-2.0807201719961603, 52.32190128735088], [-2.08072164262647, 52.321901581218924], [-2.080723178922975, 52.32190168085991], [-2.080724716315603, 52.32190158001211], [-2.0807261858692097, 52.32190128412859], [-2.0807804814431714, 52.321886298883975], [-2.0808261125585266, 52.321894115120045], [-2.080828381081108, 52.32189427718392], [-2.0808302601453255, 52.32189407900711], [-2.0808323115635172, 52.321893460873795], [-2.080833714189843, 52.32189266967075], [-2.0808347364610387, 52.321891683642235], [-2.0808353678116576, 52.32189033737839], [-2.080836038876156, 52.321869788009735], [-2.0808626995089194, 52.32185907226428], [-2.0809721601150453, 52.32185055075444], [-2.080989810744963, 52.321889406856634], [-2.080758939041728, 52.32196333362077]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b33981b80f78a1c0c25070f5f450507b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6ace57e247ead24d777833e459b3414a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cf6e1ef3c1bab32e8e42ec82bc6ba226 = $(`&lt;div id=&quot;html_cf6e1ef3c1bab32e8e42ec82bc6ba226&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 139&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 232.0 sqm&lt;br&gt;Intersecting area: 180.4 sqm&lt;/div&gt;`)[0];\n",
" popup_6ace57e247ead24d777833e459b3414a.setContent(html_cf6e1ef3c1bab32e8e42ec82bc6ba226);\n",
" \n",
" \n",
"\n",
" geo_json_b33981b80f78a1c0c25070f5f450507b.bindPopup(popup_6ace57e247ead24d777833e459b3414a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b33981b80f78a1c0c25070f5f450507b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_1997598244314441721e4c063efb43c4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1997598244314441721e4c063efb43c4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1997598244314441721e4c063efb43c4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1997598244314441721e4c063efb43c4_onEachFeature,\n",
" \n",
" style: geo_json_1997598244314441721e4c063efb43c4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1997598244314441721e4c063efb43c4_add (data) {\n",
" geo_json_1997598244314441721e4c063efb43c4\n",
" .addData(data);\n",
" }\n",
" geo_json_1997598244314441721e4c063efb43c4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0831944451128943, 52.3243075303196], [-2.083127854501453, 52.32430826689127], [-2.08312561301535, 52.32430850761164], [-2.0831235997222906, 52.32430915812338], [-2.083122238187048, 52.32430996910384], [-2.0831034908169213, 52.32432610625488], [-2.0829950986134462, 52.32431747388636], [-2.082993151599969, 52.32431747885512], [-2.0829916378444455, 52.32431770917031], [-2.0829125751922177, 52.32433538834473], [-2.0827171448486927, 52.324326662334755], [-2.082715595603104, 52.32432674523335], [-2.082714108344124, 52.32432702587126], [-2.082712750557399, 52.32432749251943], [-2.0827115852900677, 52.324328124449465], [-2.082691968000458, 52.32434442666721], [-2.0825857988260266, 52.324335865183166], [-2.0825830992769845, 52.32433595517978], [-2.082580635597811, 52.324336638363896], [-2.08257896773003, 52.32433762845644], [-2.0825367393473786, 52.32437230987761], [-2.0825361629529877, 52.3243732200906], [-2.082535919728239, 52.32437418490758], [-2.082534262148283, 52.32439719378768], [-2.0824820501131347, 52.32439859687719], [-2.082480207628661, 52.324398793254055], [-2.082478505052027, 52.3243992682303], [-2.0824768017876147, 52.324400162149054], [-2.0824169579700182, 52.32444292816671], [-2.0823349039375345, 52.32444368859427], [-2.0823329924440763, 52.32444386164513], [-2.082330895408569, 52.32444446365321], [-2.082268195897251, 52.32447053859066], [-2.08220569068799, 52.324462270800126], [-2.082203793371778, 52.32446217503142], [-2.082201918613686, 52.32446238131625], [-2.082200521031963, 52.32446275538582], [-2.082199279287849, 52.32446329926061], [-2.082197641301311, 52.32446458240241], [-2.0821796872501777, 52.3244885816837], [-2.0821482567397545, 52.324488199052745], [-2.08213210487635, 52.32447294406195], [-2.08213011756726, 52.3244717982969], [-2.0821275854189576, 52.32447117704476], [-2.0821248577985996, 52.32447116546046], [-2.0820480899799803, 52.324479726394905], [-2.082029290162831, 52.324469424138755], [-2.0820292517915733, 52.32444874221507], [-2.0821025571351064, 52.32438580199451], [-2.0821989700882786, 52.32439326762784], [-2.082201704827395, 52.32439316322875], [-2.0822041860718348, 52.324392451271144], [-2.082231520467247, 52.32437573829074], [-2.0822326175939327, 52.3243747504021], [-2.082233317865081, 52.32437338519959], [-2.082233281451159, 52.32437195308776], [-2.0822214113824873, 52.32433086807361], [-2.082266176609378, 52.32431262986216], [-2.082361333533906, 52.32430358484339], [-2.082362832595818, 52.32430334105581], [-2.0823642153910122, 52.32430290856043], [-2.0823661705492484, 52.32430176274268], [-2.082426482047931, 52.3242502183933], [-2.082523840058019, 52.32426733048314], [-2.0826405877516674, 52.324267219847194], [-2.082642805372482, 52.32426676877939], [-2.0826449426727787, 52.32426573610519], [-2.082706409401152, 52.32422251392638], [-2.0827534115891906, 52.32422295289599], [-2.08276899036157, 52.32424551543815], [-2.082770378958893, 52.32424661576104], [-2.082772249689709, 52.3242474037859], [-2.0827744248795708, 52.324247803220025], [-2.0827766946367077, 52.324247775551996], [-2.08277815259024, 52.32424752010633], [-2.0827794942956226, 52.324247086734744], [-2.0828191862739898, 52.32423082252777], [-2.0828682564753724, 52.32420500232336], [-2.0828873288126966, 52.32422053744858], [-2.082889025177257, 52.32422144966039], [-2.0828907324861765, 52.32422193752523], [-2.082892961616615, 52.324222149922065], [-2.0830155738730274, 52.32422211749825], [-2.083048974745336, 52.3242389280959], [-2.0830506588540154, 52.324239563417095], [-2.0830529528298083, 52.32423992949628], [-2.083263126152167, 52.32423101474923], [-2.083269189773299, 52.32426037694611], [-2.0831944451128943, 52.3243075303196]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1997598244314441721e4c063efb43c4.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c6e364b8606e4fd73bbb208d9f082331 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7d7d74352089b99d70b1465d0f2d78f5 = $(`&lt;div id=&quot;html_7d7d74352089b99d70b1465d0f2d78f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 140&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 958.0 sqm&lt;br&gt;Intersecting area: 958.0 sqm&lt;/div&gt;`)[0];\n",
" popup_c6e364b8606e4fd73bbb208d9f082331.setContent(html_7d7d74352089b99d70b1465d0f2d78f5);\n",
" \n",
" \n",
"\n",
" geo_json_1997598244314441721e4c063efb43c4.bindPopup(popup_c6e364b8606e4fd73bbb208d9f082331)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1997598244314441721e4c063efb43c4.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_77dd37ebd8b812efd63a8a1742e733ae_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_77dd37ebd8b812efd63a8a1742e733ae_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_77dd37ebd8b812efd63a8a1742e733ae = L.geoJson(null, {\n",
" onEachFeature: geo_json_77dd37ebd8b812efd63a8a1742e733ae_onEachFeature,\n",
" \n",
" style: geo_json_77dd37ebd8b812efd63a8a1742e733ae_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_77dd37ebd8b812efd63a8a1742e733ae_add (data) {\n",
" geo_json_77dd37ebd8b812efd63a8a1742e733ae\n",
" .addData(data);\n",
" }\n",
" geo_json_77dd37ebd8b812efd63a8a1742e733ae_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0805786608753656, 52.32205294468995], [-2.080533701035414, 52.322080260708006], [-2.080367839616533, 52.32211489999776], [-2.0803393753718225, 52.32204072418326], [-2.0804150080110757, 52.32203936538224], [-2.080443417891411, 52.32205375277595], [-2.0804451251390894, 52.322054267649264], [-2.0804466102775327, 52.32205447430746], [-2.0804481346910797, 52.32205448854866], [-2.080449629399501, 52.322054310420086], [-2.080451032814765, 52.322053946261136], [-2.080452564738074, 52.32205325476389], [-2.080453754420011, 52.322052345041946], [-2.0804545242063166, 52.322051279179284], [-2.0804561522618963, 52.322039719361456], [-2.0805405571923496, 52.322002996025375], [-2.080575587725447, 52.32199447721846], [-2.080593842758721, 52.32200448070972], [-2.0805786608753656, 52.32205294468995]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_77dd37ebd8b812efd63a8a1742e733ae.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a3d86cf08b18c17c63b29285edb8f777 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2b4e85853a1d8baba1fc145b040ccc24 = $(`&lt;div id=&quot;html_2b4e85853a1d8baba1fc145b040ccc24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 141&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 114.0 sqm&lt;br&gt;Intersecting area: 114.2 sqm&lt;/div&gt;`)[0];\n",
" popup_a3d86cf08b18c17c63b29285edb8f777.setContent(html_2b4e85853a1d8baba1fc145b040ccc24);\n",
" \n",
" \n",
"\n",
" geo_json_77dd37ebd8b812efd63a8a1742e733ae.bindPopup(popup_a3d86cf08b18c17c63b29285edb8f777)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_77dd37ebd8b812efd63a8a1742e733ae.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_5af7f131784d335287a2d474186d7bc2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5af7f131784d335287a2d474186d7bc2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5af7f131784d335287a2d474186d7bc2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_5af7f131784d335287a2d474186d7bc2_onEachFeature,\n",
" \n",
" style: geo_json_5af7f131784d335287a2d474186d7bc2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5af7f131784d335287a2d474186d7bc2_add (data) {\n",
" geo_json_5af7f131784d335287a2d474186d7bc2\n",
" .addData(data);\n",
" }\n",
" geo_json_5af7f131784d335287a2d474186d7bc2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0798465931958807, 52.322394508236655], [-2.0797972856275386, 52.322395169180545], [-2.079766001364087, 52.32236197787435], [-2.079765106498813, 52.32236122330261], [-2.0797639785850666, 52.32236059834769], [-2.0797619541956647, 52.32235995872164], [-2.0797597060836543, 52.32235973189184], [-2.0797094197856945, 52.32235948724511], [-2.079679723207741, 52.322341829010384], [-2.079718315612554, 52.32230191516388], [-2.0797191671215636, 52.32230059392952], [-2.0797193039449917, 52.32229917518132], [-2.0797189868260793, 52.32229824581138], [-2.0797183587820975, 52.32229737778262], [-2.0797171804148005, 52.32229643820571], [-2.079715971864973, 52.32229584297429], [-2.0796632408178293, 52.32227739840074], [-2.0796622331145516, 52.32223681641308], [-2.0796618535974285, 52.32223545465657], [-2.0796608155665774, 52.32223422819308], [-2.0796331993275308, 52.322217267078834], [-2.079631973150515, 52.32221666376916], [-2.0796305639001345, 52.32221623408972], [-2.0796282540761126, 52.322215956058315], [-2.0795751832760767, 52.32221490322194], [-2.0795152918218567, 52.32216338666944], [-2.079513463695267, 52.322162551815765], [-2.0795109290298344, 52.32216206715706], [-2.0794868554079042, 52.32216104414193], [-2.079325694435457, 52.32205627672662], [-2.0793235521228803, 52.32205531441889], [-2.0793209911494337, 52.32205488191923], [-2.0793194667910537, 52.32205489822874], [-2.0793179824029715, 52.32205510690141], [-2.079286953867579, 52.32206273710774], [-2.0792850230536857, 52.32206353583711], [-2.079283793753494, 52.32206445906039], [-2.0792829040908076, 52.32206577852117], [-2.0792827349844125, 52.322067202683535], [-2.07928887294741, 52.32208238659926], [-2.0792899037191526, 52.32208366520774], [-2.079291535563239, 52.322084681801414], [-2.0792936068988386, 52.32208533399447], [-2.079346825335795, 52.322095981202786], [-2.0793328858167093, 52.32213359301315], [-2.0792916363343537, 52.322153143017836], [-2.0792901005172975, 52.322154132975434], [-2.079289121185745, 52.322155359000156], [-2.0792724468771833, 52.322188104449474], [-2.079223810617092, 52.32217926834645], [-2.079221907520719, 52.32209646717254], [-2.0792486488534077, 52.32206827388717], [-2.079249379061007, 52.32206720985519], [-2.079249641103579, 52.32206606702426], [-2.0792495044732506, 52.32206514652112], [-2.0792490612741696, 52.32206426218251], [-2.0792481102323674, 52.32206326580989], [-2.079247070277768, 52.322062596739016], [-2.0792219715567453, 52.3220519629359], [-2.079221647386248, 52.3220036947606], [-2.0792214754928797, 52.32200274461177], [-2.0792208073920584, 52.32200162398247], [-2.0792196818014186, 52.32200065020306], [-2.0792185040217417, 52.322000024376194], [-2.078944762490338, 52.32188320613997], [-2.0789590110382448, 52.32185254269479], [-2.0790048679215953, 52.32185142951544], [-2.079184374702704, 52.32192370882969], [-2.079229965513871, 52.32196647961465], [-2.0792308954910883, 52.32196718472218], [-2.079232350697468, 52.32196788227866], [-2.0792340446082798, 52.32196833514755], [-2.079287403301966, 52.32197791874359], [-2.0793034312682823, 52.322002039452556], [-2.0793048627420343, 52.32200341308802], [-2.0793066630260197, 52.32200427403641], [-2.0793614567996426, 52.32202292774882], [-2.079597607875115, 52.32218253862322], [-2.0795996104907077, 52.32218331491915], [-2.079601913093847, 52.3221836594881], [-2.0796395997075923, 52.32218420308202], [-2.0796982699422215, 52.32221986437934], [-2.0797001423617525, 52.32223387254331], [-2.079700926772991, 52.322235210649396], [-2.0797026471288973, 52.322236489692024], [-2.079704640861912, 52.322237218348], [-2.0797069067254506, 52.32223752787324], [-2.079756069034709, 52.32223777328233], [-2.079786308983643, 52.32225574308922], [-2.0797879345285963, 52.3222857809482], [-2.0797629159087574, 52.322296107861334], [-2.0797617990731494, 52.322296744222335], [-2.079760921617571, 52.32229750718796], [-2.0797603201599233, 52.32229836615954], [-2.079760019576609, 52.32229928156535], [-2.0797600359323116, 52.3223002156358], [-2.079760367691908, 52.32230112791684], [-2.0797730183544365, 52.322324297883284], [-2.079773850666534, 52.32232534647749], [-2.0797748188329708, 52.32232606863369], [-2.0797770153746953, 52.32232698504418], [-2.079778466920175, 52.32232727084755], [-2.0797799826825414, 52.32232736691373], [-2.079803712668267, 52.322327344540646], [-2.0798059349098708, 52.322327057148016], [-2.0798079070081235, 52.32232636626108], [-2.0798089886020716, 52.322325712840396], [-2.0798099933073195, 52.32232472863325], [-2.079827788194843, 52.3223009275985], [-2.0798750085401085, 52.32231038293455], [-2.079890949142329, 52.32236629207173], [-2.0798465931958807, 52.322394508236655]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5af7f131784d335287a2d474186d7bc2.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0d0d8433e67f286a0be744b5ffd816e1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_03ac5778bbd6d6252fb77f1c10d14401 = $(`&lt;div id=&quot;html_03ac5778bbd6d6252fb77f1c10d14401&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 142&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 521.0 sqm&lt;br&gt;Intersecting area: 314.0 sqm&lt;/div&gt;`)[0];\n",
" popup_0d0d8433e67f286a0be744b5ffd816e1.setContent(html_03ac5778bbd6d6252fb77f1c10d14401);\n",
" \n",
" \n",
"\n",
" geo_json_5af7f131784d335287a2d474186d7bc2.bindPopup(popup_0d0d8433e67f286a0be744b5ffd816e1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5af7f131784d335287a2d474186d7bc2.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c65e21a4282cb5c5dc45633e4656d8c9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c65e21a4282cb5c5dc45633e4656d8c9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c65e21a4282cb5c5dc45633e4656d8c9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c65e21a4282cb5c5dc45633e4656d8c9_onEachFeature,\n",
" \n",
" style: geo_json_c65e21a4282cb5c5dc45633e4656d8c9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c65e21a4282cb5c5dc45633e4656d8c9_add (data) {\n",
" geo_json_c65e21a4282cb5c5dc45633e4656d8c9\n",
" .addData(data);\n",
" }\n",
" geo_json_c65e21a4282cb5c5dc45633e4656d8c9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.080311243284324, 52.32215259587104], [-2.0802917799376512, 52.322152633416046], [-2.08028921471535, 52.322153101755774], [-2.0802873587931106, 52.32215393102006], [-2.0802861940881483, 52.32215486409525], [-2.0802550082383906, 52.3221881203336], [-2.0802040236300368, 52.32218861177171], [-2.080202072621799, 52.32218879290441], [-2.0801999390382484, 52.32218942097678], [-2.080198488029559, 52.32219024007409], [-2.0801527723229376, 52.32222408424633], [-2.0801031612338354, 52.322222310076704], [-2.080103466804684, 52.32220228419506], [-2.0801624705300523, 52.322165946999974], [-2.0803265895749496, 52.32211207465383], [-2.0803448555321484, 52.322141014236784], [-2.080311243284324, 52.32215259587104]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c65e21a4282cb5c5dc45633e4656d8c9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cb5da87c4f8dbc70f77c3a9f8ebc6122 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b9119a51d03c7e09fa0841113b1973cc = $(`&lt;div id=&quot;html_b9119a51d03c7e09fa0841113b1973cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 143&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 70.0 sqm&lt;br&gt;Intersecting area: 70.1 sqm&lt;/div&gt;`)[0];\n",
" popup_cb5da87c4f8dbc70f77c3a9f8ebc6122.setContent(html_b9119a51d03c7e09fa0841113b1973cc);\n",
" \n",
" \n",
"\n",
" geo_json_c65e21a4282cb5c5dc45633e4656d8c9.bindPopup(popup_cb5da87c4f8dbc70f77c3a9f8ebc6122)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c65e21a4282cb5c5dc45633e4656d8c9.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_7a568abdd01eb12ae5752eee17970f55_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7a568abdd01eb12ae5752eee17970f55_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7a568abdd01eb12ae5752eee17970f55 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7a568abdd01eb12ae5752eee17970f55_onEachFeature,\n",
" \n",
" style: geo_json_7a568abdd01eb12ae5752eee17970f55_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7a568abdd01eb12ae5752eee17970f55_add (data) {\n",
" geo_json_7a568abdd01eb12ae5752eee17970f55\n",
" .addData(data);\n",
" }\n",
" geo_json_7a568abdd01eb12ae5752eee17970f55_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.079015696427045, 52.325883395253626], [-2.0789832496992204, 52.32589292505332], [-2.0789504246871906, 52.32586811794487], [-2.0789487473912938, 52.32586718948113], [-2.0789466892311146, 52.32586661818804], [-2.078944822545664, 52.3258664540182], [-2.0788350913017006, 52.3258655691813], [-2.078834802383308, 52.32584425721416], [-2.0788767722806893, 52.32584321411672], [-2.078878613153719, 52.325842895527366], [-2.0788802583850923, 52.32584229657984], [-2.0788815935816043, 52.32584145690132], [-2.0788825308221655, 52.32584043408468], [-2.078883002727505, 52.32583929740783], [-2.0788829786243674, 52.32583812510507], [-2.078876377060773, 52.32581003066786], [-2.078882309239233, 52.32579848777993], [-2.078957228206913, 52.325807982457754], [-2.0790165809022096, 52.32584464602005], [-2.079015696427045, 52.325883395253626]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7a568abdd01eb12ae5752eee17970f55.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_85519b9a997f1dfb4af592ce88cc972b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_38ab0bbf149d63701d464bbf16c969bc = $(`&lt;div id=&quot;html_38ab0bbf149d63701d464bbf16c969bc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 144&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 71.0 sqm&lt;br&gt;Intersecting area: 71.5 sqm&lt;/div&gt;`)[0];\n",
" popup_85519b9a997f1dfb4af592ce88cc972b.setContent(html_38ab0bbf149d63701d464bbf16c969bc);\n",
" \n",
" \n",
"\n",
" geo_json_7a568abdd01eb12ae5752eee17970f55.bindPopup(popup_85519b9a997f1dfb4af592ce88cc972b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7a568abdd01eb12ae5752eee17970f55.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_c001df097af495d2d2298337a6de1c09_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c001df097af495d2d2298337a6de1c09_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c001df097af495d2d2298337a6de1c09 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c001df097af495d2d2298337a6de1c09_onEachFeature,\n",
" \n",
" style: geo_json_c001df097af495d2d2298337a6de1c09_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c001df097af495d2d2298337a6de1c09_add (data) {\n",
" geo_json_c001df097af495d2d2298337a6de1c09\n",
" .addData(data);\n",
" }\n",
" geo_json_c001df097af495d2d2298337a6de1c09_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0792162114056674, 52.32601833822518], [-2.0791706872400955, 52.32598478866318], [-2.0791685827044923, 52.32598372474214], [-2.079166759554408, 52.325983291739014], [-2.0791652084063017, 52.32598316871585], [-2.07909786247869, 52.325982259216566], [-2.079082768535832, 52.325971646538385], [-2.07909616883146, 52.325959077335696], [-2.079114645535367, 52.32594218043716], [-2.079162117055801, 52.32594233013297], [-2.0792650871422906, 52.32598735838556], [-2.0792661045900163, 52.326008157418194], [-2.0792162114056674, 52.32601833822518]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c001df097af495d2d2298337a6de1c09.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_14b92ab5a3f8156a4730f07f0f1bd919 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_59c6bf026e6a320b070264da5e79dc14 = $(`&lt;div id=&quot;html_59c6bf026e6a320b070264da5e79dc14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 145&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 52.0 sqm&lt;br&gt;Intersecting area: 52.1 sqm&lt;/div&gt;`)[0];\n",
" popup_14b92ab5a3f8156a4730f07f0f1bd919.setContent(html_59c6bf026e6a320b070264da5e79dc14);\n",
" \n",
" \n",
"\n",
" geo_json_c001df097af495d2d2298337a6de1c09.bindPopup(popup_14b92ab5a3f8156a4730f07f0f1bd919)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c001df097af495d2d2298337a6de1c09.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2140d03a94dd314a20dc361a4d049345_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2140d03a94dd314a20dc361a4d049345_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2140d03a94dd314a20dc361a4d049345 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2140d03a94dd314a20dc361a4d049345_onEachFeature,\n",
" \n",
" style: geo_json_2140d03a94dd314a20dc361a4d049345_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2140d03a94dd314a20dc361a4d049345_add (data) {\n",
" geo_json_2140d03a94dd314a20dc361a4d049345\n",
" .addData(data);\n",
" }\n",
" geo_json_2140d03a94dd314a20dc361a4d049345_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0808063318958063, 52.327537288455794], [-2.0806686000607684, 52.32753747818071], [-2.0806663099500624, 52.32753770630131], [-2.0806645676908504, 52.32753822533009], [-2.08066310764168, 52.32753900488365], [-2.0805889732652316, 52.32759063597618], [-2.0805407267877136, 52.327591345942395], [-2.0803469124602154, 52.32753480865681], [-2.0803473076400585, 52.32750681022527], [-2.08039177078326, 52.327470357008266], [-2.08049102385919, 52.32746024087369], [-2.080542734661578, 52.327451513796525], [-2.080604471372339, 52.32747717182476], [-2.0806061450846047, 52.32747769031067], [-2.080607976768336, 52.32747793089143], [-2.080610581017261, 52.327477778074204], [-2.0806590320308613, 52.32746940829228], [-2.0806754175989957, 52.327479732195], [-2.080676692211033, 52.32748025724646], [-2.0806781176361273, 52.327480607788004], [-2.0806800152213905, 52.32748077820237], [-2.080681545504359, 52.32748069354308], [-2.080683012337219, 52.32748041564135], [-2.0806843526509398, 52.32747995622213], [-2.080685507781577, 52.32747933690559], [-2.080686427894738, 52.3274785828984], [-2.0807019531519786, 52.32746052354463], [-2.0807629470828477, 52.32746025607849], [-2.080838084431202, 52.327487919492725], [-2.080839445237276, 52.32751712050478], [-2.0808063318958063, 52.327537288455794]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2140d03a94dd314a20dc361a4d049345.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ca09c9349d38fc7586d904e97e269b28 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4b74fb6acfb57f02a13a6030019c1d84 = $(`&lt;div id=&quot;html_4b74fb6acfb57f02a13a6030019c1d84&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 146&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 326.0 sqm&lt;br&gt;Intersecting area: 325.9 sqm&lt;/div&gt;`)[0];\n",
" popup_ca09c9349d38fc7586d904e97e269b28.setContent(html_4b74fb6acfb57f02a13a6030019c1d84);\n",
" \n",
" \n",
"\n",
" geo_json_2140d03a94dd314a20dc361a4d049345.bindPopup(popup_ca09c9349d38fc7586d904e97e269b28)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2140d03a94dd314a20dc361a4d049345.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_78eaab673fb241938cd0825f650743aa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_78eaab673fb241938cd0825f650743aa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_78eaab673fb241938cd0825f650743aa = L.geoJson(null, {\n",
" onEachFeature: geo_json_78eaab673fb241938cd0825f650743aa_onEachFeature,\n",
" \n",
" style: geo_json_78eaab673fb241938cd0825f650743aa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_78eaab673fb241938cd0825f650743aa_add (data) {\n",
" geo_json_78eaab673fb241938cd0825f650743aa\n",
" .addData(data);\n",
" }\n",
" geo_json_78eaab673fb241938cd0825f650743aa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0801391820454285, 52.32755580025886], [-2.080137723739768, 52.327555929814125], [-2.080136336183643, 52.32755623552399], [-2.080015083362406, 52.32759172585106], [-2.0798671741327324, 52.32760993790569], [-2.0798058728781608, 52.32760915506454], [-2.079776834770303, 52.32757374708485], [-2.0797759250877874, 52.32757297454481], [-2.079774770603878, 52.32757233612205], [-2.0797723203216636, 52.32757162576051], [-2.079770393435067, 52.327571479627906], [-2.0797688485202683, 52.32757158945345], [-2.079767028294956, 52.32757200243919], [-2.0797654477436978, 52.32757269305526], [-2.079735951355074, 52.32759149984053], [-2.079705953137774, 52.32758102319782], [-2.0797045218808257, 52.327580691532106], [-2.07970262580488, 52.327580543577064], [-2.0797011043493967, 52.32758064529655], [-2.0796996507376444, 52.32758093845977], [-2.0796977328373782, 52.32758170572506], [-2.0796964945342107, 52.32758259749231], [-2.0796956747317927, 52.327583655293544], [-2.079695327580322, 52.3275848062713], [-2.079695371894952, 52.327661475509004], [-2.0796649305065014, 52.32769008582014], [-2.079603416498353, 52.327708921417035], [-2.0795127968196567, 52.32769960856787], [-2.07945266277108, 52.32766252325438], [-2.0794671589114007, 52.3276242808791], [-2.0796008698398727, 52.32756016780794], [-2.079694438658507, 52.32755973502369], [-2.0796959718372454, 52.327559627899205], [-2.079697435706707, 52.32755932753574], [-2.079699635006073, 52.327558378480084], [-2.0797009667434385, 52.327557222339045], [-2.079701646617291, 52.32755587065259], [-2.079715513510522, 52.32749592994124], [-2.079750075153522, 52.3274787775229], [-2.0798377165725004, 52.32747880804041], [-2.0798546753914415, 52.32748978615146], [-2.0798563316229832, 52.32749037748499], [-2.0798581795629145, 52.327490687290556], [-2.079860095926957, 52.327490692284066], [-2.079862300624199, 52.32749029881571], [-2.079863613019423, 52.32748981065991], [-2.079864973213272, 52.3274889835355], [-2.0799220195524875, 52.327443807767764], [-2.0799603004933096, 52.32744271914128], [-2.0799621841828246, 52.32744251288607], [-2.0799639147448836, 52.32744201545136], [-2.0799656298474543, 52.327441082902425], [-2.0800109886726905, 52.32740725975221], [-2.080101582660638, 52.3273978052112], [-2.080120445658373, 52.32740933668706], [-2.0801206658702633, 52.327483070505494], [-2.080121019049849, 52.32748444127106], [-2.0801222674042408, 52.327485866265114], [-2.0801233294896257, 52.32748652722335], [-2.0801245894034444, 52.327487041505], [-2.0801259942703165, 52.3274873857698], [-2.080127485381824, 52.3274875456796], [-2.080192347653302, 52.32748829896031], [-2.080237415773421, 52.32753043676197], [-2.080238930466533, 52.32753146420723], [-2.0802408832953363, 52.32753216051564], [-2.080242713578557, 52.327532438865966], [-2.080280652942123, 52.3275339098758], [-2.0802819844127765, 52.327552009820046], [-2.0801391820454285, 52.32755580025886]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_78eaab673fb241938cd0825f650743aa.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5929ad127ab990a8448112717201e19a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3f0c06f6c5972b726e5e29f187f486c2 = $(`&lt;div id=&quot;html_3f0c06f6c5972b726e5e29f187f486c2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 147&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 714.0 sqm&lt;br&gt;Intersecting area: 6.0 sqm&lt;/div&gt;`)[0];\n",
" popup_5929ad127ab990a8448112717201e19a.setContent(html_3f0c06f6c5972b726e5e29f187f486c2);\n",
" \n",
" \n",
"\n",
" geo_json_78eaab673fb241938cd0825f650743aa.bindPopup(popup_5929ad127ab990a8448112717201e19a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_78eaab673fb241938cd0825f650743aa.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_485f598257b626de7b4495c654c87680_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_485f598257b626de7b4495c654c87680_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_485f598257b626de7b4495c654c87680 = L.geoJson(null, {\n",
" onEachFeature: geo_json_485f598257b626de7b4495c654c87680_onEachFeature,\n",
" \n",
" style: geo_json_485f598257b626de7b4495c654c87680_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_485f598257b626de7b4495c654c87680_add (data) {\n",
" geo_json_485f598257b626de7b4495c654c87680\n",
" .addData(data);\n",
" }\n",
" geo_json_485f598257b626de7b4495c654c87680_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.081737194144083, 52.32803101048517], [-2.0817365749959826, 52.32803184790248], [-2.0817362450347976, 52.32803274445348], [-2.081736220321925, 52.328033664164565], [-2.0817365007895896, 52.32803456658502], [-2.0817538724207356, 52.32806447928634], [-2.0815762075376525, 52.328064602486464], [-2.0815659523711747, 52.32805120341449], [-2.081564857454833, 52.328050261098376], [-2.081563404864211, 52.328049520413686], [-2.081561693021425, 52.32804903253307], [-2.0815070157673086, 52.32803842689992], [-2.0814922704669767, 52.32801943183812], [-2.081521200736374, 52.3279166844776], [-2.081520995666408, 52.32791528934157], [-2.0815069576281133, 52.32788114980955], [-2.0815060635503935, 52.327880105768195], [-2.081504756003561, 52.32787923911592], [-2.081503127550171, 52.32787861093219], [-2.0815016655122784, 52.32787830987483], [-2.0814054195618397, 52.327868371255434], [-2.081388988952046, 52.32779071363787], [-2.081387957943952, 52.32778941166852], [-2.0813866166214527, 52.32778852616325], [-2.0813597197557714, 52.327776398998814], [-2.081361668892594, 52.32774796796328], [-2.081458164809539, 52.32771453595397], [-2.0814598945503535, 52.327713596179926], [-2.081461061773049, 52.32771237270912], [-2.0814615493166695, 52.3277109878796], [-2.081461198543825, 52.32770935190989], [-2.081460364589855, 52.32770828624651], [-2.0814593889171698, 52.32770755242398], [-2.0814578527541583, 52.327706837868426], [-2.0814560647045575, 52.327706393190475], [-2.081391147458314, 52.327698281271935], [-2.081360652838424, 52.327665495330486], [-2.081358913181628, 52.32766423700625], [-2.081356913347142, 52.32766352636209], [-2.0813546516240216, 52.327663232148474], [-2.0813527295743164, 52.327663327872855], [-2.0812899071710667, 52.32767164223245], [-2.081256884091415, 52.3276514550667], [-2.081257441129322, 52.32763199451071], [-2.0812889509788413, 52.32761287220059], [-2.081335804894781, 52.32761292435673], [-2.081352912350209, 52.327628693026995], [-2.0813548351431366, 52.327629796593556], [-2.0813572705991255, 52.32763041163993], [-2.081358771880376, 52.327630511292526], [-2.081438011943365, 52.327630740612925], [-2.0814528265871908, 52.32764763372812], [-2.081453743575154, 52.327648374784665], [-2.081454887762464, 52.32764898532499], [-2.0814562136112733, 52.32764943751598], [-2.081457662391877, 52.32764971341064], [-2.081459931013657, 52.327649772076086], [-2.081461770553612, 52.32764949300667], [-2.0814634320333263, 52.32764893446719], [-2.0814650354935043, 52.32764794982842], [-2.0814793064884065, 52.327631002432796], [-2.081525647210479, 52.32763045072608], [-2.081587671292623, 52.327649976727734], [-2.0816028760171643, 52.32769612004794], [-2.0815758138517975, 52.32772482830381], [-2.0815750523092915, 52.32772642279234], [-2.081575192864486, 52.327727845841885], [-2.081576053707166, 52.327729171299445], [-2.0815775480233834, 52.32773026436915], [-2.081631904995854, 52.32775912567912], [-2.0816060872686064, 52.32779506209365], [-2.0816056956893667, 52.3277959685768], [-2.081605621116101, 52.32779690450534], [-2.081605863467162, 52.32779782942852], [-2.0816064153368217, 52.32779870379239], [-2.081607498560895, 52.32779966768772], [-2.0816089511702667, 52.32780042635527], [-2.081610674767601, 52.327800930409964], [-2.0816125533779846, 52.32780114486995], [-2.0817022645078396, 52.32780123010841], [-2.0817350984024743, 52.32782130220413], [-2.0817333747962996, 52.32788667019314], [-2.081700024095203, 52.327895839058996], [-2.0816554142600983, 52.32787159288202], [-2.0816541382060563, 52.327871091214114], [-2.0816527230633284, 52.32787076135701], [-2.0816512275659798, 52.32787061585193], [-2.081649714804177, 52.327870661852764], [-2.0816472198194345, 52.327871193103825], [-2.0816451923791637, 52.32787223108027], [-2.081615945264218, 52.327893792754814], [-2.0816148690842464, 52.32789505392265], [-2.08161449016458, 52.32789645845279], [-2.0816148478594108, 52.327897864272906], [-2.0816159037645066, 52.32789913205674], [-2.081617875052255, 52.327900267050914], [-2.08162000522591, 52.327900833754754], [-2.081689155392168, 52.327909338181136], [-2.081764158857621, 52.32794639854629], [-2.0817648852666726, 52.328001969122745], [-2.081737194144083, 52.32803101048517]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_485f598257b626de7b4495c654c87680.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_474ee63a5a16998dd7693bf8c73bfb3a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1e2ff5c1f72156c636730e4e40a10cf6 = $(`&lt;div id=&quot;html_1e2ff5c1f72156c636730e4e40a10cf6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 148&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 805.0 sqm&lt;br&gt;Intersecting area: 805.1 sqm&lt;/div&gt;`)[0];\n",
" popup_474ee63a5a16998dd7693bf8c73bfb3a.setContent(html_1e2ff5c1f72156c636730e4e40a10cf6);\n",
" \n",
" \n",
"\n",
" geo_json_485f598257b626de7b4495c654c87680.bindPopup(popup_474ee63a5a16998dd7693bf8c73bfb3a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_485f598257b626de7b4495c654c87680.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_08588a9b436f27572582ccd3cb320ed7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_08588a9b436f27572582ccd3cb320ed7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_08588a9b436f27572582ccd3cb320ed7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_08588a9b436f27572582ccd3cb320ed7_onEachFeature,\n",
" \n",
" style: geo_json_08588a9b436f27572582ccd3cb320ed7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_08588a9b436f27572582ccd3cb320ed7_add (data) {\n",
" geo_json_08588a9b436f27572582ccd3cb320ed7\n",
" .addData(data);\n",
" }\n",
" geo_json_08588a9b436f27572582ccd3cb320ed7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082228539259102, 52.32758119564416], [-2.082169885043627, 52.327581174551945], [-2.082137620071036, 52.327556153974584], [-2.082136534437546, 52.32755547417584], [-2.0821352392650465, 52.32755495005044], [-2.0821337932917205, 52.32755460403769], [-2.0821318722467494, 52.32755444624926], [-2.0820676450455284, 52.32755439752719], [-2.0820491240573307, 52.32754323472103], [-2.0820494184528395, 52.32750657790297], [-2.0820721185941653, 52.3275043954474], [-2.0820738667222582, 52.327503888980026], [-2.0820755890821134, 52.32750293841632], [-2.0820765952717797, 52.32750192631658], [-2.0820771331402383, 52.32750078868535], [-2.0820770405603857, 52.32749913545006], [-2.0820634940687706, 52.32746198842078], [-2.082078247984094, 52.3274342182187], [-2.082155623539716, 52.32741436606294], [-2.082217912799006, 52.32743368207643], [-2.0822188568630033, 52.32747974447412], [-2.0822002006950835, 52.32749137372594], [-2.082138261508898, 52.32749150684566], [-2.082136365994921, 52.32749166369487], [-2.0821346016244746, 52.32749211533704], [-2.0821333656818126, 52.32749266819633], [-2.0821321259694585, 52.32749356088607], [-2.082131306221471, 52.32749461960445], [-2.0821309895153384, 52.32749553772313], [-2.082130986675031, 52.327509804265496], [-2.0821313292180386, 52.327510944879656], [-2.0821321352616526, 52.32751199257444], [-2.0821333533379276, 52.327512879957716], [-2.082134901157237, 52.32751354684793], [-2.0822320095670532, 52.32754098368159], [-2.082228539259102, 52.32758119564416]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_08588a9b436f27572582ccd3cb320ed7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e57293568930c682e9a719e8eac16cbc = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bfb05b9bcf0690add98b11eb6122bc9c = $(`&lt;div id=&quot;html_bfb05b9bcf0690add98b11eb6122bc9c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 149&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 147.0 sqm&lt;br&gt;Intersecting area: 146.6 sqm&lt;/div&gt;`)[0];\n",
" popup_e57293568930c682e9a719e8eac16cbc.setContent(html_bfb05b9bcf0690add98b11eb6122bc9c);\n",
" \n",
" \n",
"\n",
" geo_json_08588a9b436f27572582ccd3cb320ed7.bindPopup(popup_e57293568930c682e9a719e8eac16cbc)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_08588a9b436f27572582ccd3cb320ed7.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_d377a1ecfde7e3dd00741825adf4651b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d377a1ecfde7e3dd00741825adf4651b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d377a1ecfde7e3dd00741825adf4651b = L.geoJson(null, {\n",
" onEachFeature: geo_json_d377a1ecfde7e3dd00741825adf4651b_onEachFeature,\n",
" \n",
" style: geo_json_d377a1ecfde7e3dd00741825adf4651b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d377a1ecfde7e3dd00741825adf4651b_add (data) {\n",
" geo_json_d377a1ecfde7e3dd00741825adf4651b\n",
" .addData(data);\n",
" }\n",
" geo_json_d377a1ecfde7e3dd00741825adf4651b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0830701022158546, 52.327641125241726], [-2.0829843732805107, 52.32766187660716], [-2.0829831007267456, 52.32766246546359], [-2.082982067645167, 52.32766320968275], [-2.0829639926285757, 52.32767950814862], [-2.082889969423088, 52.327679560270155], [-2.0828713844616247, 52.32763127982837], [-2.0829415790690273, 52.32758496687977], [-2.082942873972194, 52.32758377926254], [-2.0829434964802735, 52.32758240242538], [-2.0829433808203044, 52.327580976663455], [-2.082930045615725, 52.32755048322649], [-2.0829722784237323, 52.32753000348575], [-2.0829928254218104, 52.327512699066794], [-2.0830836137476427, 52.32752333068947], [-2.0830701022158546, 52.327641125241726]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d377a1ecfde7e3dd00741825adf4651b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3411c6e5dec41d00899b36b4385f69ee = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5fb161dc1bc2a5f053391f4199579331 = $(`&lt;div id=&quot;html_5fb161dc1bc2a5f053391f4199579331&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 150&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 175.0 sqm&lt;br&gt;Intersecting area: 175.2 sqm&lt;/div&gt;`)[0];\n",
" popup_3411c6e5dec41d00899b36b4385f69ee.setContent(html_5fb161dc1bc2a5f053391f4199579331);\n",
" \n",
" \n",
"\n",
" geo_json_d377a1ecfde7e3dd00741825adf4651b.bindPopup(popup_3411c6e5dec41d00899b36b4385f69ee)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d377a1ecfde7e3dd00741825adf4651b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4689471831a7501b706ca923a0da010d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4689471831a7501b706ca923a0da010d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4689471831a7501b706ca923a0da010d = L.geoJson(null, {\n",
" onEachFeature: geo_json_4689471831a7501b706ca923a0da010d_onEachFeature,\n",
" \n",
" style: geo_json_4689471831a7501b706ca923a0da010d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4689471831a7501b706ca923a0da010d_add (data) {\n",
" geo_json_4689471831a7501b706ca923a0da010d\n",
" .addData(data);\n",
" }\n",
" geo_json_4689471831a7501b706ca923a0da010d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0844181763620377, 52.32791195822964], [-2.0843732846063365, 52.32791223493227], [-2.084374970070519, 52.32789812092055], [-2.084374576113095, 52.327896982141695], [-2.0843737186642546, 52.327895944388885], [-2.084372455080219, 52.32789507504471], [-2.0843708705860498, 52.327894434278505], [-2.084369069432006, 52.32789406427537], [-2.0842808596974343, 52.327883456072136], [-2.084283301557704, 52.327862770585604], [-2.0843455720126642, 52.32786218210027], [-2.084347443919444, 52.32786195151141], [-2.084349155330376, 52.32786143424664], [-2.0843505903968773, 52.327860662759036], [-2.0843516523797563, 52.32785969195961], [-2.0843523350808826, 52.32785835373086], [-2.0843523133350277, 52.32785695307125], [-2.0843384280091968, 52.3278063140639], [-2.0843377391195705, 52.32780517819682], [-2.0843258495921106, 52.32779155308176], [-2.0843600696095725, 52.327782278569565], [-2.0843909032333343, 52.32781003977196], [-2.084391299652661, 52.32784091001555], [-2.084391666163331, 52.32784227716211], [-2.084392692729334, 52.32784351077592], [-2.084394595079648, 52.3278446259979], [-2.0844627652459264, 52.32787219770149], [-2.0844181763620377, 52.32791195822964]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4689471831a7501b706ca923a0da010d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_420ac33843e692ff032e60e87adfc73a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_20c495aa0e53946999ea5d24f78e7a50 = $(`&lt;div id=&quot;html_20c495aa0e53946999ea5d24f78e7a50&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 151&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 74.0 sqm&lt;br&gt;Intersecting area: 73.7 sqm&lt;/div&gt;`)[0];\n",
" popup_420ac33843e692ff032e60e87adfc73a.setContent(html_20c495aa0e53946999ea5d24f78e7a50);\n",
" \n",
" \n",
"\n",
" geo_json_4689471831a7501b706ca923a0da010d.bindPopup(popup_420ac33843e692ff032e60e87adfc73a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4689471831a7501b706ca923a0da010d.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_f54c6f21bfb842a3da61f962be1425b3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f54c6f21bfb842a3da61f962be1425b3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f54c6f21bfb842a3da61f962be1425b3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f54c6f21bfb842a3da61f962be1425b3_onEachFeature,\n",
" \n",
" style: geo_json_f54c6f21bfb842a3da61f962be1425b3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f54c6f21bfb842a3da61f962be1425b3_add (data) {\n",
" geo_json_f54c6f21bfb842a3da61f962be1425b3\n",
" .addData(data);\n",
" }\n",
" geo_json_f54c6f21bfb842a3da61f962be1425b3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0842803421716383, 52.328044568791924], [-2.084285297595152, 52.32803310095277], [-2.0843878540292606, 52.32803295559203], [-2.084607889439664, 52.32805080509346], [-2.084625682926509, 52.32806245079361], [-2.084292624777281, 52.32806268962634], [-2.0842803421716383, 52.328044568791924]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f54c6f21bfb842a3da61f962be1425b3.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7569bae991956c51f53729432159a51d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_796964ec0f6265692c75664abf0fdf57 = $(`&lt;div id=&quot;html_796964ec0f6265692c75664abf0fdf57&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 152&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 58.0 sqm&lt;br&gt;Intersecting area: 58.3 sqm&lt;/div&gt;`)[0];\n",
" popup_7569bae991956c51f53729432159a51d.setContent(html_796964ec0f6265692c75664abf0fdf57);\n",
" \n",
" \n",
"\n",
" geo_json_f54c6f21bfb842a3da61f962be1425b3.bindPopup(popup_7569bae991956c51f53729432159a51d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f54c6f21bfb842a3da61f962be1425b3.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_3e07af08dcac832ead671376debc93f9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3e07af08dcac832ead671376debc93f9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3e07af08dcac832ead671376debc93f9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3e07af08dcac832ead671376debc93f9_onEachFeature,\n",
" \n",
" style: geo_json_3e07af08dcac832ead671376debc93f9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3e07af08dcac832ead671376debc93f9_add (data) {\n",
" geo_json_3e07af08dcac832ead671376debc93f9\n",
" .addData(data);\n",
" }\n",
" geo_json_3e07af08dcac832ead671376debc93f9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0855771409338573, 52.32941226457909], [-2.0855301716491663, 52.329400589869344], [-2.0855311639390943, 52.32938179605169], [-2.085572467653448, 52.329362438040384], [-2.0855961158113896, 52.329357619195996], [-2.0855771409338573, 52.32941226457909]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3e07af08dcac832ead671376debc93f9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d97d558b2365a230d052e5232d299f91 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1bd4aeea7d36d51f7c722dcab0571179 = $(`&lt;div id=&quot;html_1bd4aeea7d36d51f7c722dcab0571179&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 153&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 16.0 sqm&lt;br&gt;Intersecting area: 16.1 sqm&lt;/div&gt;`)[0];\n",
" popup_d97d558b2365a230d052e5232d299f91.setContent(html_1bd4aeea7d36d51f7c722dcab0571179);\n",
" \n",
" \n",
"\n",
" geo_json_3e07af08dcac832ead671376debc93f9.bindPopup(popup_d97d558b2365a230d052e5232d299f91)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3e07af08dcac832ead671376debc93f9.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_8f2bd270a9f0ae0926a4d44e513419fa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8f2bd270a9f0ae0926a4d44e513419fa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8f2bd270a9f0ae0926a4d44e513419fa = L.geoJson(null, {\n",
" onEachFeature: geo_json_8f2bd270a9f0ae0926a4d44e513419fa_onEachFeature,\n",
" \n",
" style: geo_json_8f2bd270a9f0ae0926a4d44e513419fa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8f2bd270a9f0ae0926a4d44e513419fa_add (data) {\n",
" geo_json_8f2bd270a9f0ae0926a4d44e513419fa\n",
" .addData(data);\n",
" }\n",
" geo_json_8f2bd270a9f0ae0926a4d44e513419fa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0855355384363676, 52.32946606962151], [-2.085489201099811, 52.32945719488603], [-2.0855006224807022, 52.32944230782812], [-2.0855046793392, 52.329426103658584], [-2.085552136138154, 52.32942808210532], [-2.0855355384363676, 52.32946606962151]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8f2bd270a9f0ae0926a4d44e513419fa.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7deb26543e209aadc731e97e22e0fd3b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0a8afcb3f55b8b376553979906ad09d9 = $(`&lt;div id=&quot;html_0a8afcb3f55b8b376553979906ad09d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 154&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.5 sqm&lt;/div&gt;`)[0];\n",
" popup_7deb26543e209aadc731e97e22e0fd3b.setContent(html_0a8afcb3f55b8b376553979906ad09d9);\n",
" \n",
" \n",
"\n",
" geo_json_8f2bd270a9f0ae0926a4d44e513419fa.bindPopup(popup_7deb26543e209aadc731e97e22e0fd3b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8f2bd270a9f0ae0926a4d44e513419fa.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_adaf7fbed1aa7291937ec3c2613734e9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_adaf7fbed1aa7291937ec3c2613734e9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_adaf7fbed1aa7291937ec3c2613734e9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_adaf7fbed1aa7291937ec3c2613734e9_onEachFeature,\n",
" \n",
" style: geo_json_adaf7fbed1aa7291937ec3c2613734e9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_adaf7fbed1aa7291937ec3c2613734e9_add (data) {\n",
" geo_json_adaf7fbed1aa7291937ec3c2613734e9\n",
" .addData(data);\n",
" }\n",
" geo_json_adaf7fbed1aa7291937ec3c2613734e9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.08547876429549, 52.329708858570086], [-2.085414347607931, 52.32969893787796], [-2.0854167469673155, 52.32966862750684], [-2.0854759306251975, 52.3296594784101], [-2.0855031569589433, 52.3296677943567], [-2.0855093183595073, 52.32968131202806], [-2.08547876429549, 52.329708858570086]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_adaf7fbed1aa7291937ec3c2613734e9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4d36a8b0936f9d06b89761551c4155ef = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4a42fe2038c07a5a697883a58118b814 = $(`&lt;div id=&quot;html_4a42fe2038c07a5a697883a58118b814&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 155&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 25.9 sqm&lt;/div&gt;`)[0];\n",
" popup_4d36a8b0936f9d06b89761551c4155ef.setContent(html_4a42fe2038c07a5a697883a58118b814);\n",
" \n",
" \n",
"\n",
" geo_json_adaf7fbed1aa7291937ec3c2613734e9.bindPopup(popup_4d36a8b0936f9d06b89761551c4155ef)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_adaf7fbed1aa7291937ec3c2613734e9.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ae77702d270f8c2569b192bc6258a116_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ae77702d270f8c2569b192bc6258a116_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ae77702d270f8c2569b192bc6258a116 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ae77702d270f8c2569b192bc6258a116_onEachFeature,\n",
" \n",
" style: geo_json_ae77702d270f8c2569b192bc6258a116_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ae77702d270f8c2569b192bc6258a116_add (data) {\n",
" geo_json_ae77702d270f8c2569b192bc6258a116\n",
" .addData(data);\n",
" }\n",
" geo_json_ae77702d270f8c2569b192bc6258a116_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0855086112194705, 52.33004101275047], [-2.08546108721652, 52.330041047241394], [-2.085471986468242, 52.33001862768498], [-2.0855085549059926, 52.33001189715984], [-2.0855086112194705, 52.33004101275047]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ae77702d270f8c2569b192bc6258a116.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_aabb8440d8337edb117986544f941321 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7fca54bc383a163618538ebf27a13c1c = $(`&lt;div id=&quot;html_7fca54bc383a163618538ebf27a13c1c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 156&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.1 sqm&lt;/div&gt;`)[0];\n",
" popup_aabb8440d8337edb117986544f941321.setContent(html_7fca54bc383a163618538ebf27a13c1c);\n",
" \n",
" \n",
"\n",
" geo_json_ae77702d270f8c2569b192bc6258a116.bindPopup(popup_aabb8440d8337edb117986544f941321)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ae77702d270f8c2569b192bc6258a116.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5_onEachFeature,\n",
" \n",
" style: geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5_add (data) {\n",
" geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5\n",
" .addData(data);\n",
" }\n",
" geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0853302750771583, 52.33006010958212], [-2.0852968095038147, 52.33005735944937], [-2.085296970718261, 52.33003063329373], [-2.08531566673411, 52.33002811328813], [-2.085347986574375, 52.33003104494963], [-2.0853302750771583, 52.33006010958212]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8128b1daf0aef7b0275727eac83fce2a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_552db8a7026c9be66f2b75086baccd96 = $(`&lt;div id=&quot;html_552db8a7026c9be66f2b75086baccd96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 157&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.6 sqm&lt;/div&gt;`)[0];\n",
" popup_8128b1daf0aef7b0275727eac83fce2a.setContent(html_552db8a7026c9be66f2b75086baccd96);\n",
" \n",
" \n",
"\n",
" geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5.bindPopup(popup_8128b1daf0aef7b0275727eac83fce2a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ca0eef12c9eec1e7e7198f72eb2ffcb5.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_21cacef5497ce24088b6fe5775c99f6c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_21cacef5497ce24088b6fe5775c99f6c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_21cacef5497ce24088b6fe5775c99f6c = L.geoJson(null, {\n",
" onEachFeature: geo_json_21cacef5497ce24088b6fe5775c99f6c_onEachFeature,\n",
" \n",
" style: geo_json_21cacef5497ce24088b6fe5775c99f6c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_21cacef5497ce24088b6fe5775c99f6c_add (data) {\n",
" geo_json_21cacef5497ce24088b6fe5775c99f6c\n",
" .addData(data);\n",
" }\n",
" geo_json_21cacef5497ce24088b6fe5775c99f6c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0850278553029846, 52.3312461566857], [-2.0849375767511593, 52.331301126695], [-2.0849044138196215, 52.33130056174937], [-2.0848736826953087, 52.33127258665302], [-2.084873154216898, 52.331182294080264], [-2.084891321019081, 52.33116144982291], [-2.08496607175676, 52.331161256575825], [-2.0850283834722343, 52.33120794800501], [-2.0850278553029846, 52.3312461566857]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_21cacef5497ce24088b6fe5775c99f6c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b060468d2ba135a40153409209eb6ffc = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_027db4b805c795de2b8225ea778b5c58 = $(`&lt;div id=&quot;html_027db4b805c795de2b8225ea778b5c58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 158&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 129.0 sqm&lt;br&gt;Intersecting area: 24.2 sqm&lt;/div&gt;`)[0];\n",
" popup_b060468d2ba135a40153409209eb6ffc.setContent(html_027db4b805c795de2b8225ea778b5c58);\n",
" \n",
" \n",
"\n",
" geo_json_21cacef5497ce24088b6fe5775c99f6c.bindPopup(popup_b060468d2ba135a40153409209eb6ffc)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_21cacef5497ce24088b6fe5775c99f6c.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_321a8da8bad1fe1b5307ccc79ae17102_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_321a8da8bad1fe1b5307ccc79ae17102_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_321a8da8bad1fe1b5307ccc79ae17102 = L.geoJson(null, {\n",
" onEachFeature: geo_json_321a8da8bad1fe1b5307ccc79ae17102_onEachFeature,\n",
" \n",
" style: geo_json_321a8da8bad1fe1b5307ccc79ae17102_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_321a8da8bad1fe1b5307ccc79ae17102_add (data) {\n",
" geo_json_321a8da8bad1fe1b5307ccc79ae17102\n",
" .addData(data);\n",
" }\n",
" geo_json_321a8da8bad1fe1b5307ccc79ae17102_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.081764096187342, 52.32815607595517], [-2.081730333542267, 52.32815682849554], [-2.0816403646190573, 52.32811130163563], [-2.0816244283681944, 52.32807357185352], [-2.081628805015767, 52.32806456604105], [-2.081792097120642, 52.32806445274484], [-2.081823150916399, 52.32811045646217], [-2.081764096187342, 52.32815607595517]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_321a8da8bad1fe1b5307ccc79ae17102.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b7808c606a98875593ab6543a052ad2d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ebd4907d65ee5507a8085b21bc0d7aca = $(`&lt;div id=&quot;html_ebd4907d65ee5507a8085b21bc0d7aca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 159&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 100.0 sqm&lt;br&gt;Intersecting area: 99.6 sqm&lt;/div&gt;`)[0];\n",
" popup_b7808c606a98875593ab6543a052ad2d.setContent(html_ebd4907d65ee5507a8085b21bc0d7aca);\n",
" \n",
" \n",
"\n",
" geo_json_321a8da8bad1fe1b5307ccc79ae17102.bindPopup(popup_b7808c606a98875593ab6543a052ad2d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_321a8da8bad1fe1b5307ccc79ae17102.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_7b7c00b595a8708c409a3a64be0d2262_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7b7c00b595a8708c409a3a64be0d2262_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7b7c00b595a8708c409a3a64be0d2262 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7b7c00b595a8708c409a3a64be0d2262_onEachFeature,\n",
" \n",
" style: geo_json_7b7c00b595a8708c409a3a64be0d2262_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7b7c00b595a8708c409a3a64be0d2262_add (data) {\n",
" geo_json_7b7c00b595a8708c409a3a64be0d2262\n",
" .addData(data);\n",
" }\n",
" geo_json_7b7c00b595a8708c409a3a64be0d2262_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082124661005258, 52.32828154392672], [-2.0821093746641246, 52.328270859852516], [-2.0821228326602226, 52.328249947372804], [-2.0821596470117703, 52.32824261716448], [-2.0821742923523883, 52.32827237527322], [-2.082124661005258, 52.32828154392672]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7b7c00b595a8708c409a3a64be0d2262.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_49011a827456d9cc079bb4240d4b85f8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b94cb8a51ff9ef9e7982d14828e28d28 = $(`&lt;div id=&quot;html_b94cb8a51ff9ef9e7982d14828e28d28&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 160&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_49011a827456d9cc079bb4240d4b85f8.setContent(html_b94cb8a51ff9ef9e7982d14828e28d28);\n",
" \n",
" \n",
"\n",
" geo_json_7b7c00b595a8708c409a3a64be0d2262.bindPopup(popup_49011a827456d9cc079bb4240d4b85f8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7b7c00b595a8708c409a3a64be0d2262.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_40707206978780e0c28b29ff833547ea_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_40707206978780e0c28b29ff833547ea_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_40707206978780e0c28b29ff833547ea = L.geoJson(null, {\n",
" onEachFeature: geo_json_40707206978780e0c28b29ff833547ea_onEachFeature,\n",
" \n",
" style: geo_json_40707206978780e0c28b29ff833547ea_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_40707206978780e0c28b29ff833547ea_add (data) {\n",
" geo_json_40707206978780e0c28b29ff833547ea\n",
" .addData(data);\n",
" }\n",
" geo_json_40707206978780e0c28b29ff833547ea_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0818489385337675, 52.329010080764206], [-2.0818316170435174, 52.32897260909554], [-2.0818488959626498, 52.32895221542651], [-2.0818957513289718, 52.328952286239264], [-2.0819121414456543, 52.32900025279455], [-2.0818489385337675, 52.329010080764206]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_40707206978780e0c28b29ff833547ea.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_de6f2a1f9fd4d331649a412f926e31b6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_18d674ffb3674bc0c5c5738fccc5f173 = $(`&lt;div id=&quot;html_18d674ffb3674bc0c5c5738fccc5f173&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 161&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 26.2 sqm&lt;/div&gt;`)[0];\n",
" popup_de6f2a1f9fd4d331649a412f926e31b6.setContent(html_18d674ffb3674bc0c5c5738fccc5f173);\n",
" \n",
" \n",
"\n",
" geo_json_40707206978780e0c28b29ff833547ea.bindPopup(popup_de6f2a1f9fd4d331649a412f926e31b6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_40707206978780e0c28b29ff833547ea.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80_onEachFeature,\n",
" \n",
" style: geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80_add (data) {\n",
" geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80\n",
" .addData(data);\n",
" }\n",
" geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082085707051559, 52.329019780912255], [-2.08201292120135, 52.32901964372401], [-2.082022072725234, 52.32899084986089], [-2.082039068019338, 52.32897027385724], [-2.0820720380550086, 52.32896985981284], [-2.0821035871406535, 52.32898891950336], [-2.0821039150382377, 52.32900903392937], [-2.082085707051559, 52.329019780912255]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_70537f7e7361ca259dfd7464a29c188b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ecd5feac2571b2f7a6567ec3faf8776d = $(`&lt;div id=&quot;html_ecd5feac2571b2f7a6567ec3faf8776d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 162&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 27.0 sqm&lt;br&gt;Intersecting area: 27.4 sqm&lt;/div&gt;`)[0];\n",
" popup_70537f7e7361ca259dfd7464a29c188b.setContent(html_ecd5feac2571b2f7a6567ec3faf8776d);\n",
" \n",
" \n",
"\n",
" geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80.bindPopup(popup_70537f7e7361ca259dfd7464a29c188b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f323c5ce9f96ae2ee7018f5d9a5f0e80.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_2063016ebd8107c288e15508c73bd457_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2063016ebd8107c288e15508c73bd457_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2063016ebd8107c288e15508c73bd457 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2063016ebd8107c288e15508c73bd457_onEachFeature,\n",
" \n",
" style: geo_json_2063016ebd8107c288e15508c73bd457_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2063016ebd8107c288e15508c73bd457_add (data) {\n",
" geo_json_2063016ebd8107c288e15508c73bd457\n",
" .addData(data);\n",
" }\n",
" geo_json_2063016ebd8107c288e15508c73bd457_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.082902591505712, 52.330016821402424], [-2.0829012320656215, 52.330017281760334], [-2.0829000607690986, 52.3300179074027], [-2.0828991318553105, 52.33001867042252], [-2.082898372305198, 52.33001976326535], [-2.0828837229180217, 52.33006041912312], [-2.0828526684811717, 52.330079592775], [-2.0827455707050597, 52.33007069136432], [-2.082714097463084, 52.3300331191938], [-2.082729242545917, 52.329995367739855], [-2.082804361625333, 52.329967239485605], [-2.082857858817709, 52.329966879116554], [-2.0829116269535297, 52.329959194219406], [-2.0829407202110835, 52.330006966484255], [-2.082902591505712, 52.330016821402424]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2063016ebd8107c288e15508c73bd457.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4b235a008bfa7df75ef7bf8e36cf3207 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_be675e837aed969afcfc96ab11c3d28d = $(`&lt;div id=&quot;html_be675e837aed969afcfc96ab11c3d28d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 163&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 139.0 sqm&lt;br&gt;Intersecting area: 139.5 sqm&lt;/div&gt;`)[0];\n",
" popup_4b235a008bfa7df75ef7bf8e36cf3207.setContent(html_be675e837aed969afcfc96ab11c3d28d);\n",
" \n",
" \n",
"\n",
" geo_json_2063016ebd8107c288e15508c73bd457.bindPopup(popup_4b235a008bfa7df75ef7bf8e36cf3207)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2063016ebd8107c288e15508c73bd457.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_199f5cce52c75dd9b5e992813b1381ec_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_199f5cce52c75dd9b5e992813b1381ec_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_199f5cce52c75dd9b5e992813b1381ec = L.geoJson(null, {\n",
" onEachFeature: geo_json_199f5cce52c75dd9b5e992813b1381ec_onEachFeature,\n",
" \n",
" style: geo_json_199f5cce52c75dd9b5e992813b1381ec_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_199f5cce52c75dd9b5e992813b1381ec_add (data) {\n",
" geo_json_199f5cce52c75dd9b5e992813b1381ec\n",
" .addData(data);\n",
" }\n",
" geo_json_199f5cce52c75dd9b5e992813b1381ec_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0830681144155356, 52.330277782581824], [-2.0830100613112794, 52.33027703237319], [-2.0829952527123266, 52.33024694725145], [-2.083071955734918, 52.330237732171476], [-2.0830681144155356, 52.330277782581824]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_199f5cce52c75dd9b5e992813b1381ec.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ccbe44080915590e7b0e73034bfddc8e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_30b95006acfc05cff43564a72b3e1778 = $(`&lt;div id=&quot;html_30b95006acfc05cff43564a72b3e1778&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 164&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.1 sqm&lt;/div&gt;`)[0];\n",
" popup_ccbe44080915590e7b0e73034bfddc8e.setContent(html_30b95006acfc05cff43564a72b3e1778);\n",
" \n",
" \n",
"\n",
" geo_json_199f5cce52c75dd9b5e992813b1381ec.bindPopup(popup_ccbe44080915590e7b0e73034bfddc8e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_199f5cce52c75dd9b5e992813b1381ec.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_6c2f1863c434822cd142456a6e433799_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6c2f1863c434822cd142456a6e433799_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6c2f1863c434822cd142456a6e433799 = L.geoJson(null, {\n",
" onEachFeature: geo_json_6c2f1863c434822cd142456a6e433799_onEachFeature,\n",
" \n",
" style: geo_json_6c2f1863c434822cd142456a6e433799_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6c2f1863c434822cd142456a6e433799_add (data) {\n",
" geo_json_6c2f1863c434822cd142456a6e433799\n",
" .addData(data);\n",
" }\n",
" geo_json_6c2f1863c434822cd142456a6e433799_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0832483057890427, 52.33051973867434], [-2.083199949397362, 52.330518301149084], [-2.0831994526783024, 52.33049062880137], [-2.0832181812846673, 52.33048810460804], [-2.0832506507556725, 52.330490126029034], [-2.0832483057890427, 52.33051973867434]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6c2f1863c434822cd142456a6e433799.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5b47c23099dfb096389060655eef033d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_acfddfe5c87c5f8b26f8ce4ecb3a28ed = $(`&lt;div id=&quot;html_acfddfe5c87c5f8b26f8ce4ecb3a28ed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 165&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.3 sqm&lt;/div&gt;`)[0];\n",
" popup_5b47c23099dfb096389060655eef033d.setContent(html_acfddfe5c87c5f8b26f8ce4ecb3a28ed);\n",
" \n",
" \n",
"\n",
" geo_json_6c2f1863c434822cd142456a6e433799.bindPopup(popup_5b47c23099dfb096389060655eef033d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6c2f1863c434822cd142456a6e433799.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_74c3ffb5d31955e4e547703f5496a7c9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_74c3ffb5d31955e4e547703f5496a7c9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_74c3ffb5d31955e4e547703f5496a7c9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_74c3ffb5d31955e4e547703f5496a7c9_onEachFeature,\n",
" \n",
" style: geo_json_74c3ffb5d31955e4e547703f5496a7c9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_74c3ffb5d31955e4e547703f5496a7c9_add (data) {\n",
" geo_json_74c3ffb5d31955e4e547703f5496a7c9\n",
" .addData(data);\n",
" }\n",
" geo_json_74c3ffb5d31955e4e547703f5496a7c9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084246621968496, 52.33066331955635], [-2.084213488876286, 52.33066275439552], [-2.084183043809009, 52.330635037829765], [-2.0841975384346565, 52.330606108727466], [-2.084216696712252, 52.330604209786856], [-2.084264762506199, 52.330598628465744], [-2.0842789389349674, 52.33064298220836], [-2.084246621968496, 52.33066331955635]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_74c3ffb5d31955e4e547703f5496a7c9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d5663f2026f5016ce6b86341871e2e54 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0fa24a450dd4d724955860718fe19315 = $(`&lt;div id=&quot;html_0fa24a450dd4d724955860718fe19315&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 166&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 34.0 sqm&lt;br&gt;Intersecting area: 34.4 sqm&lt;/div&gt;`)[0];\n",
" popup_d5663f2026f5016ce6b86341871e2e54.setContent(html_0fa24a450dd4d724955860718fe19315);\n",
" \n",
" \n",
"\n",
" geo_json_74c3ffb5d31955e4e547703f5496a7c9.bindPopup(popup_d5663f2026f5016ce6b86341871e2e54)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_74c3ffb5d31955e4e547703f5496a7c9.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4c78e5fea54a6237d53f615911522539_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4c78e5fea54a6237d53f615911522539_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4c78e5fea54a6237d53f615911522539 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4c78e5fea54a6237d53f615911522539_onEachFeature,\n",
" \n",
" style: geo_json_4c78e5fea54a6237d53f615911522539_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4c78e5fea54a6237d53f615911522539_add (data) {\n",
" geo_json_4c78e5fea54a6237d53f615911522539\n",
" .addData(data);\n",
" }\n",
" geo_json_4c78e5fea54a6237d53f615911522539_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0819818841537563, 52.329190428620876], [-2.081920975480513, 52.32917146933887], [-2.081919816526509, 52.329134411679405], [-2.0819654232804288, 52.3291051726115], [-2.081996802222714, 52.32910446751615], [-2.082030773390246, 52.32911527164162], [-2.0820456565263123, 52.329160773220735], [-2.0819818841537563, 52.329190428620876]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4c78e5fea54a6237d53f615911522539.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_07d0403ae897c4f90542d4c2b76f9625 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0bfc5cfa888875afe32e3b7efcd89a66 = $(`&lt;div id=&quot;html_0bfc5cfa888875afe32e3b7efcd89a66&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 167&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 60.0 sqm&lt;br&gt;Intersecting area: 59.6 sqm&lt;/div&gt;`)[0];\n",
" popup_07d0403ae897c4f90542d4c2b76f9625.setContent(html_0bfc5cfa888875afe32e3b7efcd89a66);\n",
" \n",
" \n",
"\n",
" geo_json_4c78e5fea54a6237d53f615911522539.bindPopup(popup_07d0403ae897c4f90542d4c2b76f9625)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4c78e5fea54a6237d53f615911522539.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_e9d64870c2e12ea27d50dc8e6e21092e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e9d64870c2e12ea27d50dc8e6e21092e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e9d64870c2e12ea27d50dc8e6e21092e = L.geoJson(null, {\n",
" onEachFeature: geo_json_e9d64870c2e12ea27d50dc8e6e21092e_onEachFeature,\n",
" \n",
" style: geo_json_e9d64870c2e12ea27d50dc8e6e21092e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e9d64870c2e12ea27d50dc8e6e21092e_add (data) {\n",
" geo_json_e9d64870c2e12ea27d50dc8e6e21092e\n",
" .addData(data);\n",
" }\n",
" geo_json_e9d64870c2e12ea27d50dc8e6e21092e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084215276538588, 52.33071683989222], [-2.084211901678558, 52.33069695241179], [-2.0842159783943446, 52.3306854726186], [-2.0842611483508335, 52.330685712716765], [-2.084263607026348, 52.33071533453103], [-2.084215276538588, 52.33071683989222]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e9d64870c2e12ea27d50dc8e6e21092e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5957bfd1ab3477c2073dca6ee58fd4d3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4affcceec342f9bccf303c861e83d351 = $(`&lt;div id=&quot;html_4affcceec342f9bccf303c861e83d351&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 168&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.3 sqm&lt;/div&gt;`)[0];\n",
" popup_5957bfd1ab3477c2073dca6ee58fd4d3.setContent(html_4affcceec342f9bccf303c861e83d351);\n",
" \n",
" \n",
"\n",
" geo_json_e9d64870c2e12ea27d50dc8e6e21092e.bindPopup(popup_5957bfd1ab3477c2073dca6ee58fd4d3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e9d64870c2e12ea27d50dc8e6e21092e.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_a28c88c27713b10dbfdc680cfeeaddd0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a28c88c27713b10dbfdc680cfeeaddd0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a28c88c27713b10dbfdc680cfeeaddd0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a28c88c27713b10dbfdc680cfeeaddd0_onEachFeature,\n",
" \n",
" style: geo_json_a28c88c27713b10dbfdc680cfeeaddd0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a28c88c27713b10dbfdc680cfeeaddd0_add (data) {\n",
" geo_json_a28c88c27713b10dbfdc680cfeeaddd0\n",
" .addData(data);\n",
" }\n",
" geo_json_a28c88c27713b10dbfdc680cfeeaddd0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.084783102756333, 52.32810984086092], [-2.084749906614851, 52.328092997350254], [-2.084748235533493, 52.32809235935213], [-2.08474634638476, 52.32809201638669], [-2.0844315628942676, 52.32808322439888], [-2.0844127061845734, 52.328071113741615], [-2.084417319457, 52.32806260031897], [-2.0845209531308826, 52.32806252599552], [-2.084761088109303, 52.32806860700593], [-2.084762980684377, 52.328068442018846], [-2.084798759359454, 52.32806232631148], [-2.084819842369678, 52.32806231113057], [-2.0848583459058183, 52.32807759818804], [-2.084859895327725, 52.3281081187764], [-2.084783102756333, 52.32810984086092]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a28c88c27713b10dbfdc680cfeeaddd0.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8e1f0e4a010825fc00c13effc5a4a312 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0d2a950248883b3ebbaa577ca3845c10 = $(`&lt;div id=&quot;html_0d2a950248883b3ebbaa577ca3845c10&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 169&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 91.0 sqm&lt;br&gt;Intersecting area: 90.5 sqm&lt;/div&gt;`)[0];\n",
" popup_8e1f0e4a010825fc00c13effc5a4a312.setContent(html_0d2a950248883b3ebbaa577ca3845c10);\n",
" \n",
" \n",
"\n",
" geo_json_a28c88c27713b10dbfdc680cfeeaddd0.bindPopup(popup_8e1f0e4a010825fc00c13effc5a4a312)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a28c88c27713b10dbfdc680cfeeaddd0.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4a4426b55a4113ce5981443b251870c0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4a4426b55a4113ce5981443b251870c0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4a4426b55a4113ce5981443b251870c0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4a4426b55a4113ce5981443b251870c0_onEachFeature,\n",
" \n",
" style: geo_json_4a4426b55a4113ce5981443b251870c0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4a4426b55a4113ce5981443b251870c0_add (data) {\n",
" geo_json_4a4426b55a4113ce5981443b251870c0\n",
" .addData(data);\n",
" }\n",
" geo_json_4a4426b55a4113ce5981443b251870c0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.083641366870327, 52.32808328835737], [-2.08355220544411, 52.32811970348746], [-2.0833829940751625, 52.32813785953463], [-2.0833809408598873, 52.328138438157936], [-2.083379042734146, 52.32813955608247], [-2.0833621879515336, 52.32815555527584], [-2.0833028374162557, 52.32816486166253], [-2.0832223337062694, 52.32816501476838], [-2.083219977573424, 52.32816525737181], [-2.0832181957604234, 52.32816580703143], [-2.083156517081776, 52.328191818770016], [-2.083061058638003, 52.32820093475802], [-2.0830589346649973, 52.328201347108404], [-2.0830576751110366, 52.32820183167], [-2.083056367739304, 52.3282026399102], [-2.083038051822287, 52.328218905294], [-2.0829321718896345, 52.32821698138239], [-2.082948416383599, 52.32816889398427], [-2.0830510371053133, 52.328141878058474], [-2.0831906175388357, 52.328132746203664], [-2.0831931170834617, 52.328132297623156], [-2.083194378093171, 52.328131807666225], [-2.0832955281836267, 52.328082930212545], [-2.0832966283827594, 52.32808198097141], [-2.0832972954430695, 52.32808088998724], [-2.0833023909000774, 52.32806339416793], [-2.083406310724497, 52.32806332061979], [-2.0834223362855098, 52.32809314502119], [-2.0834232406332087, 52.32809416207214], [-2.0834245393689117, 52.32809500442862], [-2.083426495219685, 52.32809570517912], [-2.083428329952253, 52.328095986173345], [-2.0834309651320133, 52.328095880916194], [-2.0834842295587337, 52.32808768187783], [-2.083486068778112, 52.32808723016251], [-2.0834881723623107, 52.328086130069686], [-2.0835180486250913, 52.32806324143651], [-2.083604258893468, 52.328063180271215], [-2.083643177006831, 52.32806436271576], [-2.083641366870327, 52.32808328835737]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4a4426b55a4113ce5981443b251870c0.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f475df61b1722c07e4a3314d2db1f6f1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6544f9b2b7088c3e8e7a58870bee030c = $(`&lt;div id=&quot;html_6544f9b2b7088c3e8e7a58870bee030c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 170&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 311.0 sqm&lt;br&gt;Intersecting area: 310.5 sqm&lt;/div&gt;`)[0];\n",
" popup_f475df61b1722c07e4a3314d2db1f6f1.setContent(html_6544f9b2b7088c3e8e7a58870bee030c);\n",
" \n",
" \n",
"\n",
" geo_json_4a4426b55a4113ce5981443b251870c0.bindPopup(popup_f475df61b1722c07e4a3314d2db1f6f1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4a4426b55a4113ce5981443b251870c0.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_00c52a1fea8216b247deea8beb7b00a0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_00c52a1fea8216b247deea8beb7b00a0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_00c52a1fea8216b247deea8beb7b00a0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_00c52a1fea8216b247deea8beb7b00a0_onEachFeature,\n",
" \n",
" style: geo_json_00c52a1fea8216b247deea8beb7b00a0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_00c52a1fea8216b247deea8beb7b00a0_add (data) {\n",
" geo_json_00c52a1fea8216b247deea8beb7b00a0\n",
" .addData(data);\n",
" }\n",
" geo_json_00c52a1fea8216b247deea8beb7b00a0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0855214068841974, 52.328179272377355], [-2.08546309461745, 52.32818955543161], [-2.085461069462614, 52.32819021678135], [-2.0854592640061016, 52.32819142547201], [-2.085458593582489, 52.328192270139375], [-2.0854581805353796, 52.328193415788895], [-2.085458264971557, 52.32819458715017], [-2.0854588423388076, 52.32819570600843], [-2.0854775382607227, 52.32821479390529], [-2.0854579991413744, 52.32824381044356], [-2.0853390344339418, 52.3282167445197], [-2.0853224299125244, 52.32817046244842], [-2.0853812230135844, 52.328087749626526], [-2.08542302237954, 52.32806805597266], [-2.0854897840630437, 52.32806182677734], [-2.0855214364531416, 52.32806180379937], [-2.0855507203112262, 52.328079869902034], [-2.0855214068841974, 52.328179272377355]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_00c52a1fea8216b247deea8beb7b00a0.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a0da65f5660c936d9d385f112eedf584 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9e64288f04761b340562bf552fd5a002 = $(`&lt;div id=&quot;html_9e64288f04761b340562bf552fd5a002&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 171&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 208.0 sqm&lt;br&gt;Intersecting area: 207.7 sqm&lt;/div&gt;`)[0];\n",
" popup_a0da65f5660c936d9d385f112eedf584.setContent(html_9e64288f04761b340562bf552fd5a002);\n",
" \n",
" \n",
"\n",
" geo_json_00c52a1fea8216b247deea8beb7b00a0.bindPopup(popup_a0da65f5660c936d9d385f112eedf584)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_00c52a1fea8216b247deea8beb7b00a0.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_1d17ec1a546bfc77ee9eaff668a40d25_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1d17ec1a546bfc77ee9eaff668a40d25_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1d17ec1a546bfc77ee9eaff668a40d25 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1d17ec1a546bfc77ee9eaff668a40d25_onEachFeature,\n",
" \n",
" style: geo_json_1d17ec1a546bfc77ee9eaff668a40d25_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1d17ec1a546bfc77ee9eaff668a40d25_add (data) {\n",
" geo_json_1d17ec1a546bfc77ee9eaff668a40d25\n",
" .addData(data);\n",
" }\n",
" geo_json_1d17ec1a546bfc77ee9eaff668a40d25_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0851100209051667, 52.32857639116145], [-2.085074027675742, 52.3285771957136], [-2.0850721617947654, 52.32857751711379], [-2.085070199909006, 52.3285782791008], [-2.0850687258392373, 52.328579378767046], [-2.085067886120638, 52.32858070542722], [-2.0850677235949977, 52.32858165131113], [-2.0850677615260085, 52.32859602660077], [-2.085068133586583, 52.328597213037156], [-2.0850692380487406, 52.32859849244519], [-2.0850703208606753, 52.32859919649541], [-2.085125832000852, 52.32862826572996], [-2.0850942511323094, 52.32867557246544], [-2.0850747280322857, 52.3286750201846], [-2.0850159891672795, 52.32863020333685], [-2.085000617655883, 52.32858022267025], [-2.085000169818681, 52.328579312289115], [-2.0849994198530397, 52.3285784794395], [-2.08499810927009, 52.32857760473886], [-2.0849964704579373, 52.32857697031769], [-2.0849575197890755, 52.32856749578487], [-2.0849128695660624, 52.328531140178754], [-2.0849120466838973, 52.32849921480209], [-2.0849118747382653, 52.328498314107186], [-2.0849114108636373, 52.328497453181896], [-2.084910212759258, 52.32849631139225], [-2.08486809871533, 52.32846706608183], [-2.08486783659658, 52.32841307657219], [-2.084872272080107, 52.32840141039648], [-2.0849331684245596, 52.32840162182506], [-2.0851111817420787, 52.32849261521601], [-2.0851407229830836, 52.32854750236572], [-2.0851100209051667, 52.32857639116145]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1d17ec1a546bfc77ee9eaff668a40d25.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_eefcb8e97694b527e12b8640cfacc163 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a54ad83086319b0ecd40b43f122255d1 = $(`&lt;div id=&quot;html_a54ad83086319b0ecd40b43f122255d1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 172&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 282.0 sqm&lt;br&gt;Intersecting area: 281.9 sqm&lt;/div&gt;`)[0];\n",
" popup_eefcb8e97694b527e12b8640cfacc163.setContent(html_a54ad83086319b0ecd40b43f122255d1);\n",
" \n",
" \n",
"\n",
" geo_json_1d17ec1a546bfc77ee9eaff668a40d25.bindPopup(popup_eefcb8e97694b527e12b8640cfacc163)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1d17ec1a546bfc77ee9eaff668a40d25.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_51ce3115546c24c1237647be1e353266_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_51ce3115546c24c1237647be1e353266_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_51ce3115546c24c1237647be1e353266 = L.geoJson(null, {\n",
" onEachFeature: geo_json_51ce3115546c24c1237647be1e353266_onEachFeature,\n",
" \n",
" style: geo_json_51ce3115546c24c1237647be1e353266_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_51ce3115546c24c1237647be1e353266_add (data) {\n",
" geo_json_51ce3115546c24c1237647be1e353266\n",
" .addData(data);\n",
" }\n",
" geo_json_51ce3115546c24c1237647be1e353266_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0863907009173643, 52.3280903174478], [-2.0863895281673277, 52.32809090356693], [-2.0863883766188813, 52.32809182320952], [-2.086387647963474, 52.32809289268056], [-2.086387401766903, 52.32809380806246], [-2.0863868658096507, 52.328134171723356], [-2.0862869055585342, 52.328198560834736], [-2.0862859517988093, 52.328199324799925], [-2.0862851674315017, 52.32820042397616], [-2.086284885085887, 52.328201611784145], [-2.086284342449065, 52.32823334127092], [-2.086211178943596, 52.328305272333104], [-2.086147455460587, 52.32831503196028], [-2.0861163423438214, 52.32826731678913], [-2.0861991531125006, 52.328247686362154], [-2.086201104832941, 52.328246996288684], [-2.0862028222132034, 52.328245779557584], [-2.0862610723645383, 52.3281563249471], [-2.086261344465309, 52.32815514703648], [-2.086261749231259, 52.328123443723], [-2.0863030036020778, 52.32810362249005], [-2.0863047723068044, 52.32810239313359], [-2.086305533232363, 52.32810131555439], [-2.086319742105294, 52.328070706119675], [-2.0863238424602706, 52.32806121846263], [-2.086415363087137, 52.328061151354206], [-2.086415905062941, 52.32808018678849], [-2.0863907009173643, 52.3280903174478]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_51ce3115546c24c1237647be1e353266.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f38ac4b6eba38822f74f4c722ae90bf0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_af53b4ea361a73519bb6f1349769bcca = $(`&lt;div id=&quot;html_af53b4ea361a73519bb6f1349769bcca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 173&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 167.0 sqm&lt;br&gt;Intersecting area: 167.3 sqm&lt;/div&gt;`)[0];\n",
" popup_f38ac4b6eba38822f74f4c722ae90bf0.setContent(html_af53b4ea361a73519bb6f1349769bcca);\n",
" \n",
" \n",
"\n",
" geo_json_51ce3115546c24c1237647be1e353266.bindPopup(popup_f38ac4b6eba38822f74f4c722ae90bf0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_51ce3115546c24c1237647be1e353266.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_25c8347b06ff1bd25085295e9fd8c736_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_25c8347b06ff1bd25085295e9fd8c736_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_25c8347b06ff1bd25085295e9fd8c736 = L.geoJson(null, {\n",
" onEachFeature: geo_json_25c8347b06ff1bd25085295e9fd8c736_onEachFeature,\n",
" \n",
" style: geo_json_25c8347b06ff1bd25085295e9fd8c736_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_25c8347b06ff1bd25085295e9fd8c736_add (data) {\n",
" geo_json_25c8347b06ff1bd25085295e9fd8c736\n",
" .addData(data);\n",
" }\n",
" geo_json_25c8347b06ff1bd25085295e9fd8c736_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0865475080950033, 52.32825174980617], [-2.086510380961156, 52.32826084279004], [-2.086508740221748, 52.32826148139942], [-2.0865076615874854, 52.32826216904484], [-2.086506844384803, 52.328262980559934], [-2.0865063252283287, 52.328263879959614], [-2.0865061279850283, 52.328265064113204], [-2.0865064457691416, 52.32826623889901], [-2.0865342232501867, 52.32832183272647], [-2.086506775449154, 52.328342493469926], [-2.0865059332533815, 52.32834328432782], [-2.0865053803126954, 52.32834416487297], [-2.086490536188791, 52.32843032249726], [-2.0864630811693465, 52.328450342234454], [-2.0864620559265683, 52.328451324716035], [-2.0864615558143247, 52.3284522070184], [-2.086446625283335, 52.328574538537744], [-2.086404041588639, 52.328612633353764], [-2.086403264172032, 52.328613532046425], [-2.0863731214677474, 52.32868273907632], [-2.0863188902781884, 52.328701676212354], [-2.0863176587305965, 52.328702216525876], [-2.086316416100139, 52.32870309038646], [-2.0863155787866505, 52.32870412936698], [-2.0863151867284313, 52.328705497963504], [-2.08631394546932, 52.328746159713184], [-2.086229925824929, 52.3287829210093], [-2.0862283150529106, 52.32878388683861], [-2.0862275403458486, 52.32878467854102], [-2.0862270475387894, 52.32878555095148], [-2.0862110770252493, 52.328827196220544], [-2.086157734555375, 52.32883696174019], [-2.086155273812864, 52.328837747482005], [-2.086153673531358, 52.32883882747879], [-2.0861088395724887, 52.32888131014929], [-2.08606034920738, 52.328899129084775], [-2.086043330614494, 52.32887810896485], [-2.086122016346097, 52.32877791330963], [-2.086122611423148, 52.3287768106763], [-2.0861227250855583, 52.328775651757], [-2.0861222176619707, 52.32877429460883], [-2.086102229504566, 52.328743684134096], [-2.0861277810614154, 52.32873314333136], [-2.0861289772420855, 52.3287325275284], [-2.086129932506356, 52.328731770756825], [-2.0861307256961488, 52.328730678764316], [-2.086146371749641, 52.32869796100371], [-2.0861851607165884, 52.32868827536702], [-2.0861864789392985, 52.328687786232265], [-2.086187601692945, 52.32868713901691], [-2.0861889518395493, 52.32868571488228], [-2.0861893139629326, 52.328684795819385], [-2.0862036861206237, 52.32861813471379], [-2.0862611808117015, 52.328561643207074], [-2.086261981349101, 52.328560558401605], [-2.0862769531167453, 52.328492189609705], [-2.086303642254055, 52.3284811795488], [-2.086304791533678, 52.328480593443466], [-2.0863059152250303, 52.32847968101553], [-2.0863641725656583, 52.328399111362735], [-2.08636452938115, 52.328397734702506], [-2.0863646755856675, 52.328348632861015], [-2.0863902658211626, 52.32833776023816], [-2.086391389998989, 52.32833709953332], [-2.086392260070796, 52.32833630775555], [-2.08639306255418, 52.32833471860318], [-2.086392867084087, 52.32833305915383], [-2.086379879221018, 52.32830292456604], [-2.0864350335299497, 52.32827456679439], [-2.0864365120833206, 52.328273531839315], [-2.0864373053593224, 52.32827249198991], [-2.0864376534027698, 52.328271132419005], [-2.08643787204312, 52.32820433242719], [-2.086487436626163, 52.32817503116958], [-2.086529605130494, 52.32816646580685], [-2.086547569683133, 52.328176012782], [-2.086563632079455, 52.328231796810535], [-2.0865475080950033, 52.32825174980617]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_25c8347b06ff1bd25085295e9fd8c736.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_558fbf1b5ba7bf4c123c420129127cb5 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d19a49f342c8ebfc9b7d71b0fe61a1e0 = $(`&lt;div id=&quot;html_d19a49f342c8ebfc9b7d71b0fe61a1e0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 174&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 786.0 sqm&lt;br&gt;Intersecting area: 785.8 sqm&lt;/div&gt;`)[0];\n",
" popup_558fbf1b5ba7bf4c123c420129127cb5.setContent(html_d19a49f342c8ebfc9b7d71b0fe61a1e0);\n",
" \n",
" \n",
"\n",
" geo_json_25c8347b06ff1bd25085295e9fd8c736.bindPopup(popup_558fbf1b5ba7bf4c123c420129127cb5)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_25c8347b06ff1bd25085295e9fd8c736.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_760c65688b19d61d42e470a8549dfc86_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_760c65688b19d61d42e470a8549dfc86_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_760c65688b19d61d42e470a8549dfc86 = L.geoJson(null, {\n",
" onEachFeature: geo_json_760c65688b19d61d42e470a8549dfc86_onEachFeature,\n",
" \n",
" style: geo_json_760c65688b19d61d42e470a8549dfc86_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_760c65688b19d61d42e470a8549dfc86_add (data) {\n",
" geo_json_760c65688b19d61d42e470a8549dfc86\n",
" .addData(data);\n",
" }\n",
" geo_json_760c65688b19d61d42e470a8549dfc86_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0859120798142796, 52.32882055876241], [-2.085875918768338, 52.32886500027679], [-2.0858753556539784, 52.32886594465766], [-2.0858169413661725, 52.32905995870297], [-2.085765969407032, 52.32915346415513], [-2.0857586277847435, 52.3292577404355], [-2.0856857546146745, 52.329432329935265], [-2.0856856955122285, 52.32952676294422], [-2.0856376965805823, 52.32953813897638], [-2.0856190002760675, 52.329505534357615], [-2.0856178914264714, 52.32950428193099], [-2.08561619907949, 52.329503305028965], [-2.0856137149421983, 52.32950264246179], [-2.085589302496702, 52.32950003866185], [-2.0855888649220478, 52.32944683053593], [-2.0856297771614516, 52.32942610717666], [-2.0856310946739307, 52.32942523686994], [-2.0856319936251007, 52.32942418615933], [-2.085632412532355, 52.329423027918956], [-2.085632322192497, 52.32942184308018], [-2.085618551212457, 52.32937518590601], [-2.085642039525164, 52.32937193595687], [-2.085644108905109, 52.32937135458621], [-2.0856457887288, 52.32937041299122], [-2.0856469162844813, 52.329369201194226], [-2.0856473832033124, 52.32936783614231], [-2.0856472736008356, 52.32935367756887], [-2.085646544617975, 52.32935232597705], [-2.085645161574571, 52.329351181633065], [-2.0856432640988234, 52.32935036040773], [-2.085641041640407, 52.329349943081986], [-2.085590428912372, 52.32934891633165], [-2.085574049149387, 52.32931145441832], [-2.0855908487448143, 52.3292822924148], [-2.0856565498402184, 52.32927303690074], [-2.08565828928697, 52.3292725780352], [-2.0856600367051796, 52.32927169033236], [-2.0856610972428964, 52.32927072940797], [-2.0856617887546585, 52.32926940465201], [-2.085661802722389, 52.32923647357067], [-2.0856612010006934, 52.329234910612904], [-2.0856597412862046, 52.32923357843187], [-2.085658589703761, 52.32923298681281], [-2.0856572652672862, 52.32923255175116], [-2.0855746015868752, 52.32921173841344], [-2.0856044845054833, 52.3291659305558], [-2.085650663025722, 52.32916492604215], [-2.0856528369220966, 52.329164523498704], [-2.085654704861883, 52.32916373370158], [-2.0856560894105884, 52.329162631396784], [-2.0856568572623715, 52.3291613227639], [-2.0856569890024517, 52.32916039757719], [-2.0856568067238554, 52.329159474419285], [-2.0856563178466563, 52.329158594635864], [-2.085655545912247, 52.32915779596839], [-2.085632370254522, 52.3291405813167], [-2.085632231106235, 52.329033133349604], [-2.085714804724784, 52.329021270965896], [-2.085716201006817, 52.32902092562512], [-2.085717451696868, 52.32902041227262], [-2.0857185054800733, 52.32901975342597], [-2.0857193169085524, 52.32901897697858], [-2.0857198537676283, 52.32901811532821], [-2.0857201024826106, 52.3290169733942], [-2.0857205814137934, 52.32895066139327], [-2.085790452390476, 52.32891346574803], [-2.0857919177086965, 52.328912399340936], [-2.0857927794943882, 52.32891110862208], [-2.0857929142800398, 52.32890948669427], [-2.0857802730059056, 52.328850636216245], [-2.085883677413994, 52.32879655228604], [-2.085917387049244, 52.32880605910546], [-2.0859120798142796, 52.32882055876241]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_760c65688b19d61d42e470a8549dfc86.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a58615a29c05d051c459597495eb5363 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_409d240f7b6b972966580876c7b3f8ba = $(`&lt;div id=&quot;html_409d240f7b6b972966580876c7b3f8ba&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 175&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 644.0 sqm&lt;br&gt;Intersecting area: 643.8 sqm&lt;/div&gt;`)[0];\n",
" popup_a58615a29c05d051c459597495eb5363.setContent(html_409d240f7b6b972966580876c7b3f8ba);\n",
" \n",
" \n",
"\n",
" geo_json_760c65688b19d61d42e470a8549dfc86.bindPopup(popup_a58615a29c05d051c459597495eb5363)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_760c65688b19d61d42e470a8549dfc86.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_9385c28ab55a318ee1e56117720fa4d5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9385c28ab55a318ee1e56117720fa4d5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9385c28ab55a318ee1e56117720fa4d5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9385c28ab55a318ee1e56117720fa4d5_onEachFeature,\n",
" \n",
" style: geo_json_9385c28ab55a318ee1e56117720fa4d5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9385c28ab55a318ee1e56117720fa4d5_add (data) {\n",
" geo_json_9385c28ab55a318ee1e56117720fa4d5\n",
" .addData(data);\n",
" }\n",
" geo_json_9385c28ab55a318ee1e56117720fa4d5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0849812858391115, 52.32901811649761], [-2.0849807676209515, 52.32901952473548], [-2.084981003701181, 52.32902096209844], [-2.084994585358906, 52.329051984640145], [-2.0849390383802855, 52.32908927107473], [-2.0849381197961936, 52.329090035903775], [-2.084937484606813, 52.32909090211839], [-2.084937120453347, 52.329092305748034], [-2.08493737804274, 52.32909348148152], [-2.084950992744784, 52.32912413900387], [-2.0849357991813315, 52.32915156015227], [-2.0848956607433027, 52.329170283294225], [-2.0848941086681365, 52.329171270638696], [-2.0848931131962627, 52.32917249761602], [-2.0848927694892296, 52.329173851786145], [-2.0848926209283385, 52.32922257603375], [-2.084849918529751, 52.32926100570981], [-2.0848491600994197, 52.32926188459462], [-2.084827256165078, 52.32932457009511], [-2.0848271607931883, 52.329326104790056], [-2.084834044491697, 52.32935751605603], [-2.0847624725055596, 52.32941371312174], [-2.0847614693588663, 52.329414770193814], [-2.084761028004137, 52.329415709984744], [-2.0847315930984114, 52.329519725196306], [-2.084686412280292, 52.32954766773541], [-2.084666577550322, 52.32954473501232], [-2.084664643614492, 52.329544793940684], [-2.084662802720741, 52.329545160264104], [-2.0846611810090834, 52.32954580962399], [-2.0846601199300774, 52.32954650262833], [-2.0846590305827215, 52.329547758444434], [-2.0846586512823184, 52.329548921149765], [-2.084658137242459, 52.329573976281885], [-2.0846140682751524, 52.32961017278701], [-2.084579684411821, 52.32961122146314], [-2.084532805975534, 52.32959024144619], [-2.084561891823399, 52.32945536950788], [-2.0846333596474813, 52.32940821766737], [-2.0846348067545497, 52.32940681146009], [-2.084678844518447, 52.32928471818767], [-2.0847187559637073, 52.329273791575844], [-2.0847206047798985, 52.32927296854123], [-2.0847221151002664, 52.32927162522273], [-2.084722590297884, 52.32927073574816], [-2.0847227558014647, 52.32926980514533], [-2.08472311321607, 52.32921204740549], [-2.0847948574278394, 52.32914709558771], [-2.0847955660990247, 52.32914628865539], [-2.0847959914253256, 52.32914541000641], [-2.0848251913044784, 52.32905065304419], [-2.0848817803055546, 52.329012666476885], [-2.0848828555629493, 52.32901172802484], [-2.084883507958146, 52.32901065412559], [-2.0848836969722218, 52.32900974418105], [-2.084884930680215, 52.3289782164868], [-2.0849077177518045, 52.32897666453992], [-2.0849095218826594, 52.328976267669574], [-2.084910804853039, 52.32897575160589], [-2.0849118850420667, 52.32897508285762], [-2.084912879466099, 52.328974077935804], [-2.0849134128974374, 52.328972950180635], [-2.084927461911308, 52.3289165310953], [-2.0849280620695962, 52.32888826909621], [-2.084961675130778, 52.32886897257958], [-2.0849940425528333, 52.32887878449578], [-2.085023985754586, 52.32891524688366], [-2.085024165446032, 52.32895298398123], [-2.0849812858391115, 52.32901811649761]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9385c28ab55a318ee1e56117720fa4d5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_418a776211017162e08e62cb8d8dcc4b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0dc98996db07e2133f7833383d847d09 = $(`&lt;div id=&quot;html_0dc98996db07e2133f7833383d847d09&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 176&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 779.0 sqm&lt;br&gt;Intersecting area: 779.1 sqm&lt;/div&gt;`)[0];\n",
" popup_418a776211017162e08e62cb8d8dcc4b.setContent(html_0dc98996db07e2133f7833383d847d09);\n",
" \n",
" \n",
"\n",
" geo_json_9385c28ab55a318ee1e56117720fa4d5.bindPopup(popup_418a776211017162e08e62cb8d8dcc4b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9385c28ab55a318ee1e56117720fa4d5.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_cf94678057017d5c091e00b60b46c0ce_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cf94678057017d5c091e00b60b46c0ce_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cf94678057017d5c091e00b60b46c0ce = L.geoJson(null, {\n",
" onEachFeature: geo_json_cf94678057017d5c091e00b60b46c0ce_onEachFeature,\n",
" \n",
" style: geo_json_cf94678057017d5c091e00b60b46c0ce_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cf94678057017d5c091e00b60b46c0ce_add (data) {\n",
" geo_json_cf94678057017d5c091e00b60b46c0ce\n",
" .addData(data);\n",
" }\n",
" geo_json_cf94678057017d5c091e00b60b46c0ce_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.085656339251742, 52.329689220859166], [-2.08560208256497, 52.32970033261969], [-2.085600404803302, 52.32970082829792], [-2.0855989857788666, 52.329701567427314], [-2.085597603153, 52.329702916957245], [-2.085563937063783, 52.329754138757906], [-2.085502187620091, 52.329742474773454], [-2.085530300041107, 52.32968540800566], [-2.0855306046294357, 52.32968432356978], [-2.0855305715335897, 52.32966797583225], [-2.0855300728438197, 52.3296665755196], [-2.0855288803851284, 52.32966534203649], [-2.0855277565255648, 52.32966467577904], [-2.0855264290030093, 52.32966417059378], [-2.085487557049093, 52.32965270305733], [-2.085502843751142, 52.3296333145023], [-2.0855191440292837, 52.32963268954087], [-2.0855206566262185, 52.32963253291119], [-2.085522418099795, 52.32963207313146], [-2.085523925206849, 52.32963135012617], [-2.085525255398953, 52.32963020470669], [-2.085525876902624, 52.32962909486828], [-2.085526021831323, 52.32962815978242], [-2.0855258483438086, 52.329627226728206], [-2.08552535943617, 52.32962633615432], [-2.0855245816114834, 52.3296255267046], [-2.0855015100935734, 52.329608391066905], [-2.0855151791442994, 52.32957810038523], [-2.085564945001919, 52.32956980405776], [-2.085597430486627, 52.329594786668615], [-2.0855985191479314, 52.329595462836465], [-2.085599815876378, 52.32959598332595], [-2.0856024067778343, 52.329596456126694], [-2.085656550694765, 52.32959991934133], [-2.085656339251742, 52.329689220859166]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cf94678057017d5c091e00b60b46c0ce.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_05b6545e2462211c779abc87058fab52 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_292dc0a6510acdfbda4a600c81db553a = $(`&lt;div id=&quot;html_292dc0a6510acdfbda4a600c81db553a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 177&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 148.0 sqm&lt;br&gt;Intersecting area: 147.9 sqm&lt;/div&gt;`)[0];\n",
" popup_05b6545e2462211c779abc87058fab52.setContent(html_292dc0a6510acdfbda4a600c81db553a);\n",
" \n",
" \n",
"\n",
" geo_json_cf94678057017d5c091e00b60b46c0ce.bindPopup(popup_05b6545e2462211c779abc87058fab52)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cf94678057017d5c091e00b60b46c0ce.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_466386d0b5719bb8526d996978f16a8d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_466386d0b5719bb8526d996978f16a8d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_466386d0b5719bb8526d996978f16a8d = L.geoJson(null, {\n",
" onEachFeature: geo_json_466386d0b5719bb8526d996978f16a8d_onEachFeature,\n",
" \n",
" style: geo_json_466386d0b5719bb8526d996978f16a8d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_466386d0b5719bb8526d996978f16a8d_add (data) {\n",
" geo_json_466386d0b5719bb8526d996978f16a8d\n",
" .addData(data);\n",
" }\n",
" geo_json_466386d0b5719bb8526d996978f16a8d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0856277676620594, 52.32980536792105], [-2.085627832232626, 52.329895531390505], [-2.0856001441899066, 52.32991637099969], [-2.0855991262986153, 52.32991738672991], [-2.085598581161667, 52.329918529779164], [-2.0855842456510207, 52.33011169083259], [-2.0855551880330956, 52.330178626823624], [-2.0855552711193366, 52.33017985661954], [-2.0855694987090883, 52.33022805797885], [-2.0855430329016573, 52.330239848953376], [-2.0855412583399553, 52.3302411403373], [-2.085540450948527, 52.33024250113891], [-2.0855258748578724, 52.33035472457195], [-2.0854981957425713, 52.33037504541369], [-2.085496858827103, 52.330376521671425], [-2.0854813718029668, 52.330436635028], [-2.0853962141199505, 52.33049172394921], [-2.085394908880461, 52.33049289182066], [-2.085394399942248, 52.3304937849146], [-2.085394206579637, 52.330494723631965], [-2.0853931641355987, 52.330526338388054], [-2.0853453023413078, 52.3305363800572], [-2.085313298583364, 52.33050352521926], [-2.0853118334664846, 52.330502448359], [-2.0853098979388798, 52.33050169997683], [-2.085307681433657, 52.330501353660914], [-2.0853053967939967, 52.330501441622836], [-2.085243479771857, 52.330509918348234], [-2.0852119882777207, 52.33050068303852], [-2.085209647064084, 52.33047141537212], [-2.0852569880876874, 52.33045996267446], [-2.0852746958683377, 52.33047070841613], [-2.0852763786340436, 52.33047126638825], [-2.085277859744911, 52.33047150895082], [-2.0852797733479673, 52.330471539030874], [-2.0852812712264646, 52.33047134375608], [-2.08528331560783, 52.330470705772], [-2.085284938149362, 52.330469712078504], [-2.085313986128975, 52.330442335694805], [-2.0853556909438526, 52.33044166987664], [-2.0853572006093164, 52.330441498864516], [-2.0853589503422914, 52.33044102201696], [-2.0853604383683804, 52.33044028374506], [-2.0853615649964667, 52.33043933446162], [-2.0853623328390314, 52.33043800875215], [-2.0853623932273715, 52.33043660354115], [-2.0853564826585327, 52.33041698493683], [-2.0853826901531574, 52.33040585227134], [-2.0853840444488214, 52.33040501430237], [-2.085384842643843, 52.33040420640581], [-2.0853854812895145, 52.330402849324294], [-2.08539243505369, 52.330368439727316], [-2.085392461091938, 52.33036748404811], [-2.0853857303523418, 52.330338818316235], [-2.0853853529274793, 52.3303379060853], [-2.085384674806211, 52.33033706150031], [-2.085383449222889, 52.3303361579735], [-2.085381883623245, 52.330335480348964], [-2.08538008376859, 52.330335074398], [-2.08537817442507, 52.33033496790327], [-2.0853439053900167, 52.330338007148576], [-2.085341521368105, 52.33031777375623], [-2.0853599856718152, 52.330306905623154], [-2.085406123430367, 52.33031077302028], [-2.085408305465138, 52.330310753459], [-2.0854077147041634, 52.33031183180885], [-2.0854022577616087, 52.33032877418127], [-2.085402275706985, 52.3303297073483], [-2.085402738661932, 52.330330837979666], [-2.085403660718059, 52.330331857698674], [-2.085404687779892, 52.33033254650343], [-2.085406959536682, 52.330333389932775], [-2.0854091905929213, 52.330333676897624], [-2.0854368707990485, 52.330333656823015], [-2.0854391154063965, 52.33033336301559], [-2.085440797468233, 52.33033280170482], [-2.085442185572737, 52.33033199337996], [-2.08544333074963, 52.330330774378986], [-2.085443814820863, 52.33032916298434], [-2.0854437786197613, 52.33031574695049], [-2.0854432858135135, 52.330314355627195], [-2.085442108023487, 52.33031312752555], [-2.0854406859796493, 52.33031231943867], [-2.0854385980753527, 52.3303116925386], [-2.085416681339548, 52.330308346102655], [-2.0854151666956855, 52.33030821594609], [-2.0854137228493226, 52.33030827363105], [-2.085414281510565, 52.33030729149723], [-2.085414455773029, 52.33030634380413], [-2.0854150728126593, 52.33023683930123], [-2.0854828635603453, 52.33022608999982], [-2.085485230498997, 52.33022531692222], [-2.0854869875504964, 52.33022407410478], [-2.0854876212898326, 52.33022321508179], [-2.0854879482126214, 52.33022229424636], [-2.0855019636120167, 52.33014412066959], [-2.085501605283734, 52.33014246044152], [-2.0855005227908756, 52.33014118461859], [-2.085459539253412, 52.3301109749606], [-2.0855430452741577, 52.33007332995458], [-2.0855444201596467, 52.33007252253403], [-2.0855452462644752, 52.330071736191826], [-2.085545787523557, 52.330070861953004], [-2.08554602345385, 52.33006993849135], [-2.0855456494231284, 52.329919106748896], [-2.085545239708279, 52.32991818824874], [-2.0855445249040434, 52.32991734368697], [-2.0855435344420377, 52.32991660990912], [-2.0855423153378556, 52.32991602013852], [-2.0854888071065, 52.329897728888746], [-2.085487165285852, 52.329877354714604], [-2.0855067832210397, 52.329857621388044], [-2.0855668231983784, 52.32987378980048], [-2.085569498705831, 52.32987399552931], [-2.0855717564666416, 52.32987368822332], [-2.0855737478291165, 52.32987296486135], [-2.0855754681151972, 52.32987169330013], [-2.0855761762164398, 52.329870593284085], [-2.0855886222331654, 52.329839940279896], [-2.085588834692754, 52.32983901683088], [-2.0855887316350423, 52.32983808642206], [-2.0855883175535896, 52.32983718950097], [-2.085587389646833, 52.32983617338422], [-2.0855863611277434, 52.32983548638258], [-2.0855847853212834, 52.329834834840774], [-2.085546179512278, 52.32982449000403], [-2.085545580804895, 52.32977974715979], [-2.0855846838196372, 52.32977633664671], [-2.085586831191276, 52.3297758577063], [-2.0855886329810764, 52.32977499693373], [-2.085589553075819, 52.32977425187818], [-2.0855902029736133, 52.32977340542904], [-2.0856089383029985, 52.32974048232091], [-2.0856417187779837, 52.3297434414362], [-2.0856277676620594, 52.32980536792105]], [[-2.085399999899312, 52.33044223560429], [-2.0853995203281683, 52.33044086045413], [-2.0853983704410117, 52.33043964311759], [-2.085396334513332, 52.330438581054615], [-2.085394191081983, 52.330438078259945], [-2.0853926647565535, 52.33043798137325], [-2.0853803940978923, 52.330438015440976], [-2.0853778211136276, 52.33043848569223], [-2.085375962018628, 52.33043932043037], [-2.0853749978622225, 52.33044005652656], [-2.0853741796206138, 52.33044112245918], [-2.085373842883633, 52.33044228243506], [-2.085374008033853, 52.33044345643386], [-2.0853791918646833, 52.33045300475257], [-2.0853799007811142, 52.33045383762928], [-2.0853808750940557, 52.33045456333083], [-2.085382744719337, 52.33045538008351], [-2.085389767615806, 52.330457518253446], [-2.085391225325598, 52.33045779949044], [-2.0853931287585676, 52.330457882617324], [-2.0853950022527004, 52.330457662796576], [-2.0853967211073234, 52.33045715360508], [-2.085397904185891, 52.33045656119115], [-2.0853992417635094, 52.33045542476173], [-2.085399993005792, 52.330453859025816], [-2.085399999899312, 52.33044223560429]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_466386d0b5719bb8526d996978f16a8d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8350b41e66fb7e644b54620a2411e62e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6678b8ba7bb7f87b9cfeddc354675aa1 = $(`&lt;div id=&quot;html_6678b8ba7bb7f87b9cfeddc354675aa1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 178&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 548.0 sqm&lt;br&gt;Intersecting area: 548.4 sqm&lt;/div&gt;`)[0];\n",
" popup_8350b41e66fb7e644b54620a2411e62e.setContent(html_6678b8ba7bb7f87b9cfeddc354675aa1);\n",
" \n",
" \n",
"\n",
" geo_json_466386d0b5719bb8526d996978f16a8d.bindPopup(popup_8350b41e66fb7e644b54620a2411e62e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_466386d0b5719bb8526d996978f16a8d.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_4f0620a244065a4873391197c1778dff_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4f0620a244065a4873391197c1778dff_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4f0620a244065a4873391197c1778dff = L.geoJson(null, {\n",
" onEachFeature: geo_json_4f0620a244065a4873391197c1778dff_onEachFeature,\n",
" \n",
" style: geo_json_4f0620a244065a4873391197c1778dff_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4f0620a244065a4873391197c1778dff_add (data) {\n",
" geo_json_4f0620a244065a4873391197c1778dff\n",
" .addData(data);\n",
" }\n",
" geo_json_4f0620a244065a4873391197c1778dff_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0820617972611415, 52.32825533548387], [-2.0820606964421886, 52.3282559673664], [-2.0820598291665426, 52.32825672314358], [-2.0820592335231582, 52.3282575713362], [-2.08205893145933, 52.32825847685817], [-2.0820564733279037, 52.328290734483836], [-2.0819938140414314, 52.328291672646706], [-2.081991956797177, 52.32829191038139], [-2.0819905811401287, 52.328292306908935], [-2.0819890975043323, 52.32829303075321], [-2.0819881597467833, 52.3282937641072], [-2.0819871779446077, 52.32829527154836], [-2.0819870358553287, 52.32829619853451], [-2.081987207785792, 52.32829712350588], [-2.0819999280687713, 52.32832541936994], [-2.081968478115816, 52.328345299699194], [-2.0819348410531644, 52.32834501114711], [-2.081904033410965, 52.32832034551018], [-2.081902240028308, 52.32831941357275], [-2.081900057053587, 52.32831887748033], [-2.081898495571364, 52.32831876888268], [-2.081759371924353, 52.32831828029051], [-2.081712949934781, 52.32826254994189], [-2.0817425815417314, 52.32819804902201], [-2.0817610408269545, 52.32818764174374], [-2.08192517777155, 52.32818313147443], [-2.081927797787696, 52.32818275655799], [-2.0819291380914042, 52.3281822872392], [-2.081930288801859, 52.32818165712365], [-2.081931197156223, 52.32818089322526], [-2.081931826518902, 52.32818002972716], [-2.0819321461594087, 52.328179104413714], [-2.081932142938874, 52.32817815954963], [-2.0819184385722496, 52.32810020612867], [-2.0819803678860036, 52.32808875178384], [-2.0820422797642877, 52.32811615213587], [-2.082043807582349, 52.32812896119757], [-2.082044230393606, 52.32812986261785], [-2.0820449494647217, 52.32813069011494], [-2.082045933937171, 52.32813140864384], [-2.0820474700926552, 52.328132106108555], [-2.0820500007926817, 52.32813262667766], [-2.082052668328476, 52.32813255739115], [-2.082098030385426, 52.328124653066034], [-2.0821153270523776, 52.32813380740686], [-2.0821035456060377, 52.3281741087672], [-2.082103458288594, 52.32817528654369], [-2.0821038727548746, 52.32817643699744], [-2.082105235633218, 52.32817785380122], [-2.0821063637613513, 52.32817849671216], [-2.0821076867523614, 52.32817898036335], [-2.082145457812901, 52.32818825437914], [-2.082159996637877, 52.328209668765545], [-2.0820617972611415, 52.32825533548387]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4f0620a244065a4873391197c1778dff.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_fd85bb7f22ddf26281771c4508802020 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_baf7dab3ec9cc7da37691b7a7fc6a4c1 = $(`&lt;div id=&quot;html_baf7dab3ec9cc7da37691b7a7fc6a4c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 179&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 469.0 sqm&lt;br&gt;Intersecting area: 469.1 sqm&lt;/div&gt;`)[0];\n",
" popup_fd85bb7f22ddf26281771c4508802020.setContent(html_baf7dab3ec9cc7da37691b7a7fc6a4c1);\n",
" \n",
" \n",
"\n",
" geo_json_4f0620a244065a4873391197c1778dff.bindPopup(popup_fd85bb7f22ddf26281771c4508802020)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4f0620a244065a4873391197c1778dff.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_5542706ea597ae9c77141fb19a36385b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5542706ea597ae9c77141fb19a36385b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5542706ea597ae9c77141fb19a36385b = L.geoJson(null, {\n",
" onEachFeature: geo_json_5542706ea597ae9c77141fb19a36385b_onEachFeature,\n",
" \n",
" style: geo_json_5542706ea597ae9c77141fb19a36385b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5542706ea597ae9c77141fb19a36385b_add (data) {\n",
" geo_json_5542706ea597ae9c77141fb19a36385b\n",
" .addData(data);\n",
" }\n",
" geo_json_5542706ea597ae9c77141fb19a36385b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0823507780768047, 52.32891096647703], [-2.0823171487261978, 52.32891110956053], [-2.082258154332894, 52.328875106403316], [-2.0822567093393536, 52.32882483875813], [-2.082256325293208, 52.328823481507214], [-2.082255504569778, 52.328822448206154], [-2.0822545553133516, 52.328821735947606], [-2.082226668215977, 52.32880468844313], [-2.0822134849109544, 52.32879189471563], [-2.0822310968913125, 52.32878107980479], [-2.0822943089431916, 52.32880003192572], [-2.0823238308363003, 52.3288273810303], [-2.082324227357708, 52.3288582881334], [-2.0823247601565904, 52.32885993476728], [-2.0823257305794014, 52.32886098054512], [-2.0823271203056386, 52.328861830047586], [-2.0823531954661196, 52.32887269174544], [-2.0823507780768047, 52.32891096647703]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5542706ea597ae9c77141fb19a36385b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_864e21498eb65d8fcef62555127983f3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_349b899bc6df81612c2ad2aa00e0a278 = $(`&lt;div id=&quot;html_349b899bc6df81612c2ad2aa00e0a278&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 180&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 63.7 sqm&lt;/div&gt;`)[0];\n",
" popup_864e21498eb65d8fcef62555127983f3.setContent(html_349b899bc6df81612c2ad2aa00e0a278);\n",
" \n",
" \n",
"\n",
" geo_json_5542706ea597ae9c77141fb19a36385b.bindPopup(popup_864e21498eb65d8fcef62555127983f3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5542706ea597ae9c77141fb19a36385b.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_1ad406efac5374bb514dc7c0ee981d99_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1ad406efac5374bb514dc7c0ee981d99_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1ad406efac5374bb514dc7c0ee981d99 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1ad406efac5374bb514dc7c0ee981d99_onEachFeature,\n",
" \n",
" style: geo_json_1ad406efac5374bb514dc7c0ee981d99_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1ad406efac5374bb514dc7c0ee981d99_add (data) {\n",
" geo_json_1ad406efac5374bb514dc7c0ee981d99\n",
" .addData(data);\n",
" }\n",
" geo_json_1ad406efac5374bb514dc7c0ee981d99_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0843818950459596, 52.33001646310153], [-2.084380671366354, 52.33001808131489], [-2.084336760819041, 52.33013074815489], [-2.084299612628677, 52.330132939585475], [-2.0842975093911655, 52.33013349488838], [-2.0842957883895803, 52.33013441941039], [-2.084294616745911, 52.330135624937064], [-2.0842941449285552, 52.33013675893394], [-2.084294313858712, 52.33013838963613], [-2.0843074055179343, 52.33017031611662], [-2.0843080869663266, 52.33017138006815], [-2.0843089336439466, 52.33017213373879], [-2.0843103144941333, 52.33017290320994], [-2.084336933454645, 52.330184320572656], [-2.0843371712345244, 52.33024742164347], [-2.0843215056703, 52.33027551461574], [-2.0842838817816873, 52.330276869394574], [-2.084282364744977, 52.330277023315155], [-2.0842805958963497, 52.33027748128114], [-2.084279082883356, 52.3302782042747], [-2.084277745302927, 52.33027935148147], [-2.084266109388605, 52.33029365061286], [-2.0842653728098153, 52.330295227121134], [-2.084265441081005, 52.33029640119082], [-2.084266171474205, 52.330297735711085], [-2.0842672738812853, 52.33029869777176], [-2.084268744219853, 52.33029945099646], [-2.084321315952462, 52.33031760682014], [-2.0843226274790587, 52.33034665318276], [-2.084307269230972, 52.33038355811457], [-2.0842524164578435, 52.330411299733484], [-2.084250883550311, 52.330412366169526], [-2.0842499703596755, 52.330413672196215], [-2.0842498076871685, 52.330415324711346], [-2.0842634498489687, 52.330481980801856], [-2.0842151665634834, 52.33050119589991], [-2.0841821936604714, 52.330480654414366], [-2.0841965664384943, 52.3303369242777], [-2.0842252207677183, 52.3302890166468], [-2.084225664236896, 52.33028763363843], [-2.0841963322410337, 52.33013921848843], [-2.0842388333059954, 52.33010066423689], [-2.08423981547938, 52.330099367150424], [-2.0842400905724, 52.33009818654201], [-2.084240769008102, 52.33004838490243], [-2.0842811205260423, 52.330029261767], [-2.084282496811742, 52.33002840671601], [-2.08428358908083, 52.330027133822554], [-2.0842839679049465, 52.33002571400177], [-2.0842841149191504, 52.3299773646528], [-2.08430972860242, 52.32996648437365], [-2.0843115209020335, 52.329965249637695], [-2.084312175205984, 52.329964391506486], [-2.0843125212275364, 52.329963467964184], [-2.084312346392435, 52.32996181928714], [-2.0843002507534627, 52.32993275097649], [-2.0843688335183552, 52.3299388169935], [-2.0843704107652483, 52.3299386944985], [-2.0844224676700516, 52.32993105149476], [-2.0844390453702033, 52.32996881459478], [-2.0843818950459596, 52.33001646310153]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1ad406efac5374bb514dc7c0ee981d99.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e9eba271f4b9a4253cd3440ad69d3524 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_65bbe35aaf232551f9dc17ff20274ec3 = $(`&lt;div id=&quot;html_65bbe35aaf232551f9dc17ff20274ec3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 181&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 446.0 sqm&lt;br&gt;Intersecting area: 445.5 sqm&lt;/div&gt;`)[0];\n",
" popup_e9eba271f4b9a4253cd3440ad69d3524.setContent(html_65bbe35aaf232551f9dc17ff20274ec3);\n",
" \n",
" \n",
"\n",
" geo_json_1ad406efac5374bb514dc7c0ee981d99.bindPopup(popup_e9eba271f4b9a4253cd3440ad69d3524)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1ad406efac5374bb514dc7c0ee981d99.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" function geo_json_92e4b4cf70d9c186a62eb3a761297a5a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_92e4b4cf70d9c186a62eb3a761297a5a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_92e4b4cf70d9c186a62eb3a761297a5a = L.geoJson(null, {\n",
" onEachFeature: geo_json_92e4b4cf70d9c186a62eb3a761297a5a_onEachFeature,\n",
" \n",
" style: geo_json_92e4b4cf70d9c186a62eb3a761297a5a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_92e4b4cf70d9c186a62eb3a761297a5a_add (data) {\n",
" geo_json_92e4b4cf70d9c186a62eb3a761297a5a\n",
" .addData(data);\n",
" }\n",
" geo_json_92e4b4cf70d9c186a62eb3a761297a5a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.085175530445596, 52.33070823893339], [-2.0851745068565832, 52.33070935895027], [-2.0850860037383643, 52.330850495161556], [-2.0850548419822523, 52.33086935930469], [-2.0850223199500104, 52.33086918949475], [-2.085004715652359, 52.33082683773639], [-2.0850041709645124, 52.33082593911147], [-2.0850030714049046, 52.33082494828661], [-2.084960938282879, 52.33079612377604], [-2.0849605715101047, 52.33076791732076], [-2.085009615022746, 52.33072968801887], [-2.085027281952713, 52.330731375309576], [-2.0850417707189988, 52.33076222097523], [-2.0850427255145543, 52.33076347981132], [-2.08504397158468, 52.330764350961076], [-2.085046233063906, 52.330765183618986], [-2.085048829538731, 52.33076547302322], [-2.0850713533911907, 52.33076545046432], [-2.085073570153994, 52.33076516477327], [-2.0850758284210325, 52.330764327955436], [-2.0850774577765536, 52.33076305646306], [-2.0850782472298697, 52.330761514077885], [-2.085091745977209, 52.330694254117255], [-2.0850913001281124, 52.330692861858424], [-2.0850899179936673, 52.33069144061091], [-2.0850877897049105, 52.33069042266114], [-2.0850852060748157, 52.33068994445106], [-2.0850223506560472, 52.33068982351786], [-2.084976890121717, 52.330671255625525], [-2.085004297484624, 52.33062386294627], [-2.0850412094092676, 52.330622995717725], [-2.085070986668224, 52.33066410073534], [-2.0850718231670804, 52.33066489126621], [-2.0850729088887654, 52.330665557555434], [-2.085074198295318, 52.33066607086253], [-2.0850756341106527, 52.33066640785693], [-2.085077537685211, 52.330666560212926], [-2.0851007541173763, 52.330666537148154], [-2.085103038341874, 52.3306662325285], [-2.085105048811904, 52.330665503772146], [-2.085106584613549, 52.330664423840794], [-2.0851074874913365, 52.330663103428336], [-2.0851117964823502, 52.33064891739259], [-2.085157510145684, 52.33065261078237], [-2.0851597890248583, 52.33065257587303], [-2.085161942347167, 52.33065211401498], [-2.085163487725539, 52.33065143324231], [-2.0851646951638156, 52.330650532451], [-2.08516536270166, 52.33064969318491], [-2.085165777262427, 52.330648554724846], [-2.0851673792670966, 52.33062242178289], [-2.0852336655475256, 52.33060431254665], [-2.0852358913132134, 52.330603369662406], [-2.085237408939208, 52.330601996663], [-2.0852379844558633, 52.33060061804797], [-2.085237827631068, 52.3305991986119], [-2.085224607274887, 52.33057095471353], [-2.085250147438793, 52.33055918245582], [-2.0852514620379505, 52.33055830046538], [-2.085252470618791, 52.33055700964458], [-2.0852527677029222, 52.33055582991392], [-2.085252548232134, 52.330554643368096], [-2.0852416444611506, 52.33053298760154], [-2.0852882952772203, 52.33053188939202], [-2.085306702909124, 52.33054864007037], [-2.085334201129961, 52.33058122756633], [-2.085175530445596, 52.33070823893339]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_92e4b4cf70d9c186a62eb3a761297a5a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_97b6b421e9638d78f540c8103cdecfa6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bcb4cab3478617c32f35723bae386e14 = $(`&lt;div id=&quot;html_bcb4cab3478617c32f35723bae386e14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 182&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 301.0 sqm&lt;br&gt;Intersecting area: 300.6 sqm&lt;/div&gt;`)[0];\n",
" popup_97b6b421e9638d78f540c8103cdecfa6.setContent(html_bcb4cab3478617c32f35723bae386e14);\n",
" \n",
" \n",
"\n",
" geo_json_92e4b4cf70d9c186a62eb3a761297a5a.bindPopup(popup_97b6b421e9638d78f540c8103cdecfa6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_92e4b4cf70d9c186a62eb3a761297a5a.addTo(feature_group_27f49a14cab78c4e3bd69076ec128036);\n",
" \n",
" \n",
" feature_group_27f49a14cab78c4e3bd69076ec128036.addTo(map_dc31576c89db5e6cdebcc198f6113379);\n",
" \n",
" \n",
" var feature_group_9c9af1df436743cde04fb07eb9a06882 = L.featureGroup(\n",
" {\n",
"}\n",
" );\n",
" \n",
" \n",
" function geo_json_e4addf450222ee555ea34dfe304492b2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e4addf450222ee555ea34dfe304492b2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e4addf450222ee555ea34dfe304492b2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e4addf450222ee555ea34dfe304492b2_onEachFeature,\n",
" \n",
" style: geo_json_e4addf450222ee555ea34dfe304492b2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e4addf450222ee555ea34dfe304492b2_add (data) {\n",
" geo_json_e4addf450222ee555ea34dfe304492b2\n",
" .addData(data);\n",
" }\n",
" geo_json_e4addf450222ee555ea34dfe304492b2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.090861211229856, 52.32287283830153], [-2.090828671058444, 52.32284741572967], [-2.0908275472165148, 52.322846712663434], [-2.0908258366193535, 52.32284607118453], [-2.0907862095579763, 52.32283545913294], [-2.0908024825729994, 52.32281422971423], [-2.090920948278832, 52.32281381289376], [-2.0909396392811543, 52.32282476291325], [-2.090935263239077, 52.32287285577811], [-2.090861211229856, 52.32287283830153]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e4addf450222ee555ea34dfe304492b2.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9ee7a07ea534701f484a1678ef814d32 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9c6511ef258958ffb4c6b816bf18d0d5 = $(`&lt;div id=&quot;html_9c6511ef258958ffb4c6b816bf18d0d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 1&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 52.0 sqm&lt;br&gt;Intersecting area: 52.2 sqm&lt;/div&gt;`)[0];\n",
" popup_9ee7a07ea534701f484a1678ef814d32.setContent(html_9c6511ef258958ffb4c6b816bf18d0d5);\n",
" \n",
" \n",
"\n",
" geo_json_e4addf450222ee555ea34dfe304492b2.bindPopup(popup_9ee7a07ea534701f484a1678ef814d32)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e4addf450222ee555ea34dfe304492b2.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ff23e4eb31184e330377b9b684d4a055_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ff23e4eb31184e330377b9b684d4a055_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ff23e4eb31184e330377b9b684d4a055 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ff23e4eb31184e330377b9b684d4a055_onEachFeature,\n",
" \n",
" style: geo_json_ff23e4eb31184e330377b9b684d4a055_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ff23e4eb31184e330377b9b684d4a055_add (data) {\n",
" geo_json_ff23e4eb31184e330377b9b684d4a055\n",
" .addData(data);\n",
" }\n",
" geo_json_ff23e4eb31184e330377b9b684d4a055_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.089465580056079, 52.32254074674259], [-2.089465364821007, 52.322537168754316], [-2.0895348191552032, 52.32251722978922], [-2.0895431062366128, 52.322540988109054], [-2.089511745233693, 52.32255037883678], [-2.089465580056079, 52.32254074674259]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ff23e4eb31184e330377b9b684d4a055.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_351abd8e2f4926bd55aefd0d174c874d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7e7c06414690732abdf65615a7977006 = $(`&lt;div id=&quot;html_7e7c06414690732abdf65615a7977006&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 2&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 20.0 sqm&lt;br&gt;Intersecting area: 10.7 sqm&lt;/div&gt;`)[0];\n",
" popup_351abd8e2f4926bd55aefd0d174c874d.setContent(html_7e7c06414690732abdf65615a7977006);\n",
" \n",
" \n",
"\n",
" geo_json_ff23e4eb31184e330377b9b684d4a055.bindPopup(popup_351abd8e2f4926bd55aefd0d174c874d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ff23e4eb31184e330377b9b684d4a055.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_b5480c02b85f87e2c44951086f81b5b6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b5480c02b85f87e2c44951086f81b5b6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b5480c02b85f87e2c44951086f81b5b6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_b5480c02b85f87e2c44951086f81b5b6_onEachFeature,\n",
" \n",
" style: geo_json_b5480c02b85f87e2c44951086f81b5b6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b5480c02b85f87e2c44951086f81b5b6_add (data) {\n",
" geo_json_b5480c02b85f87e2c44951086f81b5b6\n",
" .addData(data);\n",
" }\n",
" geo_json_b5480c02b85f87e2c44951086f81b5b6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0914365091682967, 52.3229082604699], [-2.0913161023552114, 52.32291731889505], [-2.091283885859879, 52.32288892044678], [-2.0912839316910645, 52.32285141149167], [-2.091384581547869, 52.32280418524386], [-2.0914199843696877, 52.32279547593619], [-2.0914809639508465, 52.32280487730034], [-2.091511785319676, 52.322824107678386], [-2.091511844917208, 52.3228529131331], [-2.0914365091682967, 52.3229082604699]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b5480c02b85f87e2c44951086f81b5b6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6bfcf218ae90f05f740cb9bfbc7629a3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3eea188f73651cd5966513b33246687a = $(`&lt;div id=&quot;html_3eea188f73651cd5966513b33246687a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 3&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 149.0 sqm&lt;br&gt;Intersecting area: 149.5 sqm&lt;/div&gt;`)[0];\n",
" popup_6bfcf218ae90f05f740cb9bfbc7629a3.setContent(html_3eea188f73651cd5966513b33246687a);\n",
" \n",
" \n",
"\n",
" geo_json_b5480c02b85f87e2c44951086f81b5b6.bindPopup(popup_6bfcf218ae90f05f740cb9bfbc7629a3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b5480c02b85f87e2c44951086f81b5b6.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_bc837544ffe460d556f56b52601c1ee8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_bc837544ffe460d556f56b52601c1ee8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_bc837544ffe460d556f56b52601c1ee8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_bc837544ffe460d556f56b52601c1ee8_onEachFeature,\n",
" \n",
" style: geo_json_bc837544ffe460d556f56b52601c1ee8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_bc837544ffe460d556f56b52601c1ee8_add (data) {\n",
" geo_json_bc837544ffe460d556f56b52601c1ee8\n",
" .addData(data);\n",
" }\n",
" geo_json_bc837544ffe460d556f56b52601c1ee8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.091445158004022, 52.323049359461585], [-2.0914322129693477, 52.323022401602884], [-2.091465375402276, 52.32302071446884], [-2.091481833261836, 52.323059186044794], [-2.0914490421631347, 52.32306095470133], [-2.091445158004022, 52.323049359461585]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_bc837544ffe460d556f56b52601c1ee8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f9b3f30a6582167a3a87bd57726e7e53 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b4a6ab936019b40a44490f3824ffdb16 = $(`&lt;div id=&quot;html_b4a6ab936019b40a44490f3824ffdb16&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 4&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.7 sqm&lt;/div&gt;`)[0];\n",
" popup_f9b3f30a6582167a3a87bd57726e7e53.setContent(html_b4a6ab936019b40a44490f3824ffdb16);\n",
" \n",
" \n",
"\n",
" geo_json_bc837544ffe460d556f56b52601c1ee8.bindPopup(popup_f9b3f30a6582167a3a87bd57726e7e53)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_bc837544ffe460d556f56b52601c1ee8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_fdcea8bd412127bfbcef20648c692848_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_fdcea8bd412127bfbcef20648c692848_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_fdcea8bd412127bfbcef20648c692848 = L.geoJson(null, {\n",
" onEachFeature: geo_json_fdcea8bd412127bfbcef20648c692848_onEachFeature,\n",
" \n",
" style: geo_json_fdcea8bd412127bfbcef20648c692848_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_fdcea8bd412127bfbcef20648c692848_add (data) {\n",
" geo_json_fdcea8bd412127bfbcef20648c692848\n",
" .addData(data);\n",
" }\n",
" geo_json_fdcea8bd412127bfbcef20648c692848_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.089868209937682, 52.32502946157963], [-2.0898934181746087, 52.325007430745025], [-2.089910855166873, 52.32499086917876], [-2.0899303987431685, 52.324992156938706], [-2.0899145341475536, 52.32503083679151], [-2.089868209937682, 52.32502946157963]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_fdcea8bd412127bfbcef20648c692848.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3eededcafd9a7fc602ce2b77432ba1b3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_253021298896c2011f10844eae23cb90 = $(`&lt;div id=&quot;html_253021298896c2011f10844eae23cb90&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 5&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.8 sqm&lt;/div&gt;`)[0];\n",
" popup_3eededcafd9a7fc602ce2b77432ba1b3.setContent(html_253021298896c2011f10844eae23cb90);\n",
" \n",
" \n",
"\n",
" geo_json_fdcea8bd412127bfbcef20648c692848.bindPopup(popup_3eededcafd9a7fc602ce2b77432ba1b3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_fdcea8bd412127bfbcef20648c692848.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9659e9c877976580c1c71040d2ceaed8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9659e9c877976580c1c71040d2ceaed8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9659e9c877976580c1c71040d2ceaed8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9659e9c877976580c1c71040d2ceaed8_onEachFeature,\n",
" \n",
" style: geo_json_9659e9c877976580c1c71040d2ceaed8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9659e9c877976580c1c71040d2ceaed8_add (data) {\n",
" geo_json_9659e9c877976580c1c71040d2ceaed8\n",
" .addData(data);\n",
" }\n",
" geo_json_9659e9c877976580c1c71040d2ceaed8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0917549305427534, 52.32389983697966], [-2.091771976874346, 52.3238836395441], [-2.0917922713415167, 52.32388497586017], [-2.0917923917623926, 52.323895578186374], [-2.0917458482161067, 52.32392391878981], [-2.0917549305427534, 52.32389983697966]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9659e9c877976580c1c71040d2ceaed8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ccb414d72dd987f8cc537a6ec465e339 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4dd91e3a800eb526070549b77bbeabd9 = $(`&lt;div id=&quot;html_4dd91e3a800eb526070549b77bbeabd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 6&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 39.0 sqm&lt;br&gt;Intersecting area: 6.1 sqm&lt;/div&gt;`)[0];\n",
" popup_ccb414d72dd987f8cc537a6ec465e339.setContent(html_4dd91e3a800eb526070549b77bbeabd9);\n",
" \n",
" \n",
"\n",
" geo_json_9659e9c877976580c1c71040d2ceaed8.bindPopup(popup_ccb414d72dd987f8cc537a6ec465e339)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9659e9c877976580c1c71040d2ceaed8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_6303f3ae47e7805dae00d1fd3bca6b4d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6303f3ae47e7805dae00d1fd3bca6b4d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6303f3ae47e7805dae00d1fd3bca6b4d = L.geoJson(null, {\n",
" onEachFeature: geo_json_6303f3ae47e7805dae00d1fd3bca6b4d_onEachFeature,\n",
" \n",
" style: geo_json_6303f3ae47e7805dae00d1fd3bca6b4d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6303f3ae47e7805dae00d1fd3bca6b4d_add (data) {\n",
" geo_json_6303f3ae47e7805dae00d1fd3bca6b4d\n",
" .addData(data);\n",
" }\n",
" geo_json_6303f3ae47e7805dae00d1fd3bca6b4d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.091082687985303, 52.32428857794154], [-2.091155925045515, 52.32424371863612], [-2.091192635298496, 52.32424302944732], [-2.0911948589403786, 52.32424269778342], [-2.0911970902319905, 52.324241804230375], [-2.0911982900226533, 52.32424089439272], [-2.0911990654529387, 52.32423982575528], [-2.0912146981423727, 52.32420747770486], [-2.0912734409433122, 52.324171529843085], [-2.0913263828676247, 52.32416219294681], [-2.0913278317485746, 52.324161831315706], [-2.0913294134413563, 52.32416112795736], [-2.0913306351821994, 52.324160194725046], [-2.091390081501249, 52.32409981809157], [-2.091489017013705, 52.324063037012586], [-2.091490265886139, 52.3240624516792], [-2.091491494948823, 52.32406151304665], [-2.0915509817071025, 52.32400099874717], [-2.0916066687973047, 52.32398185757615], [-2.0916590600805653, 52.32397528724441], [-2.09165837413618, 52.32397718205668], [-2.091069855687046, 52.32433552793702], [-2.091082687985303, 52.32428857794154]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6303f3ae47e7805dae00d1fd3bca6b4d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_151a3c4f5ed9a2fe070e8c8510064007 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_844fd1eb5524e8e9b830d57bdd6df759 = $(`&lt;div id=&quot;html_844fd1eb5524e8e9b830d57bdd6df759&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 7&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 230.0 sqm&lt;br&gt;Intersecting area: 133.9 sqm&lt;/div&gt;`)[0];\n",
" popup_151a3c4f5ed9a2fe070e8c8510064007.setContent(html_844fd1eb5524e8e9b830d57bdd6df759);\n",
" \n",
" \n",
"\n",
" geo_json_6303f3ae47e7805dae00d1fd3bca6b4d.bindPopup(popup_151a3c4f5ed9a2fe070e8c8510064007)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6303f3ae47e7805dae00d1fd3bca6b4d.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_018e5ba02dc6d38291e06c929040b73f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_018e5ba02dc6d38291e06c929040b73f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_018e5ba02dc6d38291e06c929040b73f = L.geoJson(null, {\n",
" onEachFeature: geo_json_018e5ba02dc6d38291e06c929040b73f_onEachFeature,\n",
" \n",
" style: geo_json_018e5ba02dc6d38291e06c929040b73f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_018e5ba02dc6d38291e06c929040b73f_add (data) {\n",
" geo_json_018e5ba02dc6d38291e06c929040b73f\n",
" .addData(data);\n",
" }\n",
" geo_json_018e5ba02dc6d38291e06c929040b73f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0897324190432793, 52.32512113115991], [-2.089730999347971, 52.32512143700712], [-2.0897297105985486, 52.32512191536927], [-2.089728609959335, 52.32512254372255], [-2.0897277414009094, 52.32512329686529], [-2.0897271415348055, 52.32512414329982], [-2.0897268352425784, 52.32512504614871], [-2.089724946586401, 52.32514804540976], [-2.0896401725458587, 52.32518501111492], [-2.089638955238576, 52.32518599197463], [-2.089607992266527, 52.32521966584179], [-2.089575028188461, 52.32521943828795], [-2.089602416882238, 52.32516184243382], [-2.089689862626919, 52.32510815564891], [-2.0897135453323856, 52.32510724039648], [-2.089715733737148, 52.32510687012841], [-2.0897179078109387, 52.32510594697768], [-2.089718860066702, 52.325105224340845], [-2.0897634763180775, 52.325063155782146], [-2.089803455637245, 52.325062127398354], [-2.0898275382388585, 52.325057284895486], [-2.0897990730131575, 52.32511130712366], [-2.0897324190432793, 52.32512113115991]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_018e5ba02dc6d38291e06c929040b73f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ad8f3d87b7680f74a7776a61edb4930d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_08da2eee630159cc79d59a27a6a0e573 = $(`&lt;div id=&quot;html_08da2eee630159cc79d59a27a6a0e573&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 8&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 84.0 sqm&lt;br&gt;Intersecting area: 84.2 sqm&lt;/div&gt;`)[0];\n",
" popup_ad8f3d87b7680f74a7776a61edb4930d.setContent(html_08da2eee630159cc79d59a27a6a0e573);\n",
" \n",
" \n",
"\n",
" geo_json_018e5ba02dc6d38291e06c929040b73f.bindPopup(popup_ad8f3d87b7680f74a7776a61edb4930d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_018e5ba02dc6d38291e06c929040b73f.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_b7cda5a83da187ad54c8659ac500cefa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b7cda5a83da187ad54c8659ac500cefa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b7cda5a83da187ad54c8659ac500cefa = L.geoJson(null, {\n",
" onEachFeature: geo_json_b7cda5a83da187ad54c8659ac500cefa_onEachFeature,\n",
" \n",
" style: geo_json_b7cda5a83da187ad54c8659ac500cefa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b7cda5a83da187ad54c8659ac500cefa_add (data) {\n",
" geo_json_b7cda5a83da187ad54c8659ac500cefa\n",
" .addData(data);\n",
" }\n",
" geo_json_b7cda5a83da187ad54c8659ac500cefa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08547880570624, 52.32494408533789], [-2.08547790008457, 52.32491507462911], [-2.085496052650363, 52.32491262780315], [-2.0855294319808246, 52.32492285599404], [-2.085555225842456, 52.32496202373387], [-2.0855097536103577, 52.32496255660782], [-2.08547880570624, 52.32494408533789]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b7cda5a83da187ad54c8659ac500cefa.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2daf1450b91f8a01be836d41babbd4cf = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a8c53427764640ca55be4ba9a6df530e = $(`&lt;div id=&quot;html_a8c53427764640ca55be4ba9a6df530e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 9&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 19.0 sqm&lt;br&gt;Intersecting area: 19.5 sqm&lt;/div&gt;`)[0];\n",
" popup_2daf1450b91f8a01be836d41babbd4cf.setContent(html_a8c53427764640ca55be4ba9a6df530e);\n",
" \n",
" \n",
"\n",
" geo_json_b7cda5a83da187ad54c8659ac500cefa.bindPopup(popup_2daf1450b91f8a01be836d41babbd4cf)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b7cda5a83da187ad54c8659ac500cefa.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3062321fb555f2aadc0e088f14b29b1b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3062321fb555f2aadc0e088f14b29b1b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3062321fb555f2aadc0e088f14b29b1b = L.geoJson(null, {\n",
" onEachFeature: geo_json_3062321fb555f2aadc0e088f14b29b1b_onEachFeature,\n",
" \n",
" style: geo_json_3062321fb555f2aadc0e088f14b29b1b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3062321fb555f2aadc0e088f14b29b1b_add (data) {\n",
" geo_json_3062321fb555f2aadc0e088f14b29b1b\n",
" .addData(data);\n",
" }\n",
" geo_json_3062321fb555f2aadc0e088f14b29b1b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08496740669006, 52.325780405254086], [-2.0849678318062588, 52.32575958185208], [-2.085031148273728, 52.325768082239996], [-2.085032133308154, 52.32578817371886], [-2.085014154286803, 52.32579026792934], [-2.08496740669006, 52.325780405254086]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3062321fb555f2aadc0e088f14b29b1b.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8f0f20b7c59ede15a24198b88c7a0bfd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d5f7ddba57f18cc2207cabaebfe994e6 = $(`&lt;div id=&quot;html_d5f7ddba57f18cc2207cabaebfe994e6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 10&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.0 sqm&lt;/div&gt;`)[0];\n",
" popup_8f0f20b7c59ede15a24198b88c7a0bfd.setContent(html_d5f7ddba57f18cc2207cabaebfe994e6);\n",
" \n",
" \n",
"\n",
" geo_json_3062321fb555f2aadc0e088f14b29b1b.bindPopup(popup_8f0f20b7c59ede15a24198b88c7a0bfd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3062321fb555f2aadc0e088f14b29b1b.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_69ba23b90e78f93dde1927e8d1eda8d7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_69ba23b90e78f93dde1927e8d1eda8d7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_69ba23b90e78f93dde1927e8d1eda8d7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_69ba23b90e78f93dde1927e8d1eda8d7_onEachFeature,\n",
" \n",
" style: geo_json_69ba23b90e78f93dde1927e8d1eda8d7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_69ba23b90e78f93dde1927e8d1eda8d7_add (data) {\n",
" geo_json_69ba23b90e78f93dde1927e8d1eda8d7\n",
" .addData(data);\n",
" }\n",
" geo_json_69ba23b90e78f93dde1927e8d1eda8d7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0847005412582704, 52.32299101482931], [-2.0847036567645545, 52.322991900863286], [-2.084703436223947, 52.32299236891778], [-2.0847005412582704, 52.32299101482931]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_69ba23b90e78f93dde1927e8d1eda8d7.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f37cffc9cbbca8ca2411517999308968 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6c34e368889c634db54db9374508e1f6 = $(`&lt;div id=&quot;html_6c34e368889c634db54db9374508e1f6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 11&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 5.0 sqm&lt;br&gt;Intersecting area: 0.0 sqm&lt;/div&gt;`)[0];\n",
" popup_f37cffc9cbbca8ca2411517999308968.setContent(html_6c34e368889c634db54db9374508e1f6);\n",
" \n",
" \n",
"\n",
" geo_json_69ba23b90e78f93dde1927e8d1eda8d7.bindPopup(popup_f37cffc9cbbca8ca2411517999308968)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_69ba23b90e78f93dde1927e8d1eda8d7.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3b340210f4267aff2e2817e67639dbd5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3b340210f4267aff2e2817e67639dbd5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3b340210f4267aff2e2817e67639dbd5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3b340210f4267aff2e2817e67639dbd5_onEachFeature,\n",
" \n",
" style: geo_json_3b340210f4267aff2e2817e67639dbd5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3b340210f4267aff2e2817e67639dbd5_add (data) {\n",
" geo_json_3b340210f4267aff2e2817e67639dbd5\n",
" .addData(data);\n",
" }\n",
" geo_json_3b340210f4267aff2e2817e67639dbd5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0845987482285273, 52.325797220683846], [-2.084584324542307, 52.32576947021437], [-2.08461227275162, 52.325740003653], [-2.084661300345639, 52.32573145200858], [-2.0846802643483837, 52.32574184452596], [-2.0846951228851696, 52.32577903977201], [-2.0846639358899233, 52.32579904200443], [-2.0845987482285273, 52.325797220683846]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3b340210f4267aff2e2817e67639dbd5.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_84099bbb238f973e86eab2fd17592593 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f8fc59e5f0f662a319020561cde33395 = $(`&lt;div id=&quot;html_f8fc59e5f0f662a319020561cde33395&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 12&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 42.0 sqm&lt;br&gt;Intersecting area: 41.7 sqm&lt;/div&gt;`)[0];\n",
" popup_84099bbb238f973e86eab2fd17592593.setContent(html_f8fc59e5f0f662a319020561cde33395);\n",
" \n",
" \n",
"\n",
" geo_json_3b340210f4267aff2e2817e67639dbd5.bindPopup(popup_84099bbb238f973e86eab2fd17592593)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3b340210f4267aff2e2817e67639dbd5.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_194db34da1fa8f891331ba0a48c8d2ac_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_194db34da1fa8f891331ba0a48c8d2ac_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_194db34da1fa8f891331ba0a48c8d2ac = L.geoJson(null, {\n",
" onEachFeature: geo_json_194db34da1fa8f891331ba0a48c8d2ac_onEachFeature,\n",
" \n",
" style: geo_json_194db34da1fa8f891331ba0a48c8d2ac_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_194db34da1fa8f891331ba0a48c8d2ac_add (data) {\n",
" geo_json_194db34da1fa8f891331ba0a48c8d2ac\n",
" .addData(data);\n",
" }\n",
" geo_json_194db34da1fa8f891331ba0a48c8d2ac_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084013259845431, 52.325817162890814], [-2.0839974670172126, 52.32580612430721], [-2.0840107176466622, 52.32577732644994], [-2.084010826071143, 52.325775698244726], [-2.0840099794399713, 52.32577415253548], [-2.0840085746248778, 52.32577304954253], [-2.0840066832639947, 52.32577226424858], [-2.0839390866455942, 52.32575279922475], [-2.0839428688348782, 52.325740960933835], [-2.084009227668357, 52.32574066998381], [-2.0840889253760286, 52.32573178833364], [-2.0841077335475258, 52.32574209475108], [-2.0841083748929807, 52.32579770585066], [-2.0840770257736367, 52.32581747160204], [-2.084013259845431, 52.325817162890814]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_194db34da1fa8f891331ba0a48c8d2ac.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_fc5ae1e5d7e6712c6a67b302d9944e19 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8afd9dcfedfad735b33f6bc29cc7c833 = $(`&lt;div id=&quot;html_8afd9dcfedfad735b33f6bc29cc7c833&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 13&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 71.0 sqm&lt;br&gt;Intersecting area: 71.3 sqm&lt;/div&gt;`)[0];\n",
" popup_fc5ae1e5d7e6712c6a67b302d9944e19.setContent(html_8afd9dcfedfad735b33f6bc29cc7c833);\n",
" \n",
" \n",
"\n",
" geo_json_194db34da1fa8f891331ba0a48c8d2ac.bindPopup(popup_fc5ae1e5d7e6712c6a67b302d9944e19)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_194db34da1fa8f891331ba0a48c8d2ac.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_15917df2579fefbee2c1f1fdc490f35c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_15917df2579fefbee2c1f1fdc490f35c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_15917df2579fefbee2c1f1fdc490f35c = L.geoJson(null, {\n",
" onEachFeature: geo_json_15917df2579fefbee2c1f1fdc490f35c_onEachFeature,\n",
" \n",
" style: geo_json_15917df2579fefbee2c1f1fdc490f35c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_15917df2579fefbee2c1f1fdc490f35c_add (data) {\n",
" geo_json_15917df2579fefbee2c1f1fdc490f35c\n",
" .addData(data);\n",
" }\n",
" geo_json_15917df2579fefbee2c1f1fdc490f35c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084619762518816, 52.325879929778864], [-2.0845706086278732, 52.32586933327766], [-2.0845881912630606, 52.325830283418256], [-2.0846756661759898, 52.32582168257325], [-2.084673688488005, 52.32584554577488], [-2.084619762518816, 52.325879929778864]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_15917df2579fefbee2c1f1fdc490f35c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_62f24d369f30c58b9a1af08e72dfc5e4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3b3798ade64dff1a4a1cd4ad32385cc1 = $(`&lt;div id=&quot;html_3b3798ade64dff1a4a1cd4ad32385cc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 14&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 30.0 sqm&lt;br&gt;Intersecting area: 30.1 sqm&lt;/div&gt;`)[0];\n",
" popup_62f24d369f30c58b9a1af08e72dfc5e4.setContent(html_3b3798ade64dff1a4a1cd4ad32385cc1);\n",
" \n",
" \n",
"\n",
" geo_json_15917df2579fefbee2c1f1fdc490f35c.bindPopup(popup_62f24d369f30c58b9a1af08e72dfc5e4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_15917df2579fefbee2c1f1fdc490f35c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_85f716948058ea29403c2ecfedf3f510_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_85f716948058ea29403c2ecfedf3f510_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_85f716948058ea29403c2ecfedf3f510 = L.geoJson(null, {\n",
" onEachFeature: geo_json_85f716948058ea29403c2ecfedf3f510_onEachFeature,\n",
" \n",
" style: geo_json_85f716948058ea29403c2ecfedf3f510_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_85f716948058ea29403c2ecfedf3f510_add (data) {\n",
" geo_json_85f716948058ea29403c2ecfedf3f510\n",
" .addData(data);\n",
" }\n",
" geo_json_85f716948058ea29403c2ecfedf3f510_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0847612680075875, 52.325903754534394], [-2.084795415491809, 52.32589418506466], [-2.0848051930545655, 52.325916902543455], [-2.0847640512702204, 52.325924321201036], [-2.0847612680075875, 52.325903754534394]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_85f716948058ea29403c2ecfedf3f510.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cc22baeb65df61ea9c5d3ee1523ca4ea = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_510756a0253efecfeab405ec4b354e18 = $(`&lt;div id=&quot;html_510756a0253efecfeab405ec4b354e18&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 15&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.6 sqm&lt;/div&gt;`)[0];\n",
" popup_cc22baeb65df61ea9c5d3ee1523ca4ea.setContent(html_510756a0253efecfeab405ec4b354e18);\n",
" \n",
" \n",
"\n",
" geo_json_85f716948058ea29403c2ecfedf3f510.bindPopup(popup_cc22baeb65df61ea9c5d3ee1523ca4ea)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_85f716948058ea29403c2ecfedf3f510.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_b47a242bcd0eb662813fb8a1aeba6fe5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b47a242bcd0eb662813fb8a1aeba6fe5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b47a242bcd0eb662813fb8a1aeba6fe5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_b47a242bcd0eb662813fb8a1aeba6fe5_onEachFeature,\n",
" \n",
" style: geo_json_b47a242bcd0eb662813fb8a1aeba6fe5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b47a242bcd0eb662813fb8a1aeba6fe5_add (data) {\n",
" geo_json_b47a242bcd0eb662813fb8a1aeba6fe5\n",
" .addData(data);\n",
" }\n",
" geo_json_b47a242bcd0eb662813fb8a1aeba6fe5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0847759053799164, 52.3259678773611], [-2.0847887470474613, 52.32595559919794], [-2.0848249490734974, 52.32594771929534], [-2.084840850049007, 52.32596833495037], [-2.084792077903171, 52.32597860810493], [-2.0847759053799164, 52.3259678773611]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b47a242bcd0eb662813fb8a1aeba6fe5.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_273fbe8a8e27ab9e0c5b1e260e2e1b7f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_270eddc5f45dbb32be0a2fda6e8bc611 = $(`&lt;div id=&quot;html_270eddc5f45dbb32be0a2fda6e8bc611&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 16&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 9.0 sqm&lt;/div&gt;`)[0];\n",
" popup_273fbe8a8e27ab9e0c5b1e260e2e1b7f.setContent(html_270eddc5f45dbb32be0a2fda6e8bc611);\n",
" \n",
" \n",
"\n",
" geo_json_b47a242bcd0eb662813fb8a1aeba6fe5.bindPopup(popup_273fbe8a8e27ab9e0c5b1e260e2e1b7f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b47a242bcd0eb662813fb8a1aeba6fe5.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3e7beded50367f1155b3f81586265e25_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3e7beded50367f1155b3f81586265e25_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3e7beded50367f1155b3f81586265e25 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3e7beded50367f1155b3f81586265e25_onEachFeature,\n",
" \n",
" style: geo_json_3e7beded50367f1155b3f81586265e25_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3e7beded50367f1155b3f81586265e25_add (data) {\n",
" geo_json_3e7beded50367f1155b3f81586265e25\n",
" .addData(data);\n",
" }\n",
" geo_json_3e7beded50367f1155b3f81586265e25_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0833973572978244, 52.32605039636302], [-2.0833959270928974, 52.32600471549496], [-2.0833997203930226, 52.325993230528525], [-2.0834439424169635, 52.3259928620735], [-2.0834760991433483, 52.32601127547809], [-2.0834468683888763, 52.32605126840535], [-2.0833973572978244, 52.32605039636302]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3e7beded50367f1155b3f81586265e25.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e43857fdd532e7e8cf79d34c1af2dfb2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_79e57c487d49414095584605dfff19f5 = $(`&lt;div id=&quot;html_79e57c487d49414095584605dfff19f5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 17&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 28.0 sqm&lt;br&gt;Intersecting area: 28.2 sqm&lt;/div&gt;`)[0];\n",
" popup_e43857fdd532e7e8cf79d34c1af2dfb2.setContent(html_79e57c487d49414095584605dfff19f5);\n",
" \n",
" \n",
"\n",
" geo_json_3e7beded50367f1155b3f81586265e25.bindPopup(popup_e43857fdd532e7e8cf79d34c1af2dfb2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3e7beded50367f1155b3f81586265e25.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_37190c7ea5c96836121b49d19f125540_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_37190c7ea5c96836121b49d19f125540_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_37190c7ea5c96836121b49d19f125540 = L.geoJson(null, {\n",
" onEachFeature: geo_json_37190c7ea5c96836121b49d19f125540_onEachFeature,\n",
" \n",
" style: geo_json_37190c7ea5c96836121b49d19f125540_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_37190c7ea5c96836121b49d19f125540_add (data) {\n",
" geo_json_37190c7ea5c96836121b49d19f125540\n",
" .addData(data);\n",
" }\n",
" geo_json_37190c7ea5c96836121b49d19f125540_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0846018462377076, 52.32604137690332], [-2.0846007772376742, 52.32600261104745], [-2.0846351562214593, 52.32600201007826], [-2.0846444959881194, 52.32602600539008], [-2.084634592453848, 52.32604170039811], [-2.0846018462377076, 52.32604137690332]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_37190c7ea5c96836121b49d19f125540.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d07f0fc9a9b81561cd417d0c5c105f71 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_781589b6cef8e28447ec9d7d84bd756c = $(`&lt;div id=&quot;html_781589b6cef8e28447ec9d7d84bd756c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 18&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.4 sqm&lt;/div&gt;`)[0];\n",
" popup_d07f0fc9a9b81561cd417d0c5c105f71.setContent(html_781589b6cef8e28447ec9d7d84bd756c);\n",
" \n",
" \n",
"\n",
" geo_json_37190c7ea5c96836121b49d19f125540.bindPopup(popup_d07f0fc9a9b81561cd417d0c5c105f71)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_37190c7ea5c96836121b49d19f125540.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ba24ae281d9051ec09989b3c0d3f84f0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ba24ae281d9051ec09989b3c0d3f84f0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ba24ae281d9051ec09989b3c0d3f84f0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ba24ae281d9051ec09989b3c0d3f84f0_onEachFeature,\n",
" \n",
" style: geo_json_ba24ae281d9051ec09989b3c0d3f84f0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ba24ae281d9051ec09989b3c0d3f84f0_add (data) {\n",
" geo_json_ba24ae281d9051ec09989b3c0d3f84f0\n",
" .addData(data);\n",
" }\n",
" geo_json_ba24ae281d9051ec09989b3c0d3f84f0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0853200440924957, 52.32583456889154], [-2.0852890035169636, 52.32581548990211], [-2.085289117280021, 52.32579535447397], [-2.085316072423437, 52.325784519749206], [-2.0853511475486384, 52.325775988710056], [-2.0853695420285128, 52.325786173856855], [-2.0853521249931544, 52.32583463644803], [-2.0853200440924957, 52.32583456889154]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ba24ae281d9051ec09989b3c0d3f84f0.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_70d177ae4d5cfd56decf0f2fca00c082 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e2f3990b9f66fe573a89cd2b81205a23 = $(`&lt;div id=&quot;html_e2f3990b9f66fe573a89cd2b81205a23&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 19&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 25.6 sqm&lt;/div&gt;`)[0];\n",
" popup_70d177ae4d5cfd56decf0f2fca00c082.setContent(html_e2f3990b9f66fe573a89cd2b81205a23);\n",
" \n",
" \n",
"\n",
" geo_json_ba24ae281d9051ec09989b3c0d3f84f0.bindPopup(popup_70d177ae4d5cfd56decf0f2fca00c082)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ba24ae281d9051ec09989b3c0d3f84f0.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1_onEachFeature,\n",
" \n",
" style: geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1_add (data) {\n",
" geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1\n",
" .addData(data);\n",
" }\n",
" geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085127253986557, 52.325976917108854], [-2.085112754886848, 52.32595821359759], [-2.0851266175858307, 52.325928351633536], [-2.0851752125840393, 52.32591987560615], [-2.085194176787718, 52.3259302680406], [-2.085209035818705, 52.3259674632206], [-2.085178207964126, 52.32598723517973], [-2.085127253986557, 52.325976917108854]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2879d50e934523f45b4f27fafdb91e42 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c7ffc9b82d4ee46040f5654104af743e = $(`&lt;div id=&quot;html_c7ffc9b82d4ee46040f5654104af743e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 20&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 35.0 sqm&lt;br&gt;Intersecting area: 34.7 sqm&lt;/div&gt;`)[0];\n",
" popup_2879d50e934523f45b4f27fafdb91e42.setContent(html_c7ffc9b82d4ee46040f5654104af743e);\n",
" \n",
" \n",
"\n",
" geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1.bindPopup(popup_2879d50e934523f45b4f27fafdb91e42)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_de7716e4a5bc26b2c8b7b8ccd5e004a1.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_327582b201231c4e56beb7e7f81f6789_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_327582b201231c4e56beb7e7f81f6789_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_327582b201231c4e56beb7e7f81f6789 = L.geoJson(null, {\n",
" onEachFeature: geo_json_327582b201231c4e56beb7e7f81f6789_onEachFeature,\n",
" \n",
" style: geo_json_327582b201231c4e56beb7e7f81f6789_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_327582b201231c4e56beb7e7f81f6789_add (data) {\n",
" geo_json_327582b201231c4e56beb7e7f81f6789\n",
" .addData(data);\n",
" }\n",
" geo_json_327582b201231c4e56beb7e7f81f6789_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0852302298298295, 52.326347543475215], [-2.085227995574284, 52.32634777524057], [-2.085226295942846, 52.326348280823716], [-2.085225123232176, 52.3263488678317], [-2.085223974634619, 52.32634978656082], [-2.0851924405511886, 52.32638316479592], [-2.0851177052400547, 52.32638337885739], [-2.085099145183259, 52.326345198320155], [-2.085124928555888, 52.326333718988636], [-2.085126070371202, 52.32633308884815], [-2.085127155779474, 52.326332120721005], [-2.0851277043250644, 52.32633124198137], [-2.085127952988304, 52.32633007667186], [-2.085127923049374, 52.32631452635135], [-2.085127755422297, 52.32631357710891], [-2.085127265060537, 52.32631267125129], [-2.085125975945966, 52.32631148098053], [-2.0850125114453237, 52.32623622059856], [-2.085044057009825, 52.32622557950599], [-2.085137494556308, 52.32624304378241], [-2.0851398499468177, 52.32624323716621], [-2.0851414226315064, 52.326243103874056], [-2.0851986978610646, 52.326234286227205], [-2.085325482922805, 52.32622670471701], [-2.0853416402555807, 52.32631839390567], [-2.0852810858169883, 52.326347143459294], [-2.0852302298298295, 52.326347543475215]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_327582b201231c4e56beb7e7f81f6789.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b1d9f89ae14838e64faad648dc251a9c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e50b9d5119c367e7f06e04ab99729f58 = $(`&lt;div id=&quot;html_e50b9d5119c367e7f06e04ab99729f58&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 21&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 238.0 sqm&lt;br&gt;Intersecting area: 238.5 sqm&lt;/div&gt;`)[0];\n",
" popup_b1d9f89ae14838e64faad648dc251a9c.setContent(html_e50b9d5119c367e7f06e04ab99729f58);\n",
" \n",
" \n",
"\n",
" geo_json_327582b201231c4e56beb7e7f81f6789.bindPopup(popup_b1d9f89ae14838e64faad648dc251a9c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_327582b201231c4e56beb7e7f81f6789.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4_onEachFeature,\n",
" \n",
" style: geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4_add (data) {\n",
" geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4\n",
" .addData(data);\n",
" }\n",
" geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084911836359595, 52.326347418334045], [-2.0849081674759247, 52.326333343228825], [-2.0849072807285998, 52.326332319887456], [-2.084905998140382, 52.32633146854155], [-2.0849040540585633, 52.326330754324715], [-2.0849022237664245, 52.326330460763906], [-2.0848995871929854, 52.32633054897178], [-2.08485149226927, 52.32633761126305], [-2.084834804188174, 52.32629150268387], [-2.0848619964753357, 52.326279395776], [-2.0849295579633162, 52.32627153549842], [-2.084987879400783, 52.326338266309214], [-2.084969911401699, 52.326347742352155], [-2.084911836359595, 52.326347418334045]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8ff934b16bb4800cbcf014af5ba6846e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c6c866a1130eb2725a33046e13ccbf63 = $(`&lt;div id=&quot;html_c6c866a1130eb2725a33046e13ccbf63&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 22&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 58.0 sqm&lt;br&gt;Intersecting area: 57.6 sqm&lt;/div&gt;`)[0];\n",
" popup_8ff934b16bb4800cbcf014af5ba6846e.setContent(html_c6c866a1130eb2725a33046e13ccbf63);\n",
" \n",
" \n",
"\n",
" geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4.bindPopup(popup_8ff934b16bb4800cbcf014af5ba6846e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e28e9c3f35b82dcc663a07ef23f5b1e4.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_89b1edf132c1a40fcd7250aaebf77ac2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_89b1edf132c1a40fcd7250aaebf77ac2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_89b1edf132c1a40fcd7250aaebf77ac2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_89b1edf132c1a40fcd7250aaebf77ac2_onEachFeature,\n",
" \n",
" style: geo_json_89b1edf132c1a40fcd7250aaebf77ac2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_89b1edf132c1a40fcd7250aaebf77ac2_add (data) {\n",
" geo_json_89b1edf132c1a40fcd7250aaebf77ac2\n",
" .addData(data);\n",
" }\n",
" geo_json_89b1edf132c1a40fcd7250aaebf77ac2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.081221128238047, 52.324207869667674], [-2.081224511924337, 52.32419682377179], [-2.08125610270955, 52.324196712078475], [-2.081286431484541, 52.3242268217986], [-2.0812389173612926, 52.32423682831067], [-2.081221128238047, 52.324207869667674]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_89b1edf132c1a40fcd7250aaebf77ac2.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3fd1580c8502b9b5687c981df3417705 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d804fd27e4dad916dc6d2bd64bfd3770 = $(`&lt;div id=&quot;html_d804fd27e4dad916dc6d2bd64bfd3770&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 23&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.5 sqm&lt;/div&gt;`)[0];\n",
" popup_3fd1580c8502b9b5687c981df3417705.setContent(html_d804fd27e4dad916dc6d2bd64bfd3770);\n",
" \n",
" \n",
"\n",
" geo_json_89b1edf132c1a40fcd7250aaebf77ac2.bindPopup(popup_3fd1580c8502b9b5687c981df3417705)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_89b1edf132c1a40fcd7250aaebf77ac2.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a = L.geoJson(null, {\n",
" onEachFeature: geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a_onEachFeature,\n",
" \n",
" style: geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a_add (data) {\n",
" geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a\n",
" .addData(data);\n",
" }\n",
" geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.082401568673088, 52.32648383227161], [-2.0823700337904123, 52.32646442112491], [-2.0823700883294833, 52.32642675127212], [-2.0824005828992953, 52.3263989484386], [-2.0824383454208686, 52.32639813087111], [-2.0824410166963463, 52.32639775950394], [-2.082443280451162, 52.32639681394857], [-2.0824708752703427, 52.3263798669912], [-2.08250879800614, 52.326372133131855], [-2.0825532188054097, 52.326411217445134], [-2.082479642561697, 52.326465674962726], [-2.082401568673088, 52.32648383227161]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_56aa2399616a057a3db8cf8f07284907 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_94b7e18efdc22ba45ab444724f47e14a = $(`&lt;div id=&quot;html_94b7e18efdc22ba45ab444724f47e14a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 24&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 93.0 sqm&lt;br&gt;Intersecting area: 93.1 sqm&lt;/div&gt;`)[0];\n",
" popup_56aa2399616a057a3db8cf8f07284907.setContent(html_94b7e18efdc22ba45ab444724f47e14a);\n",
" \n",
" \n",
"\n",
" geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a.bindPopup(popup_56aa2399616a057a3db8cf8f07284907)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_13fef7c7c60d55bc7e1c6ff5b93e054a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_2ae9c8548ed765007e0db4b42ae8e650_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2ae9c8548ed765007e0db4b42ae8e650_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2ae9c8548ed765007e0db4b42ae8e650 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2ae9c8548ed765007e0db4b42ae8e650_onEachFeature,\n",
" \n",
" style: geo_json_2ae9c8548ed765007e0db4b42ae8e650_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2ae9c8548ed765007e0db4b42ae8e650_add (data) {\n",
" geo_json_2ae9c8548ed765007e0db4b42ae8e650\n",
" .addData(data);\n",
" }\n",
" geo_json_2ae9c8548ed765007e0db4b42ae8e650_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.082167247905899, 52.32701415227178], [-2.0821797157620954, 52.32699046609826], [-2.082197536262118, 52.32696512288759], [-2.0822573098145445, 52.326964670304974], [-2.082305061791391, 52.327003739790435], [-2.0822415233212035, 52.3270414225278], [-2.082167247905899, 52.32701415227178]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2ae9c8548ed765007e0db4b42ae8e650.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_84f20fe67bcad2c1ae3e0679a3bb2051 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f4a9190abf0cc5bf3ed03df384801857 = $(`&lt;div id=&quot;html_f4a9190abf0cc5bf3ed03df384801857&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 25&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 51.0 sqm&lt;br&gt;Intersecting area: 50.9 sqm&lt;/div&gt;`)[0];\n",
" popup_84f20fe67bcad2c1ae3e0679a3bb2051.setContent(html_f4a9190abf0cc5bf3ed03df384801857);\n",
" \n",
" \n",
"\n",
" geo_json_2ae9c8548ed765007e0db4b42ae8e650.bindPopup(popup_84f20fe67bcad2c1ae3e0679a3bb2051)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2ae9c8548ed765007e0db4b42ae8e650.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_376765ac0ef39aa5b7d4ee8d56bda373_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_376765ac0ef39aa5b7d4ee8d56bda373_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_376765ac0ef39aa5b7d4ee8d56bda373 = L.geoJson(null, {\n",
" onEachFeature: geo_json_376765ac0ef39aa5b7d4ee8d56bda373_onEachFeature,\n",
" \n",
" style: geo_json_376765ac0ef39aa5b7d4ee8d56bda373_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_376765ac0ef39aa5b7d4ee8d56bda373_add (data) {\n",
" geo_json_376765ac0ef39aa5b7d4ee8d56bda373\n",
" .addData(data);\n",
" }\n",
" geo_json_376765ac0ef39aa5b7d4ee8d56bda373_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0813059393069255, 52.327275863962114], [-2.08124274842033, 52.32725743721826], [-2.0812267531240476, 52.32721996543537], [-2.0812601092022973, 52.32718121356726], [-2.0813775834435675, 52.32718103715248], [-2.0813962183826678, 52.32719210109223], [-2.0813812133347893, 52.32723906904667], [-2.0813059393069255, 52.327275863962114]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_376765ac0ef39aa5b7d4ee8d56bda373.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9fd126cd1e3f4541c74c5c23b23f411f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_de959c3d33a90bc4bc561afe8daf5d70 = $(`&lt;div id=&quot;html_de959c3d33a90bc4bc561afe8daf5d70&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 26&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 90.0 sqm&lt;br&gt;Intersecting area: 89.7 sqm&lt;/div&gt;`)[0];\n",
" popup_9fd126cd1e3f4541c74c5c23b23f411f.setContent(html_de959c3d33a90bc4bc561afe8daf5d70);\n",
" \n",
" \n",
"\n",
" geo_json_376765ac0ef39aa5b7d4ee8d56bda373.bindPopup(popup_9fd126cd1e3f4541c74c5c23b23f411f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_376765ac0ef39aa5b7d4ee8d56bda373.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9f6744237490029429e478f758ef27bd_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9f6744237490029429e478f758ef27bd_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9f6744237490029429e478f758ef27bd = L.geoJson(null, {\n",
" onEachFeature: geo_json_9f6744237490029429e478f758ef27bd_onEachFeature,\n",
" \n",
" style: geo_json_9f6744237490029429e478f758ef27bd_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9f6744237490029429e478f758ef27bd_add (data) {\n",
" geo_json_9f6744237490029429e478f758ef27bd\n",
" .addData(data);\n",
" }\n",
" geo_json_9f6744237490029429e478f758ef27bd_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0835154629904014, 52.326078489744305], [-2.083484125411851, 52.3260579909416], [-2.083485535317728, 52.32603925616906], [-2.08351110433898, 52.32603767914206], [-2.083563486236576, 52.32602965959364], [-2.0835795108823554, 52.32606010700668], [-2.08354898074088, 52.32607866465465], [-2.0835154629904014, 52.326078489744305]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9f6744237490029429e478f758ef27bd.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f5663758f4dad904c80544beb0114e19 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ca7e91063c1f586066a84fb2ce302666 = $(`&lt;div id=&quot;html_ca7e91063c1f586066a84fb2ce302666&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 27&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 25.4 sqm&lt;/div&gt;`)[0];\n",
" popup_f5663758f4dad904c80544beb0114e19.setContent(html_ca7e91063c1f586066a84fb2ce302666);\n",
" \n",
" \n",
"\n",
" geo_json_9f6744237490029429e478f758ef27bd.bindPopup(popup_f5663758f4dad904c80544beb0114e19)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9f6744237490029429e478f758ef27bd.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_6938afc1aaffd1ba4d14c74f11eb2162_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6938afc1aaffd1ba4d14c74f11eb2162_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6938afc1aaffd1ba4d14c74f11eb2162 = L.geoJson(null, {\n",
" onEachFeature: geo_json_6938afc1aaffd1ba4d14c74f11eb2162_onEachFeature,\n",
" \n",
" style: geo_json_6938afc1aaffd1ba4d14c74f11eb2162_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6938afc1aaffd1ba4d14c74f11eb2162_add (data) {\n",
" geo_json_6938afc1aaffd1ba4d14c74f11eb2162\n",
" .addData(data);\n",
" }\n",
" geo_json_6938afc1aaffd1ba4d14c74f11eb2162_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0832349297310873, 52.32609427194617], [-2.0832495781025986, 52.326049262964766], [-2.0833055273053844, 52.32604682751577], [-2.0833451166630166, 52.32603998044155], [-2.0833596112728743, 52.326086256206494], [-2.0832514080797675, 52.32610550883393], [-2.0832349297310873, 52.32609427194617]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6938afc1aaffd1ba4d14c74f11eb2162.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_bf7a74d6fa31d8fcfbab6a2b14e163e7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_fed8f3f5e7ce507ff2b7294bcb0ea708 = $(`&lt;div id=&quot;html_fed8f3f5e7ce507ff2b7294bcb0ea708&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 28&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 43.0 sqm&lt;br&gt;Intersecting area: 42.8 sqm&lt;/div&gt;`)[0];\n",
" popup_bf7a74d6fa31d8fcfbab6a2b14e163e7.setContent(html_fed8f3f5e7ce507ff2b7294bcb0ea708);\n",
" \n",
" \n",
"\n",
" geo_json_6938afc1aaffd1ba4d14c74f11eb2162.bindPopup(popup_bf7a74d6fa31d8fcfbab6a2b14e163e7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6938afc1aaffd1ba4d14c74f11eb2162.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_aaba7a3fa8779a2489f42c29318d9af8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_aaba7a3fa8779a2489f42c29318d9af8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_aaba7a3fa8779a2489f42c29318d9af8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_aaba7a3fa8779a2489f42c29318d9af8_onEachFeature,\n",
" \n",
" style: geo_json_aaba7a3fa8779a2489f42c29318d9af8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_aaba7a3fa8779a2489f42c29318d9af8_add (data) {\n",
" geo_json_aaba7a3fa8779a2489f42c29318d9af8\n",
" .addData(data);\n",
" }\n",
" geo_json_aaba7a3fa8779a2489f42c29318d9af8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0841500164757605, 52.326186271036406], [-2.08410145020877, 52.32618541929384], [-2.084086106215802, 52.32617438129819], [-2.0841017912889184, 52.32612868641834], [-2.0841525532283605, 52.326128339996586], [-2.0841820829493614, 52.326147032887036], [-2.0841755653846903, 52.326169474375966], [-2.0841500164757605, 52.326186271036406]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_aaba7a3fa8779a2489f42c29318d9af8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3b92cb19d58dc550709afaabf08e61fd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d1e9c6b3f754f8c633cd006e65d7ddd9 = $(`&lt;div id=&quot;html_d1e9c6b3f754f8c633cd006e65d7ddd9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 29&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 33.0 sqm&lt;br&gt;Intersecting area: 33.3 sqm&lt;/div&gt;`)[0];\n",
" popup_3b92cb19d58dc550709afaabf08e61fd.setContent(html_d1e9c6b3f754f8c633cd006e65d7ddd9);\n",
" \n",
" \n",
"\n",
" geo_json_aaba7a3fa8779a2489f42c29318d9af8.bindPopup(popup_3b92cb19d58dc550709afaabf08e61fd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_aaba7a3fa8779a2489f42c29318d9af8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_56b5d5c269f223b91c5b1666183c6079_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_56b5d5c269f223b91c5b1666183c6079_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_56b5d5c269f223b91c5b1666183c6079 = L.geoJson(null, {\n",
" onEachFeature: geo_json_56b5d5c269f223b91c5b1666183c6079_onEachFeature,\n",
" \n",
" style: geo_json_56b5d5c269f223b91c5b1666183c6079_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_56b5d5c269f223b91c5b1666183c6079_add (data) {\n",
" geo_json_56b5d5c269f223b91c5b1666183c6079\n",
" .addData(data);\n",
" }\n",
" geo_json_56b5d5c269f223b91c5b1666183c6079_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0838866056279732, 52.32621337828822], [-2.083840569531932, 52.32621360255848], [-2.083807603049464, 52.32619390243455], [-2.083807215591019, 52.32615669588295], [-2.083838048206546, 52.32612822086973], [-2.083869184166612, 52.326127403969316], [-2.0839322729008365, 52.32615567454741], [-2.083933127256284, 52.3261929796552], [-2.0838866056279732, 52.32621337828822]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_56b5d5c269f223b91c5b1666183c6079.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ddaf8b33f471352526f23d548b699c65 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_220327809c23f969f23463a8903cf42c = $(`&lt;div id=&quot;html_220327809c23f969f23463a8903cf42c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 30&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 65.0 sqm&lt;br&gt;Intersecting area: 65.3 sqm&lt;/div&gt;`)[0];\n",
" popup_ddaf8b33f471352526f23d548b699c65.setContent(html_220327809c23f969f23463a8903cf42c);\n",
" \n",
" \n",
"\n",
" geo_json_56b5d5c269f223b91c5b1666183c6079.bindPopup(popup_ddaf8b33f471352526f23d548b699c65)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_56b5d5c269f223b91c5b1666183c6079.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_e6a03e28d983ed36e126a6a4fdadf615_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e6a03e28d983ed36e126a6a4fdadf615_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e6a03e28d983ed36e126a6a4fdadf615 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e6a03e28d983ed36e126a6a4fdadf615_onEachFeature,\n",
" \n",
" style: geo_json_e6a03e28d983ed36e126a6a4fdadf615_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e6a03e28d983ed36e126a6a4fdadf615_add (data) {\n",
" geo_json_e6a03e28d983ed36e126a6a4fdadf615\n",
" .addData(data);\n",
" }\n",
" geo_json_e6a03e28d983ed36e126a6a4fdadf615_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0838984338608513, 52.3268507108736], [-2.083896392711008, 52.32682281665204], [-2.0839290194159195, 52.326793120368954], [-2.0839912792623134, 52.326803955922024], [-2.0839454545228793, 52.326851678877816], [-2.0838984338608513, 52.3268507108736]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e6a03e28d983ed36e126a6a4fdadf615.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_97a1a740ab56e890c32a3ed66ed89419 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9829de68398ec33b6a30c3f340c87ded = $(`&lt;div id=&quot;html_9829de68398ec33b6a30c3f340c87ded&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 31&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 27.0 sqm&lt;br&gt;Intersecting area: 27.2 sqm&lt;/div&gt;`)[0];\n",
" popup_97a1a740ab56e890c32a3ed66ed89419.setContent(html_9829de68398ec33b6a30c3f340c87ded);\n",
" \n",
" \n",
"\n",
" geo_json_e6a03e28d983ed36e126a6a4fdadf615.bindPopup(popup_97a1a740ab56e890c32a3ed66ed89419)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e6a03e28d983ed36e126a6a4fdadf615.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_bbb91507ac6f91d8c65e2a07f9942c05_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_bbb91507ac6f91d8c65e2a07f9942c05_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_bbb91507ac6f91d8c65e2a07f9942c05 = L.geoJson(null, {\n",
" onEachFeature: geo_json_bbb91507ac6f91d8c65e2a07f9942c05_onEachFeature,\n",
" \n",
" style: geo_json_bbb91507ac6f91d8c65e2a07f9942c05_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_bbb91507ac6f91d8c65e2a07f9942c05_add (data) {\n",
" geo_json_bbb91507ac6f91d8c65e2a07f9942c05\n",
" .addData(data);\n",
" }\n",
" geo_json_bbb91507ac6f91d8c65e2a07f9942c05_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0839277830804797, 52.32687538063264], [-2.0839899257369283, 52.326865403968554], [-2.0840000336385907, 52.326896818389585], [-2.083943482270175, 52.3268964127944], [-2.0839277830804797, 52.32687538063264]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_bbb91507ac6f91d8c65e2a07f9942c05.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_99d5206839c24369884df28ed250eb23 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3c96cd483dcc1b42d62631c9662c9a88 = $(`&lt;div id=&quot;html_3c96cd483dcc1b42d62631c9662c9a88&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 32&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_99d5206839c24369884df28ed250eb23.setContent(html_3c96cd483dcc1b42d62631c9662c9a88);\n",
" \n",
" \n",
"\n",
" geo_json_bbb91507ac6f91d8c65e2a07f9942c05.bindPopup(popup_99d5206839c24369884df28ed250eb23)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_bbb91507ac6f91d8c65e2a07f9942c05.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_888a886f8872fdcbe74156530ce79ae4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_888a886f8872fdcbe74156530ce79ae4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_888a886f8872fdcbe74156530ce79ae4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_888a886f8872fdcbe74156530ce79ae4_onEachFeature,\n",
" \n",
" style: geo_json_888a886f8872fdcbe74156530ce79ae4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_888a886f8872fdcbe74156530ce79ae4_add (data) {\n",
" geo_json_888a886f8872fdcbe74156530ce79ae4\n",
" .addData(data);\n",
" }\n",
" geo_json_888a886f8872fdcbe74156530ce79ae4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0831698262891574, 52.32704066273883], [-2.0830892665800556, 52.32703257268779], [-2.083087292962019, 52.32703253901793], [-2.0830850119961375, 52.32703292540698], [-2.083083346327934, 52.32703357387627], [-2.0830513324885973, 52.327050133018076], [-2.0830059539881143, 52.327050165009425], [-2.082987249742022, 52.3270164316999], [-2.0829863820090124, 52.32701536067808], [-2.0829847791891245, 52.327014315350965], [-2.0829443758335375, 52.32699525762888], [-2.0829590388740296, 52.32697417608271], [-2.082979481438173, 52.3269732851386], [-2.0829810027367612, 52.32697311864544], [-2.082982769971015, 52.326972642720655], [-2.082984272585792, 52.32697190086699], [-2.08298540943615, 52.32697094530962], [-2.082986098472185, 52.326969839929106], [-2.0829862289030836, 52.32696819103415], [-2.0829734630785937, 52.326911062849526], [-2.083004401846881, 52.326892450223355], [-2.083049753234873, 52.32689212786843], [-2.08308266932925, 52.326893510720716], [-2.0831125500447403, 52.326934966797424], [-2.0831135144469384, 52.32693594514966], [-2.0831145589497626, 52.32693660069634], [-2.0831164751355464, 52.32693730866912], [-2.083229659380556, 52.326965781595945], [-2.083229731094213, 52.32700387569565], [-2.0831698262891574, 52.32704066273883]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_888a886f8872fdcbe74156530ce79ae4.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9792b6df7b46ffa6178abeb1a5b0a546 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_30a3bb2b3b147b1fbf6564ba7a67f068 = $(`&lt;div id=&quot;html_30a3bb2b3b147b1fbf6564ba7a67f068&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 33&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 219.0 sqm&lt;br&gt;Intersecting area: 218.9 sqm&lt;/div&gt;`)[0];\n",
" popup_9792b6df7b46ffa6178abeb1a5b0a546.setContent(html_30a3bb2b3b147b1fbf6564ba7a67f068);\n",
" \n",
" \n",
"\n",
" geo_json_888a886f8872fdcbe74156530ce79ae4.bindPopup(popup_9792b6df7b46ffa6178abeb1a5b0a546)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_888a886f8872fdcbe74156530ce79ae4.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9e0b252caa18a87f2abc03b992bd0563_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9e0b252caa18a87f2abc03b992bd0563_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9e0b252caa18a87f2abc03b992bd0563 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9e0b252caa18a87f2abc03b992bd0563_onEachFeature,\n",
" \n",
" style: geo_json_9e0b252caa18a87f2abc03b992bd0563_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9e0b252caa18a87f2abc03b992bd0563_add (data) {\n",
" geo_json_9e0b252caa18a87f2abc03b992bd0563\n",
" .addData(data);\n",
" }\n",
" geo_json_9e0b252caa18a87f2abc03b992bd0563_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0836880897942383, 52.32700459554872], [-2.083686984657472, 52.327005242732284], [-2.0836859505829293, 52.32700622429605], [-2.0836852639247736, 52.32700780076615], [-2.0836799126840595, 52.327049715956214], [-2.0836482692565825, 52.327048669497884], [-2.0836037612864846, 52.32700313429962], [-2.0836467549990108, 52.32694475561146], [-2.0836669086559882, 52.32692767880924], [-2.0837255430427732, 52.32692776030702], [-2.0837435682697065, 52.32693893578604], [-2.083728853668351, 52.32698527631592], [-2.0836880897942383, 52.32700459554872]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9e0b252caa18a87f2abc03b992bd0563.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8ed46ced57200b10a43c4f1279722920 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e43ad560c495dc18c45e2ffdf59d6596 = $(`&lt;div id=&quot;html_e43ad560c495dc18c45e2ffdf59d6596&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 34&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 76.0 sqm&lt;br&gt;Intersecting area: 75.5 sqm&lt;/div&gt;`)[0];\n",
" popup_8ed46ced57200b10a43c4f1279722920.setContent(html_e43ad560c495dc18c45e2ffdf59d6596);\n",
" \n",
" \n",
"\n",
" geo_json_9e0b252caa18a87f2abc03b992bd0563.bindPopup(popup_8ed46ced57200b10a43c4f1279722920)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9e0b252caa18a87f2abc03b992bd0563.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_c4070d7b1915a461193901427f2b135c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c4070d7b1915a461193901427f2b135c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c4070d7b1915a461193901427f2b135c = L.geoJson(null, {\n",
" onEachFeature: geo_json_c4070d7b1915a461193901427f2b135c_onEachFeature,\n",
" \n",
" style: geo_json_c4070d7b1915a461193901427f2b135c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c4070d7b1915a461193901427f2b135c_add (data) {\n",
" geo_json_c4070d7b1915a461193901427f2b135c\n",
" .addData(data);\n",
" }\n",
" geo_json_c4070d7b1915a461193901427f2b135c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0796416972925678, 52.32696892707339], [-2.0796425002715115, 52.326949577832096], [-2.0796838570775513, 52.326930198459294], [-2.0797191631863114, 52.32692171749105], [-2.079737363974329, 52.3269323558515], [-2.079704711346162, 52.32698021118112], [-2.0796416972925678, 52.32696892707339]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c4070d7b1915a461193901427f2b135c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_33a8361e3ccf169095342ddbb3c77288 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d770f94a9b92355708c5b3650bc4f797 = $(`&lt;div id=&quot;html_d770f94a9b92355708c5b3650bc4f797&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 35&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 26.0 sqm&lt;/div&gt;`)[0];\n",
" popup_33a8361e3ccf169095342ddbb3c77288.setContent(html_d770f94a9b92355708c5b3650bc4f797);\n",
" \n",
" \n",
"\n",
" geo_json_c4070d7b1915a461193901427f2b135c.bindPopup(popup_33a8361e3ccf169095342ddbb3c77288)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c4070d7b1915a461193901427f2b135c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_1e765e77cfa525c0fe2c80c92a65e763_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1e765e77cfa525c0fe2c80c92a65e763_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1e765e77cfa525c0fe2c80c92a65e763 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1e765e77cfa525c0fe2c80c92a65e763_onEachFeature,\n",
" \n",
" style: geo_json_1e765e77cfa525c0fe2c80c92a65e763_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1e765e77cfa525c0fe2c80c92a65e763_add (data) {\n",
" geo_json_1e765e77cfa525c0fe2c80c92a65e763\n",
" .addData(data);\n",
" }\n",
" geo_json_1e765e77cfa525c0fe2c80c92a65e763_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0810044163855674, 52.32728530557974], [-2.08100300987483, 52.32728566435416], [-2.081001754799079, 52.32728619294257], [-2.0810002718021967, 52.327287252109336], [-2.0809657817208724, 52.32732150149676], [-2.0809073287288915, 52.32732140052125], [-2.0808617634001068, 52.32730287246363], [-2.08087319740443, 52.32725664062982], [-2.0808731898252986, 52.32725570655426], [-2.0808727372843414, 52.327254573201], [-2.080871824190145, 52.327253548947354], [-2.0808705123196813, 52.32725270387103], [-2.080868888333786, 52.32725209455044], [-2.0808670638265583, 52.32725176046811], [-2.0808651606284085, 52.327251725816836], [-2.0808633078752297, 52.32725199229985], [-2.080842789898969, 52.327258275248795], [-2.0808410101372083, 52.327259143123314], [-2.0808399187127806, 52.32726009503644], [-2.080839355373824, 52.3272609602797], [-2.080839094399996, 52.32726187835671], [-2.0808355504323526, 52.32729378249306], [-2.080759280813874, 52.32728469359334], [-2.08075920797607, 52.327244823034015], [-2.080804180692543, 52.32722658074734], [-2.0808371099668355, 52.327230256712376], [-2.0808398038170988, 52.327230162262765], [-2.0808419363081176, 52.32722960880152], [-2.0808431531287983, 52.327229024503296], [-2.08084414518069, 52.32722829651814], [-2.080844864105246, 52.32722745723642], [-2.080845280625407, 52.32722654354953], [-2.0808471069731396, 52.32720862933143], [-2.0808909826491537, 52.32718189563075], [-2.0809225042449238, 52.327181299501184], [-2.08099768952842, 52.32719048164188], [-2.0810280658005307, 52.327208656895195], [-2.081029891851822, 52.32724905937064], [-2.081030097531744, 52.32724999960298], [-2.08103079800767, 52.327251102215435], [-2.0810319442760874, 52.327252055287026], [-2.0810334569748297, 52.32725279144436], [-2.081035230375786, 52.327253261306936], [-2.0810580989623033, 52.32725496359564], [-2.0810572931369022, 52.327275628111614], [-2.0810044163855674, 52.32728530557974]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1e765e77cfa525c0fe2c80c92a65e763.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1a74e609cbb7dff6099f578e84d23f8b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_101430464bdccde76d7f879bd4490764 = $(`&lt;div id=&quot;html_101430464bdccde76d7f879bd4490764&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 36&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 197.1 sqm&lt;/div&gt;`)[0];\n",
" popup_1a74e609cbb7dff6099f578e84d23f8b.setContent(html_101430464bdccde76d7f879bd4490764);\n",
" \n",
" \n",
"\n",
" geo_json_1e765e77cfa525c0fe2c80c92a65e763.bindPopup(popup_1a74e609cbb7dff6099f578e84d23f8b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1e765e77cfa525c0fe2c80c92a65e763.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_87217847f9afb76e64c096d164f8e47a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_87217847f9afb76e64c096d164f8e47a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_87217847f9afb76e64c096d164f8e47a = L.geoJson(null, {\n",
" onEachFeature: geo_json_87217847f9afb76e64c096d164f8e47a_onEachFeature,\n",
" \n",
" style: geo_json_87217847f9afb76e64c096d164f8e47a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_87217847f9afb76e64c096d164f8e47a_add (data) {\n",
" geo_json_87217847f9afb76e64c096d164f8e47a\n",
" .addData(data);\n",
" }\n",
" geo_json_87217847f9afb76e64c096d164f8e47a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079930341450826, 52.32185593204424], [-2.079911406243686, 52.32184532386837], [-2.0799113544508536, 52.32181666763402], [-2.0799425452534885, 52.32179751261783], [-2.0799776643278642, 52.32180795606237], [-2.079971280586459, 52.32184761707816], [-2.079930341450826, 52.32185593204424]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_87217847f9afb76e64c096d164f8e47a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4c9e11e58c1fa3048f49b1d4911b1633 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9a3e1d00230864f01fdc2a0a38a073cb = $(`&lt;div id=&quot;html_9a3e1d00230864f01fdc2a0a38a073cb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 37&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 22.3 sqm&lt;/div&gt;`)[0];\n",
" popup_4c9e11e58c1fa3048f49b1d4911b1633.setContent(html_9a3e1d00230864f01fdc2a0a38a073cb);\n",
" \n",
" \n",
"\n",
" geo_json_87217847f9afb76e64c096d164f8e47a.bindPopup(popup_4c9e11e58c1fa3048f49b1d4911b1633)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_87217847f9afb76e64c096d164f8e47a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_69d7a9b289d7fcd1673bf700404d2cbe_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_69d7a9b289d7fcd1673bf700404d2cbe_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_69d7a9b289d7fcd1673bf700404d2cbe = L.geoJson(null, {\n",
" onEachFeature: geo_json_69d7a9b289d7fcd1673bf700404d2cbe_onEachFeature,\n",
" \n",
" style: geo_json_69d7a9b289d7fcd1673bf700404d2cbe_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_69d7a9b289d7fcd1673bf700404d2cbe_add (data) {\n",
" geo_json_69d7a9b289d7fcd1673bf700404d2cbe\n",
" .addData(data);\n",
" }\n",
" geo_json_69d7a9b289d7fcd1673bf700404d2cbe_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0796526082466515, 52.32189219971983], [-2.0796521272352453, 52.321885053815414], [-2.079680705284639, 52.321868966747104], [-2.0797287352162637, 52.3218444798072], [-2.0797288609338853, 52.3218629964853], [-2.079697418734013, 52.32189171089806], [-2.0796526082466515, 52.32189219971983]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_69d7a9b289d7fcd1673bf700404d2cbe.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d348131f9656e9b5152e6a18e0a47a13 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d72838e837f9c297d49bd1b3d95c30aa = $(`&lt;div id=&quot;html_d72838e837f9c297d49bd1b3d95c30aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 38&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 53.0 sqm&lt;br&gt;Intersecting area: 12.6 sqm&lt;/div&gt;`)[0];\n",
" popup_d348131f9656e9b5152e6a18e0a47a13.setContent(html_d72838e837f9c297d49bd1b3d95c30aa);\n",
" \n",
" \n",
"\n",
" geo_json_69d7a9b289d7fcd1673bf700404d2cbe.bindPopup(popup_d348131f9656e9b5152e6a18e0a47a13)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_69d7a9b289d7fcd1673bf700404d2cbe.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_19bbc86cac7fcfa46251e447c90ad49e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_19bbc86cac7fcfa46251e447c90ad49e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_19bbc86cac7fcfa46251e447c90ad49e = L.geoJson(null, {\n",
" onEachFeature: geo_json_19bbc86cac7fcfa46251e447c90ad49e_onEachFeature,\n",
" \n",
" style: geo_json_19bbc86cac7fcfa46251e447c90ad49e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_19bbc86cac7fcfa46251e447c90ad49e_add (data) {\n",
" geo_json_19bbc86cac7fcfa46251e447c90ad49e\n",
" .addData(data);\n",
" }\n",
" geo_json_19bbc86cac7fcfa46251e447c90ad49e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0803228323263743, 52.32185372757861], [-2.080340342591404, 52.32181484290014], [-2.080400340318766, 52.32181480195036], [-2.0804173635841265, 52.32183328766612], [-2.0803693843123345, 52.32186455957794], [-2.0803228323263743, 52.32185372757861]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_19bbc86cac7fcfa46251e447c90ad49e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8650b511f666eebdfd6d73e0ec26d700 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ab7389702b6bc6ca72203bdbd35e5f92 = $(`&lt;div id=&quot;html_ab7389702b6bc6ca72203bdbd35e5f92&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 39&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 24.3 sqm&lt;/div&gt;`)[0];\n",
" popup_8650b511f666eebdfd6d73e0ec26d700.setContent(html_ab7389702b6bc6ca72203bdbd35e5f92);\n",
" \n",
" \n",
"\n",
" geo_json_19bbc86cac7fcfa46251e447c90ad49e.bindPopup(popup_8650b511f666eebdfd6d73e0ec26d700)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_19bbc86cac7fcfa46251e447c90ad49e.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_823938529f6122caab4137c6534ef4c1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_823938529f6122caab4137c6534ef4c1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_823938529f6122caab4137c6534ef4c1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_823938529f6122caab4137c6534ef4c1_onEachFeature,\n",
" \n",
" style: geo_json_823938529f6122caab4137c6534ef4c1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_823938529f6122caab4137c6534ef4c1_add (data) {\n",
" geo_json_823938529f6122caab4137c6534ef4c1\n",
" .addData(data);\n",
" }\n",
" geo_json_823938529f6122caab4137c6534ef4c1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079973013531222, 52.32194589409128], [-2.079941019360081, 52.32193542874885], [-2.079926173890608, 52.32189767008529], [-2.0799712231532963, 52.32186047580117], [-2.080017999151295, 52.32185082990358], [-2.0800656595384273, 52.321861279185626], [-2.0800808298427707, 52.32190821390579], [-2.080049422260385, 52.321945407047856], [-2.079973013531222, 52.32194589409128]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_823938529f6122caab4137c6534ef4c1.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_11740be2c1b78aac0a9a0d427889250e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6afef7843086e93f01c984cd512abce9 = $(`&lt;div id=&quot;html_6afef7843086e93f01c984cd512abce9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 40&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 85.0 sqm&lt;br&gt;Intersecting area: 85.1 sqm&lt;/div&gt;`)[0];\n",
" popup_11740be2c1b78aac0a9a0d427889250e.setContent(html_6afef7843086e93f01c984cd512abce9);\n",
" \n",
" \n",
"\n",
" geo_json_823938529f6122caab4137c6534ef4c1.bindPopup(popup_11740be2c1b78aac0a9a0d427889250e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_823938529f6122caab4137c6534ef4c1.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_52f0ea7571f23b59352b7ef7c59e297b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_52f0ea7571f23b59352b7ef7c59e297b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_52f0ea7571f23b59352b7ef7c59e297b = L.geoJson(null, {\n",
" onEachFeature: geo_json_52f0ea7571f23b59352b7ef7c59e297b_onEachFeature,\n",
" \n",
" style: geo_json_52f0ea7571f23b59352b7ef7c59e297b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_52f0ea7571f23b59352b7ef7c59e297b_add (data) {\n",
" geo_json_52f0ea7571f23b59352b7ef7c59e297b\n",
" .addData(data);\n",
" }\n",
" geo_json_52f0ea7571f23b59352b7ef7c59e297b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080396302514722, 52.321908294717105], [-2.0803986217265416, 52.321887114018416], [-2.080447021434622, 52.32188855445627], [-2.080447516334327, 52.32191622685686], [-2.0804293617785685, 52.321918673805946], [-2.080396302514722, 52.321908294717105]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_52f0ea7571f23b59352b7ef7c59e297b.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b23b7d1c77d935e4470e89d39697528b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6edbdfefe933dde95014b0f855dd56c0 = $(`&lt;div id=&quot;html_6edbdfefe933dde95014b0f855dd56c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 41&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 10.3 sqm&lt;/div&gt;`)[0];\n",
" popup_b23b7d1c77d935e4470e89d39697528b.setContent(html_6edbdfefe933dde95014b0f855dd56c0);\n",
" \n",
" \n",
"\n",
" geo_json_52f0ea7571f23b59352b7ef7c59e297b.bindPopup(popup_b23b7d1c77d935e4470e89d39697528b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_52f0ea7571f23b59352b7ef7c59e297b.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_b4faae24b611c6af61404c0030b4dd1d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b4faae24b611c6af61404c0030b4dd1d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b4faae24b611c6af61404c0030b4dd1d = L.geoJson(null, {\n",
" onEachFeature: geo_json_b4faae24b611c6af61404c0030b4dd1d_onEachFeature,\n",
" \n",
" style: geo_json_b4faae24b611c6af61404c0030b4dd1d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b4faae24b611c6af61404c0030b4dd1d_add (data) {\n",
" geo_json_b4faae24b611c6af61404c0030b4dd1d\n",
" .addData(data);\n",
" }\n",
" geo_json_b4faae24b611c6af61404c0030b4dd1d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.07931207724645, 52.322259670332706], [-2.0793268636716737, 52.32223039726517], [-2.079376147945339, 52.32224791652408], [-2.079370828824216, 52.322269628749474], [-2.07931207724645, 52.322259670332706]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b4faae24b611c6af61404c0030b4dd1d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_fd444cef4119bd0b45eac7eecd456d87 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4770ede1923c58ed5c4e13ad919de620 = $(`&lt;div id=&quot;html_4770ede1923c58ed5c4e13ad919de620&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 42&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.5 sqm&lt;/div&gt;`)[0];\n",
" popup_fd444cef4119bd0b45eac7eecd456d87.setContent(html_4770ede1923c58ed5c4e13ad919de620);\n",
" \n",
" \n",
"\n",
" geo_json_b4faae24b611c6af61404c0030b4dd1d.bindPopup(popup_fd444cef4119bd0b45eac7eecd456d87)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b4faae24b611c6af61404c0030b4dd1d.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ee6fa8971cfaa6b5c175788e6523b437_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ee6fa8971cfaa6b5c175788e6523b437_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ee6fa8971cfaa6b5c175788e6523b437 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ee6fa8971cfaa6b5c175788e6523b437_onEachFeature,\n",
" \n",
" style: geo_json_ee6fa8971cfaa6b5c175788e6523b437_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ee6fa8971cfaa6b5c175788e6523b437_add (data) {\n",
" geo_json_ee6fa8971cfaa6b5c175788e6523b437\n",
" .addData(data);\n",
" }\n",
" geo_json_ee6fa8971cfaa6b5c175788e6523b437_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08941090363797, 52.322963587538034], [-2.0893617659563115, 52.32294328090034], [-2.089362911056357, 52.32292401402964], [-2.089395428683289, 52.3229139886561], [-2.0894436119513866, 52.32292596119182], [-2.0894430086960383, 52.322944703523], [-2.08941090363797, 52.322963587538034]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ee6fa8971cfaa6b5c175788e6523b437.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0594ad8b8c29dfcecf0ea0a43ed3aacb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_085e3f8e45644210d11d652021e04cd6 = $(`&lt;div id=&quot;html_085e3f8e45644210d11d652021e04cd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 43&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 21.0 sqm&lt;/div&gt;`)[0];\n",
" popup_0594ad8b8c29dfcecf0ea0a43ed3aacb.setContent(html_085e3f8e45644210d11d652021e04cd6);\n",
" \n",
" \n",
"\n",
" geo_json_ee6fa8971cfaa6b5c175788e6523b437.bindPopup(popup_0594ad8b8c29dfcecf0ea0a43ed3aacb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ee6fa8971cfaa6b5c175788e6523b437.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_aad439235694299fc0501818e67ba691_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_aad439235694299fc0501818e67ba691_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_aad439235694299fc0501818e67ba691 = L.geoJson(null, {\n",
" onEachFeature: geo_json_aad439235694299fc0501818e67ba691_onEachFeature,\n",
" \n",
" style: geo_json_aad439235694299fc0501818e67ba691_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_aad439235694299fc0501818e67ba691_add (data) {\n",
" geo_json_aad439235694299fc0501818e67ba691\n",
" .addData(data);\n",
" }\n",
" geo_json_aad439235694299fc0501818e67ba691_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.088716439234339, 52.32299805063069], [-2.0887336511869607, 52.32297772879947], [-2.0887796105688894, 52.32297751886218], [-2.0887971962743497, 52.32301621471321], [-2.08873445560181, 52.32302691987757], [-2.088716439234339, 52.32299805063069]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_aad439235694299fc0501818e67ba691.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8ad44ba36cef32bcd3f911945cecbadd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7dd3f8c4b6941a55350595a254beadcf = $(`&lt;div id=&quot;html_7dd3f8c4b6941a55350595a254beadcf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 44&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.8 sqm&lt;/div&gt;`)[0];\n",
" popup_8ad44ba36cef32bcd3f911945cecbadd.setContent(html_7dd3f8c4b6941a55350595a254beadcf);\n",
" \n",
" \n",
"\n",
" geo_json_aad439235694299fc0501818e67ba691.bindPopup(popup_8ad44ba36cef32bcd3f911945cecbadd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_aad439235694299fc0501818e67ba691.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_8df75cf418a9c11d71a11d879305de17_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8df75cf418a9c11d71a11d879305de17_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8df75cf418a9c11d71a11d879305de17 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8df75cf418a9c11d71a11d879305de17_onEachFeature,\n",
" \n",
" style: geo_json_8df75cf418a9c11d71a11d879305de17_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8df75cf418a9c11d71a11d879305de17_add (data) {\n",
" geo_json_8df75cf418a9c11d71a11d879305de17\n",
" .addData(data);\n",
" }\n",
" geo_json_8df75cf418a9c11d71a11d879305de17_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080176359636328, 52.32198036629276], [-2.0801786746151327, 52.321959217963105], [-2.0802120461618023, 52.32196059051513], [-2.0802065856650147, 52.32198985554689], [-2.080176359636328, 52.32198036629276]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8df75cf418a9c11d71a11d879305de17.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_614250c2012140f7c536a63df3385566 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d1c4763e3a15cd3aa212d6207d7ed003 = $(`&lt;div id=&quot;html_d1c4763e3a15cd3aa212d6207d7ed003&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 45&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 6.2 sqm&lt;/div&gt;`)[0];\n",
" popup_614250c2012140f7c536a63df3385566.setContent(html_d1c4763e3a15cd3aa212d6207d7ed003);\n",
" \n",
" \n",
"\n",
" geo_json_8df75cf418a9c11d71a11d879305de17.bindPopup(popup_614250c2012140f7c536a63df3385566)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8df75cf418a9c11d71a11d879305de17.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_7520c6103847307bf5048e6aeb19fcff_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7520c6103847307bf5048e6aeb19fcff_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7520c6103847307bf5048e6aeb19fcff = L.geoJson(null, {\n",
" onEachFeature: geo_json_7520c6103847307bf5048e6aeb19fcff_onEachFeature,\n",
" \n",
" style: geo_json_7520c6103847307bf5048e6aeb19fcff_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7520c6103847307bf5048e6aeb19fcff_add (data) {\n",
" geo_json_7520c6103847307bf5048e6aeb19fcff\n",
" .addData(data);\n",
" }\n",
" geo_json_7520c6103847307bf5048e6aeb19fcff_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080014503335089, 52.32207805603871], [-2.0800279604433913, 52.32205714377593], [-2.0800647700032773, 52.322049814214566], [-2.0800794118895958, 52.322079572615756], [-2.0800297870361693, 52.322088740396325], [-2.080014503335089, 52.32207805603871]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7520c6103847307bf5048e6aeb19fcff.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cde621c3ecee579d70eb4683279af4a0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ed083ebaf697dc4b4475ebd08ef61e24 = $(`&lt;div id=&quot;html_ed083ebaf697dc4b4475ebd08ef61e24&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 46&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_cde621c3ecee579d70eb4683279af4a0.setContent(html_ed083ebaf697dc4b4475ebd08ef61e24);\n",
" \n",
" \n",
"\n",
" geo_json_7520c6103847307bf5048e6aeb19fcff.bindPopup(popup_cde621c3ecee579d70eb4683279af4a0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7520c6103847307bf5048e6aeb19fcff.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_4b6833c8af60454af6d13a9fcd7fb92c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4b6833c8af60454af6d13a9fcd7fb92c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4b6833c8af60454af6d13a9fcd7fb92c = L.geoJson(null, {\n",
" onEachFeature: geo_json_4b6833c8af60454af6d13a9fcd7fb92c_onEachFeature,\n",
" \n",
" style: geo_json_4b6833c8af60454af6d13a9fcd7fb92c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4b6833c8af60454af6d13a9fcd7fb92c_add (data) {\n",
" geo_json_4b6833c8af60454af6d13a9fcd7fb92c\n",
" .addData(data);\n",
" }\n",
" geo_json_4b6833c8af60454af6d13a9fcd7fb92c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079944682170148, 52.322287202968596], [-2.0799411390761944, 52.322271853704855], [-2.079940750045685, 52.32227091539049], [-2.07994004277294, 52.32227005011311], [-2.0799271241318027, 52.32225775759019], [-2.079942979410609, 52.32224697836649], [-2.08000670121285, 52.32224846072267], [-2.0799908581570614, 52.32228707001988], [-2.079944682170148, 52.322287202968596]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4b6833c8af60454af6d13a9fcd7fb92c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_bb3469397a8894bd1a98ad63f8eda4f5 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_648330c626bb61851ee3c904e75ff501 = $(`&lt;div id=&quot;html_648330c626bb61851ee3c904e75ff501&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 47&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.3 sqm&lt;/div&gt;`)[0];\n",
" popup_bb3469397a8894bd1a98ad63f8eda4f5.setContent(html_648330c626bb61851ee3c904e75ff501);\n",
" \n",
" \n",
"\n",
" geo_json_4b6833c8af60454af6d13a9fcd7fb92c.bindPopup(popup_bb3469397a8894bd1a98ad63f8eda4f5)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4b6833c8af60454af6d13a9fcd7fb92c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_e6b1a5e4c431a3baaccf5cbc9233d903_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e6b1a5e4c431a3baaccf5cbc9233d903_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e6b1a5e4c431a3baaccf5cbc9233d903 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e6b1a5e4c431a3baaccf5cbc9233d903_onEachFeature,\n",
" \n",
" style: geo_json_e6b1a5e4c431a3baaccf5cbc9233d903_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e6b1a5e4c431a3baaccf5cbc9233d903_add (data) {\n",
" geo_json_e6b1a5e4c431a3baaccf5cbc9233d903\n",
" .addData(data);\n",
" }\n",
" geo_json_e6b1a5e4c431a3baaccf5cbc9233d903_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079619037193743, 52.32243829806133], [-2.0796188680230285, 52.32241035033884], [-2.0796468000660906, 52.32238998302673], [-2.079668677474139, 52.322382059545184], [-2.0796998743711783, 52.32240100146675], [-2.079682115580618, 52.322448963623266], [-2.079619037193743, 52.32243829806133]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e6b1a5e4c431a3baaccf5cbc9233d903.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8bf8dc6e0e4a723f2d5a434d97646da3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_900daf507b09f85218dddb7743b70fa7 = $(`&lt;div id=&quot;html_900daf507b09f85218dddb7743b70fa7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 48&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 29.0 sqm&lt;br&gt;Intersecting area: 28.5 sqm&lt;/div&gt;`)[0];\n",
" popup_8bf8dc6e0e4a723f2d5a434d97646da3.setContent(html_900daf507b09f85218dddb7743b70fa7);\n",
" \n",
" \n",
"\n",
" geo_json_e6b1a5e4c431a3baaccf5cbc9233d903.bindPopup(popup_8bf8dc6e0e4a723f2d5a434d97646da3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e6b1a5e4c431a3baaccf5cbc9233d903.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_57814bdfc6d741481287a797ef02fd80_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_57814bdfc6d741481287a797ef02fd80_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_57814bdfc6d741481287a797ef02fd80 = L.geoJson(null, {\n",
" onEachFeature: geo_json_57814bdfc6d741481287a797ef02fd80_onEachFeature,\n",
" \n",
" style: geo_json_57814bdfc6d741481287a797ef02fd80_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_57814bdfc6d741481287a797ef02fd80_add (data) {\n",
" geo_json_57814bdfc6d741481287a797ef02fd80\n",
" .addData(data);\n",
" }\n",
" geo_json_57814bdfc6d741481287a797ef02fd80_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079900520448635, 52.322763813391965], [-2.079869007542678, 52.32274474497629], [-2.0798540132248995, 52.32272542441679], [-2.079867825851449, 52.32269567816025], [-2.0799456882357883, 52.32268699563046], [-2.079964305991754, 52.32269710415832], [-2.079965100798983, 52.32274392997905], [-2.0799340657789442, 52.32276359104195], [-2.079900520448635, 52.322763813391965]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_57814bdfc6d741481287a797ef02fd80.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b7bd59e094a3cd5f7387049f1a0eb7cd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9b0d605adca481bc94cb14a3fbc1d5a7 = $(`&lt;div id=&quot;html_9b0d605adca481bc94cb14a3fbc1d5a7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 49&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 51.0 sqm&lt;br&gt;Intersecting area: 50.8 sqm&lt;/div&gt;`)[0];\n",
" popup_b7bd59e094a3cd5f7387049f1a0eb7cd.setContent(html_9b0d605adca481bc94cb14a3fbc1d5a7);\n",
" \n",
" \n",
"\n",
" geo_json_57814bdfc6d741481287a797ef02fd80.bindPopup(popup_b7bd59e094a3cd5f7387049f1a0eb7cd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_57814bdfc6d741481287a797ef02fd80.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_10ced9bcf2a913b6f727d447339fc2cf_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_10ced9bcf2a913b6f727d447339fc2cf_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_10ced9bcf2a913b6f727d447339fc2cf = L.geoJson(null, {\n",
" onEachFeature: geo_json_10ced9bcf2a913b6f727d447339fc2cf_onEachFeature,\n",
" \n",
" style: geo_json_10ced9bcf2a913b6f727d447339fc2cf_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_10ced9bcf2a913b6f727d447339fc2cf_add (data) {\n",
" geo_json_10ced9bcf2a913b6f727d447339fc2cf\n",
" .addData(data);\n",
" }\n",
" geo_json_10ced9bcf2a913b6f727d447339fc2cf_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080033334535973, 52.32288866541222], [-2.0800442347782013, 52.322866246328815], [-2.08008079814592, 52.32285951747744], [-2.0800808508822612, 52.32288863310755], [-2.080033334535973, 52.32288866541222]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_10ced9bcf2a913b6f727d447339fc2cf.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_505bcb4a96e8f1aeb31809e39fb2aa38 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_93419b389791757d0fbfc4808c782f1b = $(`&lt;div id=&quot;html_93419b389791757d0fbfc4808c782f1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 50&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.1 sqm&lt;/div&gt;`)[0];\n",
" popup_505bcb4a96e8f1aeb31809e39fb2aa38.setContent(html_93419b389791757d0fbfc4808c782f1b);\n",
" \n",
" \n",
"\n",
" geo_json_10ced9bcf2a913b6f727d447339fc2cf.bindPopup(popup_505bcb4a96e8f1aeb31809e39fb2aa38)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_10ced9bcf2a913b6f727d447339fc2cf.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_945c31663739d7a7fe63b6f6f137630e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_945c31663739d7a7fe63b6f6f137630e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_945c31663739d7a7fe63b6f6f137630e = L.geoJson(null, {\n",
" onEachFeature: geo_json_945c31663739d7a7fe63b6f6f137630e_onEachFeature,\n",
" \n",
" style: geo_json_945c31663739d7a7fe63b6f6f137630e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_945c31663739d7a7fe63b6f6f137630e_add (data) {\n",
" geo_json_945c31663739d7a7fe63b6f6f137630e\n",
" .addData(data);\n",
" }\n",
" geo_json_945c31663739d7a7fe63b6f6f137630e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0801834850079692, 52.32311424426336], [-2.0801210043278306, 52.32311418879861], [-2.0801041283100044, 52.323102679339534], [-2.0801184207407797, 52.32304950067093], [-2.08013529322401, 52.32302021530103], [-2.080183428237631, 52.32301983910938], [-2.08022938609058, 52.32305674044779], [-2.0802292811432954, 52.32308622747797], [-2.0801834850079692, 52.32311424426336]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_945c31663739d7a7fe63b6f6f137630e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4deb9e39fe3ac3b95c4350b9d66fb7a0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_da9a2e50754c93402dfc1d4349b01061 = $(`&lt;div id=&quot;html_da9a2e50754c93402dfc1d4349b01061&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 51&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 69.0 sqm&lt;br&gt;Intersecting area: 69.5 sqm&lt;/div&gt;`)[0];\n",
" popup_4deb9e39fe3ac3b95c4350b9d66fb7a0.setContent(html_da9a2e50754c93402dfc1d4349b01061);\n",
" \n",
" \n",
"\n",
" geo_json_945c31663739d7a7fe63b6f6f137630e.bindPopup(popup_4deb9e39fe3ac3b95c4350b9d66fb7a0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_945c31663739d7a7fe63b6f6f137630e.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_10b853a26446a4c7ab90a10381bb0cc1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_10b853a26446a4c7ab90a10381bb0cc1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_10b853a26446a4c7ab90a10381bb0cc1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_10b853a26446a4c7ab90a10381bb0cc1_onEachFeature,\n",
" \n",
" style: geo_json_10b853a26446a4c7ab90a10381bb0cc1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_10b853a26446a4c7ab90a10381bb0cc1_add (data) {\n",
" geo_json_10b853a26446a4c7ab90a10381bb0cc1\n",
" .addData(data);\n",
" }\n",
" geo_json_10b853a26446a4c7ab90a10381bb0cc1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080179451197349, 52.323194067402476], [-2.0801944388919638, 52.32317317565836], [-2.080242665276473, 52.323182631061435], [-2.0802244757060278, 52.323204077891035], [-2.080179451197349, 52.323194067402476]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_10b853a26446a4c7ab90a10381bb0cc1.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_33e41ce0e33003221d1b15f674c87c6a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_025d0461531503499ec8b7646a1004a2 = $(`&lt;div id=&quot;html_025d0461531503499ec8b7646a1004a2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 52&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 8.7 sqm&lt;/div&gt;`)[0];\n",
" popup_33e41ce0e33003221d1b15f674c87c6a.setContent(html_025d0461531503499ec8b7646a1004a2);\n",
" \n",
" \n",
"\n",
" geo_json_10b853a26446a4c7ab90a10381bb0cc1.bindPopup(popup_33e41ce0e33003221d1b15f674c87c6a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_10b853a26446a4c7ab90a10381bb0cc1.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_cd104395d6f2ba88ab18b1a3d7cca27a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cd104395d6f2ba88ab18b1a3d7cca27a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cd104395d6f2ba88ab18b1a3d7cca27a = L.geoJson(null, {\n",
" onEachFeature: geo_json_cd104395d6f2ba88ab18b1a3d7cca27a_onEachFeature,\n",
" \n",
" style: geo_json_cd104395d6f2ba88ab18b1a3d7cca27a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cd104395d6f2ba88ab18b1a3d7cca27a_add (data) {\n",
" geo_json_cd104395d6f2ba88ab18b1a3d7cca27a\n",
" .addData(data);\n",
" }\n",
" geo_json_cd104395d6f2ba88ab18b1a3d7cca27a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0789600039944522, 52.32234034318387], [-2.078972687383621, 52.322304032243764], [-2.0789771676204167, 52.322292250275], [-2.0790237648436247, 52.32229384264367], [-2.079008183545688, 52.322341486782], [-2.0789600039944522, 52.32234034318387]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cd104395d6f2ba88ab18b1a3d7cca27a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b8aafa0e8d5c43ad066a09f954bf762a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c21231d80585a6f12f88f35294a8e327 = $(`&lt;div id=&quot;html_c21231d80585a6f12f88f35294a8e327&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 53&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 17.0 sqm&lt;br&gt;Intersecting area: 17.4 sqm&lt;/div&gt;`)[0];\n",
" popup_b8aafa0e8d5c43ad066a09f954bf762a.setContent(html_c21231d80585a6f12f88f35294a8e327);\n",
" \n",
" \n",
"\n",
" geo_json_cd104395d6f2ba88ab18b1a3d7cca27a.bindPopup(popup_b8aafa0e8d5c43ad066a09f954bf762a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cd104395d6f2ba88ab18b1a3d7cca27a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_e2c2fc5c443a0095a1e944460516ec3d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e2c2fc5c443a0095a1e944460516ec3d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e2c2fc5c443a0095a1e944460516ec3d = L.geoJson(null, {\n",
" onEachFeature: geo_json_e2c2fc5c443a0095a1e944460516ec3d_onEachFeature,\n",
" \n",
" style: geo_json_e2c2fc5c443a0095a1e944460516ec3d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e2c2fc5c443a0095a1e944460516ec3d_add (data) {\n",
" geo_json_e2c2fc5c443a0095a1e944460516ec3d\n",
" .addData(data);\n",
" }\n",
" geo_json_e2c2fc5c443a0095a1e944460516ec3d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079502030416218, 52.322394463579954], [-2.0794426262116863, 52.322339035030126], [-2.0794585249982465, 52.32231075011941], [-2.0794936487694153, 52.32231058886437], [-2.079538800991418, 52.3223562888307], [-2.0795376480041963, 52.32238576578154], [-2.079502030416218, 52.322394463579954]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e2c2fc5c443a0095a1e944460516ec3d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4b99bd6fa873dfe12b58fea81fa2d914 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ad7014c1fb8c8a0a161f4b0f4b74b659 = $(`&lt;div id=&quot;html_ad7014c1fb8c8a0a161f4b0f4b74b659&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 54&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 38.0 sqm&lt;br&gt;Intersecting area: 37.7 sqm&lt;/div&gt;`)[0];\n",
" popup_4b99bd6fa873dfe12b58fea81fa2d914.setContent(html_ad7014c1fb8c8a0a161f4b0f4b74b659);\n",
" \n",
" \n",
"\n",
" geo_json_e2c2fc5c443a0095a1e944460516ec3d.bindPopup(popup_4b99bd6fa873dfe12b58fea81fa2d914)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e2c2fc5c443a0095a1e944460516ec3d.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_61f7646722ebf2692a7fd7c4bff74f4b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_61f7646722ebf2692a7fd7c4bff74f4b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_61f7646722ebf2692a7fd7c4bff74f4b = L.geoJson(null, {\n",
" onEachFeature: geo_json_61f7646722ebf2692a7fd7c4bff74f4b_onEachFeature,\n",
" \n",
" style: geo_json_61f7646722ebf2692a7fd7c4bff74f4b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_61f7646722ebf2692a7fd7c4bff74f4b_add (data) {\n",
" geo_json_61f7646722ebf2692a7fd7c4bff74f4b\n",
" .addData(data);\n",
" }\n",
" geo_json_61f7646722ebf2692a7fd7c4bff74f4b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080267740932417, 52.32334735938932], [-2.0802512998451226, 52.32331444308856], [-2.0802504644640667, 52.32331333516556], [-2.0802488676441917, 52.32331224843698], [-2.0802073793226117, 52.32329191659807], [-2.080222305344509, 52.32323702485591], [-2.080269186223916, 52.32323508069396], [-2.0803172670881485, 52.32325403341573], [-2.0803328861138604, 52.323281853721795], [-2.080313272669099, 52.32334814824921], [-2.080267740932417, 52.32334735938932]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_61f7646722ebf2692a7fd7c4bff74f4b.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2fd9a0688788858e36ece97affc60b42 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_68c514ab015cff20226ae385f6e3bdc1 = $(`&lt;div id=&quot;html_68c514ab015cff20226ae385f6e3bdc1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 55&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 74.0 sqm&lt;br&gt;Intersecting area: 74.2 sqm&lt;/div&gt;`)[0];\n",
" popup_2fd9a0688788858e36ece97affc60b42.setContent(html_68c514ab015cff20226ae385f6e3bdc1);\n",
" \n",
" \n",
"\n",
" geo_json_61f7646722ebf2692a7fd7c4bff74f4b.bindPopup(popup_2fd9a0688788858e36ece97affc60b42)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_61f7646722ebf2692a7fd7c4bff74f4b.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d9e2ae118d0b13cc0d579c4537d361e8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d9e2ae118d0b13cc0d579c4537d361e8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d9e2ae118d0b13cc0d579c4537d361e8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d9e2ae118d0b13cc0d579c4537d361e8_onEachFeature,\n",
" \n",
" style: geo_json_d9e2ae118d0b13cc0d579c4537d361e8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d9e2ae118d0b13cc0d579c4537d361e8_add (data) {\n",
" geo_json_d9e2ae118d0b13cc0d579c4537d361e8\n",
" .addData(data);\n",
" }\n",
" geo_json_d9e2ae118d0b13cc0d579c4537d361e8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08081607154334, 52.32501986523055], [-2.0807676880912593, 52.3250075162238], [-2.0807683720986194, 52.32498035277248], [-2.080809984192281, 52.32496063209503], [-2.0808598728083116, 52.32495201311209], [-2.0808790379120485, 52.324963925447285], [-2.080877981373994, 52.324991936033], [-2.08081607154334, 52.32501986523055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d9e2ae118d0b13cc0d579c4537d361e8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_03c08c190bc26308c997fa5ea3bc5465 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_48c7b24aa47f771ed1204453dab3dfb6 = $(`&lt;div id=&quot;html_48c7b24aa47f771ed1204453dab3dfb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 56&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 40.0 sqm&lt;br&gt;Intersecting area: 39.6 sqm&lt;/div&gt;`)[0];\n",
" popup_03c08c190bc26308c997fa5ea3bc5465.setContent(html_48c7b24aa47f771ed1204453dab3dfb6);\n",
" \n",
" \n",
"\n",
" geo_json_d9e2ae118d0b13cc0d579c4537d361e8.bindPopup(popup_03c08c190bc26308c997fa5ea3bc5465)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d9e2ae118d0b13cc0d579c4537d361e8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_0d34df843d24caa286de125d1c7b8873_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0d34df843d24caa286de125d1c7b8873_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0d34df843d24caa286de125d1c7b8873 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0d34df843d24caa286de125d1c7b8873_onEachFeature,\n",
" \n",
" style: geo_json_0d34df843d24caa286de125d1c7b8873_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0d34df843d24caa286de125d1c7b8873_add (data) {\n",
" geo_json_0d34df843d24caa286de125d1c7b8873\n",
" .addData(data);\n",
" }\n",
" geo_json_0d34df843d24caa286de125d1c7b8873_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080258068396056, 52.32528106326286], [-2.0801969280904786, 52.32525318316216], [-2.080181613713983, 52.32521488366353], [-2.0802276120614374, 52.325177436932854], [-2.0803019647677568, 52.325176910673505], [-2.0803507327906217, 52.32519657582506], [-2.080365567608421, 52.32525187969085], [-2.0803049882488076, 52.325280805619286], [-2.080258068396056, 52.32528106326286]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0d34df843d24caa286de125d1c7b8873.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cae841ff013bce5fca33c7cf6f53939c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b683ee5aa7476cacd04509b3e8302b4f = $(`&lt;div id=&quot;html_b683ee5aa7476cacd04509b3e8302b4f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 57&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 111.0 sqm&lt;br&gt;Intersecting area: 110.7 sqm&lt;/div&gt;`)[0];\n",
" popup_cae841ff013bce5fca33c7cf6f53939c.setContent(html_b683ee5aa7476cacd04509b3e8302b4f);\n",
" \n",
" \n",
"\n",
" geo_json_0d34df843d24caa286de125d1c7b8873.bindPopup(popup_cae841ff013bce5fca33c7cf6f53939c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0d34df843d24caa286de125d1c7b8873.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c = L.geoJson(null, {\n",
" onEachFeature: geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c_onEachFeature,\n",
" \n",
" style: geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c_add (data) {\n",
" geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c\n",
" .addData(data);\n",
" }\n",
" geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0795238661752435, 52.325586912507674], [-2.0794922937111053, 52.32556675532806], [-2.079494130214262, 52.325546880360875], [-2.079539748222586, 52.32553729027905], [-2.0795736800544606, 52.32555743506171], [-2.0795544361354485, 52.32558728472805], [-2.0795238661752435, 52.325586912507674]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7b0ff9720ea5fceb3aca1bbcd358e679 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_044155d3612688ad04e9779b05c68497 = $(`&lt;div id=&quot;html_044155d3612688ad04e9779b05c68497&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 58&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.6 sqm&lt;/div&gt;`)[0];\n",
" popup_7b0ff9720ea5fceb3aca1bbcd358e679.setContent(html_044155d3612688ad04e9779b05c68497);\n",
" \n",
" \n",
"\n",
" geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c.bindPopup(popup_7b0ff9720ea5fceb3aca1bbcd358e679)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9f99f6a0f0289ebeb0b4d53964ccb43c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d65ce23eaf41ad33de6ac598afb5da82_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d65ce23eaf41ad33de6ac598afb5da82_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d65ce23eaf41ad33de6ac598afb5da82 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d65ce23eaf41ad33de6ac598afb5da82_onEachFeature,\n",
" \n",
" style: geo_json_d65ce23eaf41ad33de6ac598afb5da82_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d65ce23eaf41ad33de6ac598afb5da82_add (data) {\n",
" geo_json_d65ce23eaf41ad33de6ac598afb5da82\n",
" .addData(data);\n",
" }\n",
" geo_json_d65ce23eaf41ad33de6ac598afb5da82_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.088616273919567, 52.32433729271817], [-2.088619613499646, 52.32432638509612], [-2.0886516059779434, 52.32432680064047], [-2.088652637048488, 52.32435661316427], [-2.088632419617283, 52.32435716599358], [-2.088616273919567, 52.32433729271817]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d65ce23eaf41ad33de6ac598afb5da82.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_189c05f86a40c704e06e4a93359d3053 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2703be365a49afe163e323b057dafd8c = $(`&lt;div id=&quot;html_2703be365a49afe163e323b057dafd8c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 59&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.9 sqm&lt;/div&gt;`)[0];\n",
" popup_189c05f86a40c704e06e4a93359d3053.setContent(html_2703be365a49afe163e323b057dafd8c);\n",
" \n",
" \n",
"\n",
" geo_json_d65ce23eaf41ad33de6ac598afb5da82.bindPopup(popup_189c05f86a40c704e06e4a93359d3053)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d65ce23eaf41ad33de6ac598afb5da82.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_58432b727b1f7d52f80cbf26e2a105ed_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_58432b727b1f7d52f80cbf26e2a105ed_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_58432b727b1f7d52f80cbf26e2a105ed = L.geoJson(null, {\n",
" onEachFeature: geo_json_58432b727b1f7d52f80cbf26e2a105ed_onEachFeature,\n",
" \n",
" style: geo_json_58432b727b1f7d52f80cbf26e2a105ed_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_58432b727b1f7d52f80cbf26e2a105ed_add (data) {\n",
" geo_json_58432b727b1f7d52f80cbf26e2a105ed\n",
" .addData(data);\n",
" }\n",
" geo_json_58432b727b1f7d52f80cbf26e2a105ed_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0888282356904972, 52.324888194477246], [-2.088723657483836, 52.32488841533766], [-2.0886765060137944, 52.324860009452806], [-2.0886760591554836, 52.32482228601685], [-2.0887353182032684, 52.32475847211595], [-2.088782550874374, 52.32474842863977], [-2.0888749907382644, 52.32477695585352], [-2.0888898587458766, 52.32479610724021], [-2.088875315522234, 52.32485022662023], [-2.0888282356904972, 52.324888194477246]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_58432b727b1f7d52f80cbf26e2a105ed.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_53a202acfb1f8a1d63cf4d2c49eef706 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c1ad580bc1e443049b3ecfd4273c2363 = $(`&lt;div id=&quot;html_c1ad580bc1e443049b3ecfd4273c2363&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 60&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 173.0 sqm&lt;br&gt;Intersecting area: 172.6 sqm&lt;/div&gt;`)[0];\n",
" popup_53a202acfb1f8a1d63cf4d2c49eef706.setContent(html_c1ad580bc1e443049b3ecfd4273c2363);\n",
" \n",
" \n",
"\n",
" geo_json_58432b727b1f7d52f80cbf26e2a105ed.bindPopup(popup_53a202acfb1f8a1d63cf4d2c49eef706)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_58432b727b1f7d52f80cbf26e2a105ed.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a55d8f4fffb02cb3942dea844fd706d3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a55d8f4fffb02cb3942dea844fd706d3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a55d8f4fffb02cb3942dea844fd706d3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a55d8f4fffb02cb3942dea844fd706d3_onEachFeature,\n",
" \n",
" style: geo_json_a55d8f4fffb02cb3942dea844fd706d3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a55d8f4fffb02cb3942dea844fd706d3_add (data) {\n",
" geo_json_a55d8f4fffb02cb3942dea844fd706d3\n",
" .addData(data);\n",
" }\n",
" geo_json_a55d8f4fffb02cb3942dea844fd706d3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.088765290870836, 52.3251201431807], [-2.0887659690103115, 52.325100540439294], [-2.0888145796305024, 52.325099908649015], [-2.0888155487320064, 52.32512071753006], [-2.0887836769898005, 52.325122256404356], [-2.088765290870836, 52.3251201431807]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a55d8f4fffb02cb3942dea844fd706d3.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2a676cc17a43cf507e7d5900e994b3c7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cc2584f077f823fee2939e43b955eaf2 = $(`&lt;div id=&quot;html_cc2584f077f823fee2939e43b955eaf2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 61&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 7.9 sqm&lt;/div&gt;`)[0];\n",
" popup_2a676cc17a43cf507e7d5900e994b3c7.setContent(html_cc2584f077f823fee2939e43b955eaf2);\n",
" \n",
" \n",
"\n",
" geo_json_a55d8f4fffb02cb3942dea844fd706d3.bindPopup(popup_2a676cc17a43cf507e7d5900e994b3c7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a55d8f4fffb02cb3942dea844fd706d3.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_8ecf7d822d7b27c76abda835ea3c4140_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8ecf7d822d7b27c76abda835ea3c4140_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8ecf7d822d7b27c76abda835ea3c4140 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8ecf7d822d7b27c76abda835ea3c4140_onEachFeature,\n",
" \n",
" style: geo_json_8ecf7d822d7b27c76abda835ea3c4140_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8ecf7d822d7b27c76abda835ea3c4140_add (data) {\n",
" geo_json_8ecf7d822d7b27c76abda835ea3c4140\n",
" .addData(data);\n",
" }\n",
" geo_json_8ecf7d822d7b27c76abda835ea3c4140_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.087736014525491, 52.3232794779197], [-2.087704684648628, 52.323251009509114], [-2.087719676400837, 52.323213228714955], [-2.0877525888194097, 52.323202965262205], [-2.087814902999142, 52.32322328522147], [-2.0877815984344905, 52.32327991054795], [-2.087736014525491, 52.3232794779197]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8ecf7d822d7b27c76abda835ea3c4140.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b7b847455c375f12306195328ce8dd9b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d145b4dd77a1224702b5599eef2e2aed = $(`&lt;div id=&quot;html_d145b4dd77a1224702b5599eef2e2aed&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 62&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 44.0 sqm&lt;br&gt;Intersecting area: 44.2 sqm&lt;/div&gt;`)[0];\n",
" popup_b7b847455c375f12306195328ce8dd9b.setContent(html_d145b4dd77a1224702b5599eef2e2aed);\n",
" \n",
" \n",
"\n",
" geo_json_8ecf7d822d7b27c76abda835ea3c4140.bindPopup(popup_b7b847455c375f12306195328ce8dd9b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8ecf7d822d7b27c76abda835ea3c4140.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_1fd35cd353111b231cadc45f579516b0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1fd35cd353111b231cadc45f579516b0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1fd35cd353111b231cadc45f579516b0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1fd35cd353111b231cadc45f579516b0_onEachFeature,\n",
" \n",
" style: geo_json_1fd35cd353111b231cadc45f579516b0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1fd35cd353111b231cadc45f579516b0_add (data) {\n",
" geo_json_1fd35cd353111b231cadc45f579516b0\n",
" .addData(data);\n",
" }\n",
" geo_json_1fd35cd353111b231cadc45f579516b0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.087343635190657, 52.32335179632464], [-2.087194416798048, 52.323343246619274], [-2.08714777150119, 52.323314993478355], [-2.0871630078032157, 52.32326704285695], [-2.087262053167631, 52.323238996514306], [-2.0873422383885565, 52.32323069306993], [-2.087346148001253, 52.3232542229192], [-2.087346687229947, 52.3232553525875], [-2.0873476869085255, 52.323256356948036], [-2.0873497225584563, 52.32325742527191], [-2.0874043994817857, 52.323276817929745], [-2.0874042869344813, 52.32329707652947], [-2.087343635190657, 52.32335179632464]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1fd35cd353111b231cadc45f579516b0.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4249997f80f90ca667aa58768446f4ec = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_68562cd76bb8e6a898da834be08a8f8e = $(`&lt;div id=&quot;html_68562cd76bb8e6a898da834be08a8f8e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 63&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 168.0 sqm&lt;br&gt;Intersecting area: 167.7 sqm&lt;/div&gt;`)[0];\n",
" popup_4249997f80f90ca667aa58768446f4ec.setContent(html_68562cd76bb8e6a898da834be08a8f8e);\n",
" \n",
" \n",
"\n",
" geo_json_1fd35cd353111b231cadc45f579516b0.bindPopup(popup_4249997f80f90ca667aa58768446f4ec)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1fd35cd353111b231cadc45f579516b0.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_175d73bbce1b2ece573543cf53d9533f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_175d73bbce1b2ece573543cf53d9533f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_175d73bbce1b2ece573543cf53d9533f = L.geoJson(null, {\n",
" onEachFeature: geo_json_175d73bbce1b2ece573543cf53d9533f_onEachFeature,\n",
" \n",
" style: geo_json_175d73bbce1b2ece573543cf53d9533f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_175d73bbce1b2ece573543cf53d9533f_add (data) {\n",
" geo_json_175d73bbce1b2ece573543cf53d9533f\n",
" .addData(data);\n",
" }\n",
" geo_json_175d73bbce1b2ece573543cf53d9533f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0881342882082716, 52.32549774768011], [-2.088137737328802, 52.32548648218061], [-2.0881697306395206, 52.325486897854994], [-2.088170761358513, 52.325516682508365], [-2.0881367994890363, 52.32551727610514], [-2.0881342882082716, 52.32549774768011]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_175d73bbce1b2ece573543cf53d9533f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_93c0e37fa7cbcc26af923cdd2459f266 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ad1277d05da90243be03a288ee1e1868 = $(`&lt;div id=&quot;html_ad1277d05da90243be03a288ee1e1868&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 64&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 7.9 sqm&lt;/div&gt;`)[0];\n",
" popup_93c0e37fa7cbcc26af923cdd2459f266.setContent(html_ad1277d05da90243be03a288ee1e1868);\n",
" \n",
" \n",
"\n",
" geo_json_175d73bbce1b2ece573543cf53d9533f.bindPopup(popup_93c0e37fa7cbcc26af923cdd2459f266)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_175d73bbce1b2ece573543cf53d9533f.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ea9d78872cb6436dc58b02abe23adad8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ea9d78872cb6436dc58b02abe23adad8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ea9d78872cb6436dc58b02abe23adad8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ea9d78872cb6436dc58b02abe23adad8_onEachFeature,\n",
" \n",
" style: geo_json_ea9d78872cb6436dc58b02abe23adad8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ea9d78872cb6436dc58b02abe23adad8_add (data) {\n",
" geo_json_ea9d78872cb6436dc58b02abe23adad8\n",
" .addData(data);\n",
" }\n",
" geo_json_ea9d78872cb6436dc58b02abe23adad8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0872592059364314, 52.326928171175986], [-2.0872913855697175, 52.32690724153506], [-2.0873090280886353, 52.32690992911196], [-2.0873045153261103, 52.32693853476126], [-2.0872592059364314, 52.326928171175986]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ea9d78872cb6436dc58b02abe23adad8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7db36cb39d28baa78b952146570b1fb2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1345cdbd9b982ea2f5fd275469a98ab8 = $(`&lt;div id=&quot;html_1345cdbd9b982ea2f5fd275469a98ab8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 65&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.8 sqm&lt;/div&gt;`)[0];\n",
" popup_7db36cb39d28baa78b952146570b1fb2.setContent(html_1345cdbd9b982ea2f5fd275469a98ab8);\n",
" \n",
" \n",
"\n",
" geo_json_ea9d78872cb6436dc58b02abe23adad8.bindPopup(popup_7db36cb39d28baa78b952146570b1fb2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ea9d78872cb6436dc58b02abe23adad8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_26b8a471e45b1f4f41582ee8b8e20a84_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_26b8a471e45b1f4f41582ee8b8e20a84_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_26b8a471e45b1f4f41582ee8b8e20a84 = L.geoJson(null, {\n",
" onEachFeature: geo_json_26b8a471e45b1f4f41582ee8b8e20a84_onEachFeature,\n",
" \n",
" style: geo_json_26b8a471e45b1f4f41582ee8b8e20a84_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_26b8a471e45b1f4f41582ee8b8e20a84_add (data) {\n",
" geo_json_26b8a471e45b1f4f41582ee8b8e20a84\n",
" .addData(data);\n",
" }\n",
" geo_json_26b8a471e45b1f4f41582ee8b8e20a84_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0885638159479996, 52.325248071607994], [-2.08854529576772, 52.325191481451206], [-2.0886011239530875, 52.32517985830064], [-2.0886400489477155, 52.32517249211479], [-2.0886698832008896, 52.32521950188067], [-2.0886241231735805, 52.32524786712657], [-2.0885638159479996, 52.325248071607994]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_26b8a471e45b1f4f41582ee8b8e20a84.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6fe948076c93146facf8eef0d3474ce4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8786da96ec12624d35fb8e71cb13d6c6 = $(`&lt;div id=&quot;html_8786da96ec12624d35fb8e71cb13d6c6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 66&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 50.0 sqm&lt;br&gt;Intersecting area: 50.4 sqm&lt;/div&gt;`)[0];\n",
" popup_6fe948076c93146facf8eef0d3474ce4.setContent(html_8786da96ec12624d35fb8e71cb13d6c6);\n",
" \n",
" \n",
"\n",
" geo_json_26b8a471e45b1f4f41582ee8b8e20a84.bindPopup(popup_6fe948076c93146facf8eef0d3474ce4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_26b8a471e45b1f4f41582ee8b8e20a84.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_f39210e1b1708a61178ff1d652006a18_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f39210e1b1708a61178ff1d652006a18_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f39210e1b1708a61178ff1d652006a18 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f39210e1b1708a61178ff1d652006a18_onEachFeature,\n",
" \n",
" style: geo_json_f39210e1b1708a61178ff1d652006a18_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f39210e1b1708a61178ff1d652006a18_add (data) {\n",
" geo_json_f39210e1b1708a61178ff1d652006a18\n",
" .addData(data);\n",
" }\n",
" geo_json_f39210e1b1708a61178ff1d652006a18_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0867504129162575, 52.3280185297954], [-2.0866763333868588, 52.328018584330536], [-2.0866577425183945, 52.3280024066704], [-2.0866563865509904, 52.32800159225613], [-2.0866550840639264, 52.32800111134148], [-2.086653648382827, 52.32800080493133], [-2.086652139709237, 52.328000687372395], [-2.086615742330716, 52.32800017113484], [-2.0865839459573485, 52.327962614605724], [-2.0865842044608343, 52.32793426743737], [-2.0866145472276902, 52.32791518232387], [-2.0867134071580637, 52.327905335447795], [-2.086765851155128, 52.327896722880475], [-2.0868559568552887, 52.32793472364953], [-2.0868262673808653, 52.32799053687962], [-2.0867504129162575, 52.3280185297954]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f39210e1b1708a61178ff1d652006a18.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5972826ab1d5841f56bb669d39cd7090 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4530bc3e8ebd0c561660b4eb5a542a7c = $(`&lt;div id=&quot;html_4530bc3e8ebd0c561660b4eb5a542a7c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 67&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 183.0 sqm&lt;br&gt;Intersecting area: 183.4 sqm&lt;/div&gt;`)[0];\n",
" popup_5972826ab1d5841f56bb669d39cd7090.setContent(html_4530bc3e8ebd0c561660b4eb5a542a7c);\n",
" \n",
" \n",
"\n",
" geo_json_f39210e1b1708a61178ff1d652006a18.bindPopup(popup_5972826ab1d5841f56bb669d39cd7090)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f39210e1b1708a61178ff1d652006a18.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9_onEachFeature,\n",
" \n",
" style: geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9_add (data) {\n",
" geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9\n",
" .addData(data);\n",
" }\n",
" geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0870748655356257, 52.3280269281707], [-2.087015325225372, 52.328036250949786], [-2.086923341470551, 52.328008959908885], [-2.086892227343532, 52.32797000408452], [-2.0869215022335648, 52.32790711945651], [-2.086955608535194, 52.32789620985611], [-2.0870872287477646, 52.327896167459755], [-2.0871337275142214, 52.327914650173696], [-2.0871645509268593, 52.327934816644714], [-2.0871488338042323, 52.327990517129855], [-2.0870748655356257, 52.3280269281707]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_51f33ba489a72a955002b8371d9a9d27 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b6f3719de0846e7123ff8b9b074bba14 = $(`&lt;div id=&quot;html_b6f3719de0846e7123ff8b9b074bba14&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 68&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 222.0 sqm&lt;br&gt;Intersecting area: 221.5 sqm&lt;/div&gt;`)[0];\n",
" popup_51f33ba489a72a955002b8371d9a9d27.setContent(html_b6f3719de0846e7123ff8b9b074bba14);\n",
" \n",
" \n",
"\n",
" geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9.bindPopup(popup_51f33ba489a72a955002b8371d9a9d27)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2c33f02f2ea387a2c17fc1f9dfd9fdf9.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_edd7876020b72e074665dbaafa56c02d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_edd7876020b72e074665dbaafa56c02d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_edd7876020b72e074665dbaafa56c02d = L.geoJson(null, {\n",
" onEachFeature: geo_json_edd7876020b72e074665dbaafa56c02d_onEachFeature,\n",
" \n",
" style: geo_json_edd7876020b72e074665dbaafa56c02d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_edd7876020b72e074665dbaafa56c02d_add (data) {\n",
" geo_json_edd7876020b72e074665dbaafa56c02d\n",
" .addData(data);\n",
" }\n",
" geo_json_edd7876020b72e074665dbaafa56c02d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079349453298841, 52.32537171225884], [-2.0792605083260804, 52.32536247090614], [-2.0792581169148288, 52.325341326670625], [-2.0793373826418806, 52.32533116022022], [-2.0793683748109575, 52.32535104542889], [-2.079367611682851, 52.32536975903829], [-2.079349453298841, 52.32537171225884]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_edd7876020b72e074665dbaafa56c02d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_db37a3c021d511a86af78ab9ae0e45be = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ca218f271f3a3eb10af9a7957c360064 = $(`&lt;div id=&quot;html_ca218f271f3a3eb10af9a7957c360064&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 69&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 24.8 sqm&lt;/div&gt;`)[0];\n",
" popup_db37a3c021d511a86af78ab9ae0e45be.setContent(html_ca218f271f3a3eb10af9a7957c360064);\n",
" \n",
" \n",
"\n",
" geo_json_edd7876020b72e074665dbaafa56c02d.bindPopup(popup_db37a3c021d511a86af78ab9ae0e45be)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_edd7876020b72e074665dbaafa56c02d.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_5c9ff9ff0175be4fbe725c929957685e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5c9ff9ff0175be4fbe725c929957685e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5c9ff9ff0175be4fbe725c929957685e = L.geoJson(null, {\n",
" onEachFeature: geo_json_5c9ff9ff0175be4fbe725c929957685e_onEachFeature,\n",
" \n",
" style: geo_json_5c9ff9ff0175be4fbe725c929957685e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5c9ff9ff0175be4fbe725c929957685e_add (data) {\n",
" geo_json_5c9ff9ff0175be4fbe725c929957685e\n",
" .addData(data);\n",
" }\n",
" geo_json_5c9ff9ff0175be4fbe725c929957685e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0790120225284436, 52.3256684196554], [-2.078994349005887, 52.32564782778098], [-2.0790213507783806, 52.32563600194175], [-2.079071792333199, 52.325619251707145], [-2.0790894291601547, 52.32564884458107], [-2.079057939445493, 52.325668315119344], [-2.0790120225284436, 52.3256684196554]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5c9ff9ff0175be4fbe725c929957685e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_162b7713ae06c64d057e139461d086a3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cda4da6fd9295d43107cca464a6a8be6 = $(`&lt;div id=&quot;html_cda4da6fd9295d43107cca464a6a8be6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 70&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.9 sqm&lt;/div&gt;`)[0];\n",
" popup_162b7713ae06c64d057e139461d086a3.setContent(html_cda4da6fd9295d43107cca464a6a8be6);\n",
" \n",
" \n",
"\n",
" geo_json_5c9ff9ff0175be4fbe725c929957685e.bindPopup(popup_162b7713ae06c64d057e139461d086a3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5c9ff9ff0175be4fbe725c929957685e.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_fe35726a24e9a1110c863a8365d055d8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_fe35726a24e9a1110c863a8365d055d8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_fe35726a24e9a1110c863a8365d055d8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_fe35726a24e9a1110c863a8365d055d8_onEachFeature,\n",
" \n",
" style: geo_json_fe35726a24e9a1110c863a8365d055d8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_fe35726a24e9a1110c863a8365d055d8_add (data) {\n",
" geo_json_fe35726a24e9a1110c863a8365d055d8\n",
" .addData(data);\n",
" }\n",
" geo_json_fe35726a24e9a1110c863a8365d055d8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0788920287753565, 52.32570242281938], [-2.0789093412810087, 52.32568189649086], [-2.078955787995761, 52.3256925241312], [-2.078923987827107, 52.325713203123165], [-2.0788920287753565, 52.32570242281938]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_fe35726a24e9a1110c863a8365d055d8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a0963f0865d85e442b867d4f34d08dba = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1a43e7b2619000ddb606cf0353c89b05 = $(`&lt;div id=&quot;html_1a43e7b2619000ddb606cf0353c89b05&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 71&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.1 sqm&lt;/div&gt;`)[0];\n",
" popup_a0963f0865d85e442b867d4f34d08dba.setContent(html_1a43e7b2619000ddb606cf0353c89b05);\n",
" \n",
" \n",
"\n",
" geo_json_fe35726a24e9a1110c863a8365d055d8.bindPopup(popup_a0963f0865d85e442b867d4f34d08dba)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_fe35726a24e9a1110c863a8365d055d8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27_onEachFeature,\n",
" \n",
" style: geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27_add (data) {\n",
" geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27\n",
" .addData(data);\n",
" }\n",
" geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0793059012997626, 52.325776320217585], [-2.079274617592805, 52.325775660722236], [-2.0792584618726555, 52.3257571455009], [-2.07927565026417, 52.325727219954075], [-2.0793247000888826, 52.325746030370624], [-2.0793247498855116, 52.32577378127544], [-2.0793059012997626, 52.325776320217585]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0d6e6b1c5c5154ac6cabcd7ef7ff0421 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d75d64c83e8acfa1c607649e6ecf56e9 = $(`&lt;div id=&quot;html_d75d64c83e8acfa1c607649e6ecf56e9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 72&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 17.7 sqm&lt;/div&gt;`)[0];\n",
" popup_0d6e6b1c5c5154ac6cabcd7ef7ff0421.setContent(html_d75d64c83e8acfa1c607649e6ecf56e9);\n",
" \n",
" \n",
"\n",
" geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27.bindPopup(popup_0d6e6b1c5c5154ac6cabcd7ef7ff0421)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e13fc1a46fe5b0cf8e6ff1c231395e27.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_0df728d1d45903352a833b1dec3d9914_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0df728d1d45903352a833b1dec3d9914_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0df728d1d45903352a833b1dec3d9914 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0df728d1d45903352a833b1dec3d9914_onEachFeature,\n",
" \n",
" style: geo_json_0df728d1d45903352a833b1dec3d9914_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0df728d1d45903352a833b1dec3d9914_add (data) {\n",
" geo_json_0df728d1d45903352a833b1dec3d9914\n",
" .addData(data);\n",
" }\n",
" geo_json_0df728d1d45903352a833b1dec3d9914_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.078705246609087, 52.325776580278976], [-2.0787006051648476, 52.32575574230764], [-2.078748076833669, 52.325735496114866], [-2.078837059842001, 52.32574431259243], [-2.078855280184831, 52.325755610958204], [-2.0788488748294816, 52.32577663162799], [-2.078705246609087, 52.325776580278976]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0df728d1d45903352a833b1dec3d9914.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5be3ac2b1848e32a69a07b9c4169c041 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_eb524df317e023375b77737690ac20c1 = $(`&lt;div id=&quot;html_eb524df317e023375b77737690ac20c1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 73&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 39.0 sqm&lt;br&gt;Intersecting area: 38.7 sqm&lt;/div&gt;`)[0];\n",
" popup_5be3ac2b1848e32a69a07b9c4169c041.setContent(html_eb524df317e023375b77737690ac20c1);\n",
" \n",
" \n",
"\n",
" geo_json_0df728d1d45903352a833b1dec3d9914.bindPopup(popup_5be3ac2b1848e32a69a07b9c4169c041)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0df728d1d45903352a833b1dec3d9914.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_443a3d05c503e3f1c65dc194553c06db_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_443a3d05c503e3f1c65dc194553c06db_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_443a3d05c503e3f1c65dc194553c06db = L.geoJson(null, {\n",
" onEachFeature: geo_json_443a3d05c503e3f1c65dc194553c06db_onEachFeature,\n",
" \n",
" style: geo_json_443a3d05c503e3f1c65dc194553c06db_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_443a3d05c503e3f1c65dc194553c06db_add (data) {\n",
" geo_json_443a3d05c503e3f1c65dc194553c06db\n",
" .addData(data);\n",
" }\n",
" geo_json_443a3d05c503e3f1c65dc194553c06db_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079024024920288, 52.325918779571495], [-2.0790368228025184, 52.32590574778602], [-2.079088704578329, 52.325898306826915], [-2.079103259186081, 52.325937164363296], [-2.079053665920684, 52.32594601255727], [-2.079024024920288, 52.325918779571495]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_443a3d05c503e3f1c65dc194553c06db.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_018abcd0f56fa04f3075f5ca1fa185be = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_206a867412463db6af82e4f149e1cc8a = $(`&lt;div id=&quot;html_206a867412463db6af82e4f149e1cc8a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 74&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 19.0 sqm&lt;br&gt;Intersecting area: 19.0 sqm&lt;/div&gt;`)[0];\n",
" popup_018abcd0f56fa04f3075f5ca1fa185be.setContent(html_206a867412463db6af82e4f149e1cc8a);\n",
" \n",
" \n",
"\n",
" geo_json_443a3d05c503e3f1c65dc194553c06db.bindPopup(popup_018abcd0f56fa04f3075f5ca1fa185be)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_443a3d05c503e3f1c65dc194553c06db.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_5d8f69c45680ac858cca5618e0e45f5a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5d8f69c45680ac858cca5618e0e45f5a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5d8f69c45680ac858cca5618e0e45f5a = L.geoJson(null, {\n",
" onEachFeature: geo_json_5d8f69c45680ac858cca5618e0e45f5a_onEachFeature,\n",
" \n",
" style: geo_json_5d8f69c45680ac858cca5618e0e45f5a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5d8f69c45680ac858cca5618e0e45f5a_add (data) {\n",
" geo_json_5d8f69c45680ac858cca5618e0e45f5a\n",
" .addData(data);\n",
" }\n",
" geo_json_5d8f69c45680ac858cca5618e0e45f5a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0786871731848167, 52.32617917063025], [-2.07868615413576, 52.32613011810515], [-2.0786858673615938, 52.32612892889482], [-2.078685272988133, 52.326128038362604], [-2.0786843823988406, 52.32612724602164], [-2.078642267433049, 52.32609720824724], [-2.078645543953622, 52.32608651581492], [-2.078677564541229, 52.32608640362419], [-2.07875266291857, 52.32613211621531], [-2.078753187666562, 52.32616146166247], [-2.0787224951072587, 52.326180623209694], [-2.0786871731848167, 52.32617917063025]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5d8f69c45680ac858cca5618e0e45f5a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3fb408e249e54654141b77a15a5c3411 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_83980ab34b42c15ecc1bd4b21c9913ce = $(`&lt;div id=&quot;html_83980ab34b42c15ecc1bd4b21c9913ce&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 75&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 41.0 sqm&lt;br&gt;Intersecting area: 40.7 sqm&lt;/div&gt;`)[0];\n",
" popup_3fb408e249e54654141b77a15a5c3411.setContent(html_83980ab34b42c15ecc1bd4b21c9913ce);\n",
" \n",
" \n",
"\n",
" geo_json_5d8f69c45680ac858cca5618e0e45f5a.bindPopup(popup_3fb408e249e54654141b77a15a5c3411)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5d8f69c45680ac858cca5618e0e45f5a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_87742548031e1505d2a8581c3f35c40a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_87742548031e1505d2a8581c3f35c40a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_87742548031e1505d2a8581c3f35c40a = L.geoJson(null, {\n",
" onEachFeature: geo_json_87742548031e1505d2a8581c3f35c40a_onEachFeature,\n",
" \n",
" style: geo_json_87742548031e1505d2a8581c3f35c40a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_87742548031e1505d2a8581c3f35c40a_add (data) {\n",
" geo_json_87742548031e1505d2a8581c3f35c40a\n",
" .addData(data);\n",
" }\n",
" geo_json_87742548031e1505d2a8581c3f35c40a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0793786526886118, 52.326171257247054], [-2.0793617734837335, 52.32614216466486], [-2.0793888546342103, 52.326130304527204], [-2.079426529493648, 52.32612244506164], [-2.079456229798515, 52.32615306990442], [-2.0794256991260602, 52.32617150961381], [-2.0793786526886118, 52.326171257247054]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_87742548031e1505d2a8581c3f35c40a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e3c009666d0f3df43053b802e2b09b18 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_692ec997437e8e2001f1c9c042659124 = $(`&lt;div id=&quot;html_692ec997437e8e2001f1c9c042659124&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 76&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 23.7 sqm&lt;/div&gt;`)[0];\n",
" popup_e3c009666d0f3df43053b802e2b09b18.setContent(html_692ec997437e8e2001f1c9c042659124);\n",
" \n",
" \n",
"\n",
" geo_json_87742548031e1505d2a8581c3f35c40a.bindPopup(popup_e3c009666d0f3df43053b802e2b09b18)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_87742548031e1505d2a8581c3f35c40a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896_onEachFeature,\n",
" \n",
" style: geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896_add (data) {\n",
" geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896\n",
" .addData(data);\n",
" }\n",
" geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0790694459491714, 52.32625981462726], [-2.0790820541288557, 52.326220256493144], [-2.0791194978789855, 52.32621436254003], [-2.07911711964084, 52.32626123452189], [-2.0790694459491714, 52.32625981462726]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5706a7dc1de167be770b82c6c936b6e7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_667260c448bb8c133d3e5b8f75649710 = $(`&lt;div id=&quot;html_667260c448bb8c133d3e5b8f75649710&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 77&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.8 sqm&lt;/div&gt;`)[0];\n",
" popup_5706a7dc1de167be770b82c6c936b6e7.setContent(html_667260c448bb8c133d3e5b8f75649710);\n",
" \n",
" \n",
"\n",
" geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896.bindPopup(popup_5706a7dc1de167be770b82c6c936b6e7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e2462ee2b2f82f6c1fc87dea3b1d0896.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_2d8941553fe928e9f360b999b0c7324f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2d8941553fe928e9f360b999b0c7324f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2d8941553fe928e9f360b999b0c7324f = L.geoJson(null, {\n",
" onEachFeature: geo_json_2d8941553fe928e9f360b999b0c7324f_onEachFeature,\n",
" \n",
" style: geo_json_2d8941553fe928e9f360b999b0c7324f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2d8941553fe928e9f360b999b0c7324f_add (data) {\n",
" geo_json_2d8941553fe928e9f360b999b0c7324f\n",
" .addData(data);\n",
" }\n",
" geo_json_2d8941553fe928e9f360b999b0c7324f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0785592202663135, 52.326221223195475], [-2.078591050130884, 52.326230976093036], [-2.078596725990265, 52.32625224550585], [-2.0785543589876263, 52.32622317803423], [-2.0785592202663135, 52.326221223195475]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2d8941553fe928e9f360b999b0c7324f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6ca928ca6819a0e8470806d1d51c2376 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ca316fb34ea908e643361e7934d9ca2c = $(`&lt;div id=&quot;html_ca316fb34ea908e643361e7934d9ca2c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 78&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 3.2 sqm&lt;/div&gt;`)[0];\n",
" popup_6ca928ca6819a0e8470806d1d51c2376.setContent(html_ca316fb34ea908e643361e7934d9ca2c);\n",
" \n",
" \n",
"\n",
" geo_json_2d8941553fe928e9f360b999b0c7324f.bindPopup(popup_6ca928ca6819a0e8470806d1d51c2376)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2d8941553fe928e9f360b999b0c7324f.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_660523aada08a2125b0068053e646f0c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_660523aada08a2125b0068053e646f0c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_660523aada08a2125b0068053e646f0c = L.geoJson(null, {\n",
" onEachFeature: geo_json_660523aada08a2125b0068053e646f0c_onEachFeature,\n",
" \n",
" style: geo_json_660523aada08a2125b0068053e646f0c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_660523aada08a2125b0068053e646f0c_add (data) {\n",
" geo_json_660523aada08a2125b0068053e646f0c\n",
" .addData(data);\n",
" }\n",
" geo_json_660523aada08a2125b0068053e646f0c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.078950267475882, 52.32637079134898], [-2.0789383212404227, 52.326356313456586], [-2.078986729564749, 52.3263393434688], [-2.0790016459766005, 52.32637782138508], [-2.078969234024416, 52.32638730980137], [-2.078950267475882, 52.32637079134898]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_660523aada08a2125b0068053e646f0c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_32f2af34f9c48b15e009be195bb916eb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6b23fced3eea4ac072a23fc10c54541c = $(`&lt;div id=&quot;html_6b23fced3eea4ac072a23fc10c54541c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 79&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 13.0 sqm&lt;br&gt;Intersecting area: 13.2 sqm&lt;/div&gt;`)[0];\n",
" popup_32f2af34f9c48b15e009be195bb916eb.setContent(html_6b23fced3eea4ac072a23fc10c54541c);\n",
" \n",
" \n",
"\n",
" geo_json_660523aada08a2125b0068053e646f0c.bindPopup(popup_32f2af34f9c48b15e009be195bb916eb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_660523aada08a2125b0068053e646f0c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1_onEachFeature,\n",
" \n",
" style: geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1_add (data) {\n",
" geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1\n",
" .addData(data);\n",
" }\n",
" geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0795705847156607, 52.32633300876509], [-2.0795241443302523, 52.32632146166461], [-2.0795427969883327, 52.32630124450321], [-2.079586523677895, 52.32630184247293], [-2.079583081956203, 52.32631682696032], [-2.0795705847156607, 52.32633300876509]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6f6452adb39810b5f21c33287fc67931 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5342f89f84df8c29e258a85a45ff7add = $(`&lt;div id=&quot;html_5342f89f84df8c29e258a85a45ff7add&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 80&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 10.1 sqm&lt;/div&gt;`)[0];\n",
" popup_6f6452adb39810b5f21c33287fc67931.setContent(html_5342f89f84df8c29e258a85a45ff7add);\n",
" \n",
" \n",
"\n",
" geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1.bindPopup(popup_6f6452adb39810b5f21c33287fc67931)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ecad2bea1b2d1d52b9012e03a8f16fb1.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_2137b86c4b07323c455dc17179c81661_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2137b86c4b07323c455dc17179c81661_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2137b86c4b07323c455dc17179c81661 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2137b86c4b07323c455dc17179c81661_onEachFeature,\n",
" \n",
" style: geo_json_2137b86c4b07323c455dc17179c81661_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2137b86c4b07323c455dc17179c81661_add (data) {\n",
" geo_json_2137b86c4b07323c455dc17179c81661\n",
" .addData(data);\n",
" }\n",
" geo_json_2137b86c4b07323c455dc17179c81661_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080271918357264, 52.32677138105448], [-2.0802573946257064, 52.32675266976955], [-2.080271515702039, 52.32670478196667], [-2.0803067398134463, 52.326696556195074], [-2.0803534206554195, 52.32671574718439], [-2.0803684007486405, 52.326753016601344], [-2.0803375351920423, 52.326772906893076], [-2.080271918357264, 52.32677138105448]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2137b86c4b07323c455dc17179c81661.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f76ed1724a976c3bca313be23fbba0f1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5e5eccc4d592334f90c0b91c84e6d4b3 = $(`&lt;div id=&quot;html_5e5eccc4d592334f90c0b91c84e6d4b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 81&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 48.0 sqm&lt;br&gt;Intersecting area: 48.1 sqm&lt;/div&gt;`)[0];\n",
" popup_f76ed1724a976c3bca313be23fbba0f1.setContent(html_5e5eccc4d592334f90c0b91c84e6d4b3);\n",
" \n",
" \n",
"\n",
" geo_json_2137b86c4b07323c455dc17179c81661.bindPopup(popup_f76ed1724a976c3bca313be23fbba0f1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2137b86c4b07323c455dc17179c81661.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02_onEachFeature,\n",
" \n",
" style: geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02_add (data) {\n",
" geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02\n",
" .addData(data);\n",
" }\n",
" geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0799366113118083, 52.326854181383496], [-2.079892095666919, 52.32683546883351], [-2.0799047929125836, 52.32681708875639], [-2.0799512070090165, 52.32678698415374], [-2.0799846820089636, 52.32678676273832], [-2.0800018740496573, 52.32679782068529], [-2.080001503208695, 52.32684344078002], [-2.0799366113118083, 52.326854181383496]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5fd22be7b02f7775d051bd21df5390f5 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f74bc9bfee821dbdbda238d201e1ebf3 = $(`&lt;div id=&quot;html_f74bc9bfee821dbdbda238d201e1ebf3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 82&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 40.0 sqm&lt;br&gt;Intersecting area: 40.3 sqm&lt;/div&gt;`)[0];\n",
" popup_5fd22be7b02f7775d051bd21df5390f5.setContent(html_f74bc9bfee821dbdbda238d201e1ebf3);\n",
" \n",
" \n",
"\n",
" geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02.bindPopup(popup_5fd22be7b02f7775d051bd21df5390f5)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9fa2ab56c3f8a8137a02904a8dd3ca02.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_673ef5a58aa71ffd49a5d917b7f7af55_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_673ef5a58aa71ffd49a5d917b7f7af55_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_673ef5a58aa71ffd49a5d917b7f7af55 = L.geoJson(null, {\n",
" onEachFeature: geo_json_673ef5a58aa71ffd49a5d917b7f7af55_onEachFeature,\n",
" \n",
" style: geo_json_673ef5a58aa71ffd49a5d917b7f7af55_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_673ef5a58aa71ffd49a5d917b7f7af55_add (data) {\n",
" geo_json_673ef5a58aa71ffd49a5d917b7f7af55\n",
" .addData(data);\n",
" }\n",
" geo_json_673ef5a58aa71ffd49a5d917b7f7af55_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080879882722124, 52.32688057621469], [-2.080800892872861, 52.326869595875564], [-2.080801117247713, 52.32683260016855], [-2.08084248731418, 52.32682161182959], [-2.080879231155591, 52.326813167286076], [-2.080911355390682, 52.32683252268248], [-2.0809114079097357, 52.32686121755049], [-2.080879882722124, 52.32688057621469]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_673ef5a58aa71ffd49a5d917b7f7af55.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ec91b0b32e2f2c87e9ab1887e1f34a9d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7ad6fdefe3cfdd76624e73ef543a8c72 = $(`&lt;div id=&quot;html_7ad6fdefe3cfdd76624e73ef543a8c72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 83&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 43.0 sqm&lt;br&gt;Intersecting area: 42.9 sqm&lt;/div&gt;`)[0];\n",
" popup_ec91b0b32e2f2c87e9ab1887e1f34a9d.setContent(html_7ad6fdefe3cfdd76624e73ef543a8c72);\n",
" \n",
" \n",
"\n",
" geo_json_673ef5a58aa71ffd49a5d917b7f7af55.bindPopup(popup_ec91b0b32e2f2c87e9ab1887e1f34a9d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_673ef5a58aa71ffd49a5d917b7f7af55.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9b6b84997686c6d5d0517bfcad50fe6e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9b6b84997686c6d5d0517bfcad50fe6e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9b6b84997686c6d5d0517bfcad50fe6e = L.geoJson(null, {\n",
" onEachFeature: geo_json_9b6b84997686c6d5d0517bfcad50fe6e_onEachFeature,\n",
" \n",
" style: geo_json_9b6b84997686c6d5d0517bfcad50fe6e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9b6b84997686c6d5d0517bfcad50fe6e_add (data) {\n",
" geo_json_9b6b84997686c6d5d0517bfcad50fe6e\n",
" .addData(data);\n",
" }\n",
" geo_json_9b6b84997686c6d5d0517bfcad50fe6e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079101509390016, 52.326593535207024], [-2.0790988060427766, 52.326573541929555], [-2.079146199983591, 52.326571782171285], [-2.0791435255168436, 52.32658596150745], [-2.079101509390016, 52.326593535207024]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9b6b84997686c6d5d0517bfcad50fe6e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_548904d2760d0a9aa468473418dcdec5 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c9b6fbc016ebca299cbc4591f7dbb043 = $(`&lt;div id=&quot;html_c9b6fbc016ebca299cbc4591f7dbb043&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 84&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 5.8 sqm&lt;/div&gt;`)[0];\n",
" popup_548904d2760d0a9aa468473418dcdec5.setContent(html_c9b6fbc016ebca299cbc4591f7dbb043);\n",
" \n",
" \n",
"\n",
" geo_json_9b6b84997686c6d5d0517bfcad50fe6e.bindPopup(popup_548904d2760d0a9aa468473418dcdec5)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9b6b84997686c6d5d0517bfcad50fe6e.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ad97623210c5c69b372ec57c3f45c561_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ad97623210c5c69b372ec57c3f45c561_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ad97623210c5c69b372ec57c3f45c561 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ad97623210c5c69b372ec57c3f45c561_onEachFeature,\n",
" \n",
" style: geo_json_ad97623210c5c69b372ec57c3f45c561_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ad97623210c5c69b372ec57c3f45c561_add (data) {\n",
" geo_json_ad97623210c5c69b372ec57c3f45c561\n",
" .addData(data);\n",
" }\n",
" geo_json_ad97623210c5c69b372ec57c3f45c561_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.079421982984672, 52.32662915171417], [-2.0793766779525416, 52.326573433165926], [-2.0793821912215975, 52.32655332827326], [-2.079486359650284, 52.326562919765834], [-2.0795025053180805, 52.326591945395464], [-2.0794727250002922, 52.32662880731675], [-2.079421982984672, 52.32662915171417]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ad97623210c5c69b372ec57c3f45c561.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_39753ead76a994fbe4c7e8ae3fda4ed9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7e2aad94fe8288f97fe77f5b6598a53a = $(`&lt;div id=&quot;html_7e2aad94fe8288f97fe77f5b6598a53a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 85&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 51.0 sqm&lt;br&gt;Intersecting area: 51.3 sqm&lt;/div&gt;`)[0];\n",
" popup_39753ead76a994fbe4c7e8ae3fda4ed9.setContent(html_7e2aad94fe8288f97fe77f5b6598a53a);\n",
" \n",
" \n",
"\n",
" geo_json_ad97623210c5c69b372ec57c3f45c561.bindPopup(popup_39753ead76a994fbe4c7e8ae3fda4ed9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ad97623210c5c69b372ec57c3f45c561.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_5a33659c408fe80540e53da14a772895_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5a33659c408fe80540e53da14a772895_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5a33659c408fe80540e53da14a772895 = L.geoJson(null, {\n",
" onEachFeature: geo_json_5a33659c408fe80540e53da14a772895_onEachFeature,\n",
" \n",
" style: geo_json_5a33659c408fe80540e53da14a772895_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5a33659c408fe80540e53da14a772895_add (data) {\n",
" geo_json_5a33659c408fe80540e53da14a772895\n",
" .addData(data);\n",
" }\n",
" geo_json_5a33659c408fe80540e53da14a772895_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0840743969599123, 52.32630313285345], [-2.0840432326626597, 52.326284470772336], [-2.0840428381528406, 52.32626373067537], [-2.0840695417033936, 52.326252998001294], [-2.0841228951062223, 52.326246516631436], [-2.084120987408638, 52.32630270671666], [-2.0840743969599123, 52.32630313285345]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5a33659c408fe80540e53da14a772895.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4847aca57f059bd60b4b724bc8adc219 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_75f65da0d430c644fd6b59fb3fe16bb1 = $(`&lt;div id=&quot;html_75f65da0d430c644fd6b59fb3fe16bb1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 86&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 28.0 sqm&lt;br&gt;Intersecting area: 27.9 sqm&lt;/div&gt;`)[0];\n",
" popup_4847aca57f059bd60b4b724bc8adc219.setContent(html_75f65da0d430c644fd6b59fb3fe16bb1);\n",
" \n",
" \n",
"\n",
" geo_json_5a33659c408fe80540e53da14a772895.bindPopup(popup_4847aca57f059bd60b4b724bc8adc219)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5a33659c408fe80540e53da14a772895.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a8e4eb4a7882dfb891be98ffb54fe59b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a8e4eb4a7882dfb891be98ffb54fe59b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a8e4eb4a7882dfb891be98ffb54fe59b = L.geoJson(null, {\n",
" onEachFeature: geo_json_a8e4eb4a7882dfb891be98ffb54fe59b_onEachFeature,\n",
" \n",
" style: geo_json_a8e4eb4a7882dfb891be98ffb54fe59b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a8e4eb4a7882dfb891be98ffb54fe59b_add (data) {\n",
" geo_json_a8e4eb4a7882dfb891be98ffb54fe59b\n",
" .addData(data);\n",
" }\n",
" geo_json_a8e4eb4a7882dfb891be98ffb54fe59b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0837371004394467, 52.32638429749523], [-2.0837055245993636, 52.32636522117292], [-2.083705199394265, 52.3263453530717], [-2.08378252152185, 52.32631649979869], [-2.083815693771837, 52.326327050463355], [-2.083830208985479, 52.32637382870662], [-2.083812234071687, 52.32638443824251], [-2.0837371004394467, 52.32638429749523]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a8e4eb4a7882dfb891be98ffb54fe59b.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_951a38c7bfaa108b971648c46acd11cd = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1a93fa6de187e6c62e61907bf65284ec = $(`&lt;div id=&quot;html_1a93fa6de187e6c62e61907bf65284ec&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 87&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 48.0 sqm&lt;br&gt;Intersecting area: 47.7 sqm&lt;/div&gt;`)[0];\n",
" popup_951a38c7bfaa108b971648c46acd11cd.setContent(html_1a93fa6de187e6c62e61907bf65284ec);\n",
" \n",
" \n",
"\n",
" geo_json_a8e4eb4a7882dfb891be98ffb54fe59b.bindPopup(popup_951a38c7bfaa108b971648c46acd11cd)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a8e4eb4a7882dfb891be98ffb54fe59b.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_32942b15fa82eba3742a66da2f576866_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_32942b15fa82eba3742a66da2f576866_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_32942b15fa82eba3742a66da2f576866 = L.geoJson(null, {\n",
" onEachFeature: geo_json_32942b15fa82eba3742a66da2f576866_onEachFeature,\n",
" \n",
" style: geo_json_32942b15fa82eba3742a66da2f576866_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_32942b15fa82eba3742a66da2f576866_add (data) {\n",
" geo_json_32942b15fa82eba3742a66da2f576866\n",
" .addData(data);\n",
" }\n",
" geo_json_32942b15fa82eba3742a66da2f576866_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083646854277705, 52.326382205776206], [-2.0836501154826896, 52.32634465591002], [-2.0836833005020776, 52.326354206894266], [-2.083677272797534, 52.32638443351762], [-2.083646854277705, 52.326382205776206]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_32942b15fa82eba3742a66da2f576866.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f72889918219e9fadb96a0ea8e9c561f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_143dea6b917bddc4e1fbed955c85b561 = $(`&lt;div id=&quot;html_143dea6b917bddc4e1fbed955c85b561&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 88&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.4 sqm&lt;/div&gt;`)[0];\n",
" popup_f72889918219e9fadb96a0ea8e9c561f.setContent(html_143dea6b917bddc4e1fbed955c85b561);\n",
" \n",
" \n",
"\n",
" geo_json_32942b15fa82eba3742a66da2f576866.bindPopup(popup_f72889918219e9fadb96a0ea8e9c561f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_32942b15fa82eba3742a66da2f576866.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_4a2a2c1ff8ae5fea481e1fb2465db770_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4a2a2c1ff8ae5fea481e1fb2465db770_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4a2a2c1ff8ae5fea481e1fb2465db770 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4a2a2c1ff8ae5fea481e1fb2465db770_onEachFeature,\n",
" \n",
" style: geo_json_4a2a2c1ff8ae5fea481e1fb2465db770_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4a2a2c1ff8ae5fea481e1fb2465db770_add (data) {\n",
" geo_json_4a2a2c1ff8ae5fea481e1fb2465db770\n",
" .addData(data);\n",
" }\n",
" geo_json_4a2a2c1ff8ae5fea481e1fb2465db770_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084794961830589, 52.326518371085555], [-2.084790554389099, 52.32650631481356], [-2.084776681688847, 52.3264890842996], [-2.084792451775133, 52.32647808693189], [-2.0848562966307016, 52.32647926721169], [-2.084840939173595, 52.32651795049923], [-2.084794961830589, 52.326518371085555]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4a2a2c1ff8ae5fea481e1fb2465db770.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_78696fb635f249e8f2238710f3edec72 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_54ca951a7e757e57944d99be932c01e5 = $(`&lt;div id=&quot;html_54ca951a7e757e57944d99be932c01e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 89&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 19.0 sqm&lt;br&gt;Intersecting area: 18.6 sqm&lt;/div&gt;`)[0];\n",
" popup_78696fb635f249e8f2238710f3edec72.setContent(html_54ca951a7e757e57944d99be932c01e5);\n",
" \n",
" \n",
"\n",
" geo_json_4a2a2c1ff8ae5fea481e1fb2465db770.bindPopup(popup_78696fb635f249e8f2238710f3edec72)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4a2a2c1ff8ae5fea481e1fb2465db770.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3ba5f3dbd7a18d90c6ce707edcad6955_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3ba5f3dbd7a18d90c6ce707edcad6955_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3ba5f3dbd7a18d90c6ce707edcad6955 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3ba5f3dbd7a18d90c6ce707edcad6955_onEachFeature,\n",
" \n",
" style: geo_json_3ba5f3dbd7a18d90c6ce707edcad6955_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3ba5f3dbd7a18d90c6ce707edcad6955_add (data) {\n",
" geo_json_3ba5f3dbd7a18d90c6ce707edcad6955\n",
" .addData(data);\n",
" }\n",
" geo_json_3ba5f3dbd7a18d90c6ce707edcad6955_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083823560077687, 52.326697043541365], [-2.083823684577807, 52.326677576984515], [-2.0838684825140628, 52.32666872481135], [-2.0838403175387668, 52.3266989698997], [-2.083823560077687, 52.326697043541365]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3ba5f3dbd7a18d90c6ce707edcad6955.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2db58aec3d893ef90a49869781688a5b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_012d35e4a1510edeb86a720289ac829c = $(`&lt;div id=&quot;html_012d35e4a1510edeb86a720289ac829c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 90&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 5.0 sqm&lt;br&gt;Intersecting area: 5.4 sqm&lt;/div&gt;`)[0];\n",
" popup_2db58aec3d893ef90a49869781688a5b.setContent(html_012d35e4a1510edeb86a720289ac829c);\n",
" \n",
" \n",
"\n",
" geo_json_3ba5f3dbd7a18d90c6ce707edcad6955.bindPopup(popup_2db58aec3d893ef90a49869781688a5b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3ba5f3dbd7a18d90c6ce707edcad6955.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d6e6bf0439bfdcfde3144e29a9fd551e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d6e6bf0439bfdcfde3144e29a9fd551e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d6e6bf0439bfdcfde3144e29a9fd551e = L.geoJson(null, {\n",
" onEachFeature: geo_json_d6e6bf0439bfdcfde3144e29a9fd551e_onEachFeature,\n",
" \n",
" style: geo_json_d6e6bf0439bfdcfde3144e29a9fd551e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d6e6bf0439bfdcfde3144e29a9fd551e_add (data) {\n",
" geo_json_d6e6bf0439bfdcfde3144e29a9fd551e\n",
" .addData(data);\n",
" }\n",
" geo_json_d6e6bf0439bfdcfde3144e29a9fd551e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084806570288644, 52.32667702259439], [-2.0848401685045546, 52.32666612745024], [-2.084871495261422, 52.326667443520996], [-2.084872631253597, 52.32668746926179], [-2.0848099128603192, 52.326706106161815], [-2.084806570288644, 52.32667702259439]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d6e6bf0439bfdcfde3144e29a9fd551e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_be28402bc6c4f3cff375e6cac5544a85 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2c9890dcdfa5c4e72fc528f41d57f0f8 = $(`&lt;div id=&quot;html_2c9890dcdfa5c4e72fc528f41d57f0f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 91&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.6 sqm&lt;/div&gt;`)[0];\n",
" popup_be28402bc6c4f3cff375e6cac5544a85.setContent(html_2c9890dcdfa5c4e72fc528f41d57f0f8);\n",
" \n",
" \n",
"\n",
" geo_json_d6e6bf0439bfdcfde3144e29a9fd551e.bindPopup(popup_be28402bc6c4f3cff375e6cac5544a85)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d6e6bf0439bfdcfde3144e29a9fd551e.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ca9fce1ceb71f420d1d4bce9833332a6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ca9fce1ceb71f420d1d4bce9833332a6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ca9fce1ceb71f420d1d4bce9833332a6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ca9fce1ceb71f420d1d4bce9833332a6_onEachFeature,\n",
" \n",
" style: geo_json_ca9fce1ceb71f420d1d4bce9833332a6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ca9fce1ceb71f420d1d4bce9833332a6_add (data) {\n",
" geo_json_ca9fce1ceb71f420d1d4bce9833332a6\n",
" .addData(data);\n",
" }\n",
" geo_json_ca9fce1ceb71f420d1d4bce9833332a6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0847223458374278, 52.32671654297089], [-2.0847207639556933, 52.32671724624485], [-2.084719540536007, 52.32671817940525], [-2.0847188804382033, 52.326719048333395], [-2.0847078070201985, 52.32674300977432], [-2.0846331039207633, 52.32673430433133], [-2.0846161179086633, 52.32670575288972], [-2.084639094389831, 52.32670257362597], [-2.0846414759444634, 52.326701858096754], [-2.0846432872759353, 52.326700671885774], [-2.084644096681465, 52.32669961855012], [-2.084644447663073, 52.326698240102694], [-2.0846443758848, 52.32666074654764], [-2.0846806815008856, 52.326640751429196], [-2.084711341700507, 52.32667327208597], [-2.0847122132337828, 52.326674011353866], [-2.08471361595396, 52.326674760129464], [-2.084715995695672, 52.32667539671826], [-2.0847834670196974, 52.32668523468593], [-2.08478445961779, 52.32670549067932], [-2.084723794855731, 52.32671618142088], [-2.0847223458374278, 52.32671654297089]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ca9fce1ceb71f420d1d4bce9833332a6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2aae7a91b0810e11adff1cb69dcc6a82 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_36a67e7983f6e8460811d338cb709dcc = $(`&lt;div id=&quot;html_36a67e7983f6e8460811d338cb709dcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 92&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 66.0 sqm&lt;br&gt;Intersecting area: 66.5 sqm&lt;/div&gt;`)[0];\n",
" popup_2aae7a91b0810e11adff1cb69dcc6a82.setContent(html_36a67e7983f6e8460811d338cb709dcc);\n",
" \n",
" \n",
"\n",
" geo_json_ca9fce1ceb71f420d1d4bce9833332a6.bindPopup(popup_2aae7a91b0810e11adff1cb69dcc6a82)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ca9fce1ceb71f420d1d4bce9833332a6.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_61dedb0989f7104591a81855a4ba131a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_61dedb0989f7104591a81855a4ba131a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_61dedb0989f7104591a81855a4ba131a = L.geoJson(null, {\n",
" onEachFeature: geo_json_61dedb0989f7104591a81855a4ba131a_onEachFeature,\n",
" \n",
" style: geo_json_61dedb0989f7104591a81855a4ba131a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_61dedb0989f7104591a81855a4ba131a_add (data) {\n",
" geo_json_61dedb0989f7104591a81855a4ba131a\n",
" .addData(data);\n",
" }\n",
" geo_json_61dedb0989f7104591a81855a4ba131a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0840440239533677, 52.32674938197366], [-2.084091517623067, 52.32672985283613], [-2.08412430998488, 52.32674028231948], [-2.084124649691465, 52.32676844385959], [-2.08406130411007, 52.32677924945155], [-2.0840440239533677, 52.32674938197366]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_61dedb0989f7104591a81855a4ba131a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2175307a404a9560a6b227fa430fb415 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b6c63d11f8732f383533fe23a072f940 = $(`&lt;div id=&quot;html_b6c63d11f8732f383533fe23a072f940&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 93&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 20.8 sqm&lt;/div&gt;`)[0];\n",
" popup_2175307a404a9560a6b227fa430fb415.setContent(html_b6c63d11f8732f383533fe23a072f940);\n",
" \n",
" \n",
"\n",
" geo_json_61dedb0989f7104591a81855a4ba131a.bindPopup(popup_2175307a404a9560a6b227fa430fb415)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_61dedb0989f7104591a81855a4ba131a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d2c26cd17b123048acdbb714facafc73_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d2c26cd17b123048acdbb714facafc73_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d2c26cd17b123048acdbb714facafc73 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d2c26cd17b123048acdbb714facafc73_onEachFeature,\n",
" \n",
" style: geo_json_d2c26cd17b123048acdbb714facafc73_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d2c26cd17b123048acdbb714facafc73_add (data) {\n",
" geo_json_d2c26cd17b123048acdbb714facafc73\n",
" .addData(data);\n",
" }\n",
" geo_json_d2c26cd17b123048acdbb714facafc73_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084953791451716, 52.326378974233506], [-2.0849712285134037, 52.32636960825541], [-2.085005360665823, 52.32637785280641], [-2.0850173258879074, 52.32640040776249], [-2.0849687577025384, 52.32640938176066], [-2.084953791451716, 52.326378974233506]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d2c26cd17b123048acdbb714facafc73.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c82fa90514d8f13200ce441bf2b24224 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_df0ba3463024e9ec4508e8b803d33a5b = $(`&lt;div id=&quot;html_df0ba3463024e9ec4508e8b803d33a5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 94&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_c82fa90514d8f13200ce441bf2b24224.setContent(html_df0ba3463024e9ec4508e8b803d33a5b);\n",
" \n",
" \n",
"\n",
" geo_json_d2c26cd17b123048acdbb714facafc73.bindPopup(popup_c82fa90514d8f13200ce441bf2b24224)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d2c26cd17b123048acdbb714facafc73.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_998cdabd01589a23f0492d9a427072e7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_998cdabd01589a23f0492d9a427072e7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_998cdabd01589a23f0492d9a427072e7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_998cdabd01589a23f0492d9a427072e7_onEachFeature,\n",
" \n",
" style: geo_json_998cdabd01589a23f0492d9a427072e7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_998cdabd01589a23f0492d9a427072e7_add (data) {\n",
" geo_json_998cdabd01589a23f0492d9a427072e7\n",
" .addData(data);\n",
" }\n",
" geo_json_998cdabd01589a23f0492d9a427072e7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0850227011048568, 52.32653647768067], [-2.085021463510192, 52.32653766708004], [-2.0850208880151717, 52.32653903310445], [-2.0850210330573633, 52.32654044176457], [-2.085034023858853, 52.326560644142795], [-2.0850179240988096, 52.32657187103322], [-2.0849282299461023, 52.32658086031074], [-2.0849370656684094, 52.326540918592535], [-2.0849370115893318, 52.3265395008772], [-2.0849362386807675, 52.32653816459468], [-2.0849345356072138, 52.32653688382044], [-2.0849321922132273, 52.32653606650157], [-2.084881091981993, 52.32652705920228], [-2.0848654952795527, 52.32650607384235], [-2.084919900764498, 52.326486517814644], [-2.0849219411724937, 52.326485430327736], [-2.084923200239317, 52.32648396311687], [-2.084939817017232, 52.32645086541658], [-2.085014585874853, 52.32644132951372], [-2.0850630842444207, 52.326460882336285], [-2.0850776573870835, 52.32651646807892], [-2.0850244792258463, 52.32653558187534], [-2.0850227011048568, 52.32653647768067]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_998cdabd01589a23f0492d9a427072e7.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_386dd6cbeb0c722241030ebfc5e20c7d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_73156f0bad1f8142434e805252d48bd7 = $(`&lt;div id=&quot;html_73156f0bad1f8142434e805252d48bd7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 95&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 134.0 sqm&lt;br&gt;Intersecting area: 133.7 sqm&lt;/div&gt;`)[0];\n",
" popup_386dd6cbeb0c722241030ebfc5e20c7d.setContent(html_73156f0bad1f8142434e805252d48bd7);\n",
" \n",
" \n",
"\n",
" geo_json_998cdabd01589a23f0492d9a427072e7.bindPopup(popup_386dd6cbeb0c722241030ebfc5e20c7d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_998cdabd01589a23f0492d9a427072e7.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_0b156547bc43d9db0d8c2d0fedc82104_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0b156547bc43d9db0d8c2d0fedc82104_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0b156547bc43d9db0d8c2d0fedc82104 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0b156547bc43d9db0d8c2d0fedc82104_onEachFeature,\n",
" \n",
" style: geo_json_0b156547bc43d9db0d8c2d0fedc82104_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0b156547bc43d9db0d8c2d0fedc82104_add (data) {\n",
" geo_json_0b156547bc43d9db0d8c2d0fedc82104\n",
" .addData(data);\n",
" }\n",
" geo_json_0b156547bc43d9db0d8c2d0fedc82104_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084969423024979, 52.3277298502583], [-2.0849545682532478, 52.327693549582015], [-2.084968999255252, 52.32764907007744], [-2.0849745109916893, 52.327637051606125], [-2.0850643153441575, 52.327639237927286], [-2.0850445168980327, 52.32768753765628], [-2.0850442960486104, 52.32768867597237], [-2.085044552083763, 52.32768981035171], [-2.08504526725409, 52.327690868877944], [-2.085065183428134, 52.327712148667054], [-2.085034481467678, 52.327731666971005], [-2.084969423024979, 52.3277298502583]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0b156547bc43d9db0d8c2d0fedc82104.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d6dcaa85c2086cbe71bfd9f85fc75913 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d7ee3a25e15dc3ea939eb52934f0dacd = $(`&lt;div id=&quot;html_d7ee3a25e15dc3ea939eb52934f0dacd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 96&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 63.5 sqm&lt;/div&gt;`)[0];\n",
" popup_d6dcaa85c2086cbe71bfd9f85fc75913.setContent(html_d7ee3a25e15dc3ea939eb52934f0dacd);\n",
" \n",
" \n",
"\n",
" geo_json_0b156547bc43d9db0d8c2d0fedc82104.bindPopup(popup_d6dcaa85c2086cbe71bfd9f85fc75913)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0b156547bc43d9db0d8c2d0fedc82104.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_0d16e31fd47f1cc687534648e966f4b4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0d16e31fd47f1cc687534648e966f4b4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0d16e31fd47f1cc687534648e966f4b4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0d16e31fd47f1cc687534648e966f4b4_onEachFeature,\n",
" \n",
" style: geo_json_0d16e31fd47f1cc687534648e966f4b4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0d16e31fd47f1cc687534648e966f4b4_add (data) {\n",
" geo_json_0d16e31fd47f1cc687534648e966f4b4\n",
" .addData(data);\n",
" }\n",
" geo_json_0d16e31fd47f1cc687534648e966f4b4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084971330759331, 52.32799106254202], [-2.0849851981194645, 52.327953323392784], [-2.085017806798344, 52.32795158722988], [-2.0850796117889576, 52.32796221665551], [-2.0850636966302836, 52.328001010944455], [-2.084971330759331, 52.32799106254202]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0d16e31fd47f1cc687534648e966f4b4.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_367049e51daf4b1f2446dccf7814cfe3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f8379361d5ad944c5e816320ca76fb06 = $(`&lt;div id=&quot;html_f8379361d5ad944c5e816320ca76fb06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 97&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 30.0 sqm&lt;br&gt;Intersecting area: 29.9 sqm&lt;/div&gt;`)[0];\n",
" popup_367049e51daf4b1f2446dccf7814cfe3.setContent(html_f8379361d5ad944c5e816320ca76fb06);\n",
" \n",
" \n",
"\n",
" geo_json_0d16e31fd47f1cc687534648e966f4b4.bindPopup(popup_367049e51daf4b1f2446dccf7814cfe3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0d16e31fd47f1cc687534648e966f4b4.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_8f6bac955adc5210ee1a1c192d8bb026_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8f6bac955adc5210ee1a1c192d8bb026_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8f6bac955adc5210ee1a1c192d8bb026 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8f6bac955adc5210ee1a1c192d8bb026_onEachFeature,\n",
" \n",
" style: geo_json_8f6bac955adc5210ee1a1c192d8bb026_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8f6bac955adc5210ee1a1c192d8bb026_add (data) {\n",
" geo_json_8f6bac955adc5210ee1a1c192d8bb026\n",
" .addData(data);\n",
" }\n",
" geo_json_8f6bac955adc5210ee1a1c192d8bb026_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084057609339553, 52.327274702607376], [-2.08404472044319, 52.32726244288897], [-2.0840608524131423, 52.32725168899303], [-2.084109665081895, 52.32726189217425], [-2.0840938424488162, 52.327282530575985], [-2.084057609339553, 52.327274702607376]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8f6bac955adc5210ee1a1c192d8bb026.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9aea49b0b5eba46632157bc914ea82a2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8e28427dc7b3852869d4f8376070c4c5 = $(`&lt;div id=&quot;html_8e28427dc7b3852869d4f8376070c4c5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 98&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 9.0 sqm&lt;/div&gt;`)[0];\n",
" popup_9aea49b0b5eba46632157bc914ea82a2.setContent(html_8e28427dc7b3852869d4f8376070c4c5);\n",
" \n",
" \n",
"\n",
" geo_json_8f6bac955adc5210ee1a1c192d8bb026.bindPopup(popup_9aea49b0b5eba46632157bc914ea82a2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8f6bac955adc5210ee1a1c192d8bb026.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_eb43a633715258d0a3ed6d5b6271330a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_eb43a633715258d0a3ed6d5b6271330a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_eb43a633715258d0a3ed6d5b6271330a = L.geoJson(null, {\n",
" onEachFeature: geo_json_eb43a633715258d0a3ed6d5b6271330a_onEachFeature,\n",
" \n",
" style: geo_json_eb43a633715258d0a3ed6d5b6271330a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_eb43a633715258d0a3ed6d5b6271330a_add (data) {\n",
" geo_json_eb43a633715258d0a3ed6d5b6271330a\n",
" .addData(data);\n",
" }\n",
" geo_json_eb43a633715258d0a3ed6d5b6271330a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0841811309078606, 52.32771467447908], [-2.084163025730079, 52.327693325823255], [-2.0842080869708877, 52.32766504732505], [-2.0842409488336084, 52.32766460128683], [-2.0843155590032074, 52.32769227275613], [-2.084296838856989, 52.32771474005955], [-2.0841811309078606, 52.32771467447908]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_eb43a633715258d0a3ed6d5b6271330a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_48c50a1685c5070694c79760b3417ae9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_da59121df238c099a58ed8b5efad490a = $(`&lt;div id=&quot;html_da59121df238c099a58ed8b5efad490a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 99&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 42.0 sqm&lt;br&gt;Intersecting area: 42.0 sqm&lt;/div&gt;`)[0];\n",
" popup_48c50a1685c5070694c79760b3417ae9.setContent(html_da59121df238c099a58ed8b5efad490a);\n",
" \n",
" \n",
"\n",
" geo_json_eb43a633715258d0a3ed6d5b6271330a.bindPopup(popup_48c50a1685c5070694c79760b3417ae9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_eb43a633715258d0a3ed6d5b6271330a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_710dac96d43ea8c208647e05a5acda32_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_710dac96d43ea8c208647e05a5acda32_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_710dac96d43ea8c208647e05a5acda32 = L.geoJson(null, {\n",
" onEachFeature: geo_json_710dac96d43ea8c208647e05a5acda32_onEachFeature,\n",
" \n",
" style: geo_json_710dac96d43ea8c208647e05a5acda32_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_710dac96d43ea8c208647e05a5acda32_add (data) {\n",
" geo_json_710dac96d43ea8c208647e05a5acda32\n",
" .addData(data);\n",
" }\n",
" geo_json_710dac96d43ea8c208647e05a5acda32_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0842822393897844, 52.32795677999709], [-2.084265676009629, 52.327936839014704], [-2.0842830622821458, 52.327916597739645], [-2.084331309846684, 52.32791861027286], [-2.084314511507322, 52.32795705537148], [-2.0842822393897844, 52.32795677999709]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_710dac96d43ea8c208647e05a5acda32.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c9b9f68f6d7067fc9f7282d5aa0e7a20 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_24bfde941164e7f50dce6fb0cb4d798c = $(`&lt;div id=&quot;html_24bfde941164e7f50dce6fb0cb4d798c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 100&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 15.0 sqm&lt;br&gt;Intersecting area: 14.7 sqm&lt;/div&gt;`)[0];\n",
" popup_c9b9f68f6d7067fc9f7282d5aa0e7a20.setContent(html_24bfde941164e7f50dce6fb0cb4d798c);\n",
" \n",
" \n",
"\n",
" geo_json_710dac96d43ea8c208647e05a5acda32.bindPopup(popup_c9b9f68f6d7067fc9f7282d5aa0e7a20)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_710dac96d43ea8c208647e05a5acda32.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3535bb305ac0b5a7980324f0fab9af0c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3535bb305ac0b5a7980324f0fab9af0c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3535bb305ac0b5a7980324f0fab9af0c = L.geoJson(null, {\n",
" onEachFeature: geo_json_3535bb305ac0b5a7980324f0fab9af0c_onEachFeature,\n",
" \n",
" style: geo_json_3535bb305ac0b5a7980324f0fab9af0c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3535bb305ac0b5a7980324f0fab9af0c_add (data) {\n",
" geo_json_3535bb305ac0b5a7980324f0fab9af0c\n",
" .addData(data);\n",
" }\n",
" geo_json_3535bb305ac0b5a7980324f0fab9af0c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0833428205445843, 52.3270496520103], [-2.0833392788478577, 52.32703431544575], [-2.083338879403768, 52.32703335827134], [-2.083338147011188, 52.32703247865034], [-2.0833249413183283, 52.32702015164915], [-2.0833413753865098, 52.327000699622275], [-2.0834050097816617, 52.327010500636646], [-2.0833890014779666, 52.327049517731446], [-2.0833428205445843, 52.3270496520103]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3535bb305ac0b5a7980324f0fab9af0c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f11f3682f8e3d4c331e3c54c2a43e1fc = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_11d0ec8e173904448f06f18e34e07562 = $(`&lt;div id=&quot;html_11d0ec8e173904448f06f18e34e07562&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 101&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 21.0 sqm&lt;/div&gt;`)[0];\n",
" popup_f11f3682f8e3d4c331e3c54c2a43e1fc.setContent(html_11d0ec8e173904448f06f18e34e07562);\n",
" \n",
" \n",
"\n",
" geo_json_3535bb305ac0b5a7980324f0fab9af0c.bindPopup(popup_f11f3682f8e3d4c331e3c54c2a43e1fc)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3535bb305ac0b5a7980324f0fab9af0c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d240a8c7f878173a487f1db846560f49_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d240a8c7f878173a487f1db846560f49_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d240a8c7f878173a487f1db846560f49 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d240a8c7f878173a487f1db846560f49_onEachFeature,\n",
" \n",
" style: geo_json_d240a8c7f878173a487f1db846560f49_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d240a8c7f878173a487f1db846560f49_add (data) {\n",
" geo_json_d240a8c7f878173a487f1db846560f49\n",
" .addData(data);\n",
" }\n",
" geo_json_d240a8c7f878173a487f1db846560f49_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0834741234395104, 52.32716653853003], [-2.083442449288057, 52.3271469191974], [-2.083442015100603, 52.327101901105614], [-2.083487268578736, 52.327063608568345], [-2.0835215104886453, 52.32706301611003], [-2.08358207378676, 52.32709992913854], [-2.0835823062048173, 52.327138267654185], [-2.083536342599565, 52.327166494415245], [-2.0834741234395104, 52.32716653853003]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d240a8c7f878173a487f1db846560f49.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5fe32439254493c2e92d6b6af3fc7815 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b004c09843b4ab5a85cbdb043bcdff07 = $(`&lt;div id=&quot;html_b004c09843b4ab5a85cbdb043bcdff07&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 102&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 87.0 sqm&lt;br&gt;Intersecting area: 87.2 sqm&lt;/div&gt;`)[0];\n",
" popup_5fe32439254493c2e92d6b6af3fc7815.setContent(html_b004c09843b4ab5a85cbdb043bcdff07);\n",
" \n",
" \n",
"\n",
" geo_json_d240a8c7f878173a487f1db846560f49.bindPopup(popup_5fe32439254493c2e92d6b6af3fc7815)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d240a8c7f878173a487f1db846560f49.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a18790777b0c4e4d9561db6fdf300098_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a18790777b0c4e4d9561db6fdf300098_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a18790777b0c4e4d9561db6fdf300098 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a18790777b0c4e4d9561db6fdf300098_onEachFeature,\n",
" \n",
" style: geo_json_a18790777b0c4e4d9561db6fdf300098_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a18790777b0c4e4d9561db6fdf300098_add (data) {\n",
" geo_json_a18790777b0c4e4d9561db6fdf300098\n",
" .addData(data);\n",
" }\n",
" geo_json_a18790777b0c4e4d9561db6fdf300098_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084031140374481, 52.32718375331756], [-2.083985071750181, 52.32713648786365], [-2.0839883764561753, 52.327116552450015], [-2.084064903671244, 52.32710812168662], [-2.084081133129332, 52.327131690482375], [-2.0840825913108616, 52.3271330505576], [-2.0840844036037525, 52.32713389793748], [-2.084086179868283, 52.327134313815], [-2.084110412213999, 52.32713707717869], [-2.0840959162136676, 52.32718246374062], [-2.084031140374481, 52.32718375331756]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a18790777b0c4e4d9561db6fdf300098.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0bb8ef75ef91c1551358f1f9f772b54f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_554fafb6c018fea3b245ee4eeffe8c06 = $(`&lt;div id=&quot;html_554fafb6c018fea3b245ee4eeffe8c06&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 103&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 50.0 sqm&lt;br&gt;Intersecting area: 50.3 sqm&lt;/div&gt;`)[0];\n",
" popup_0bb8ef75ef91c1551358f1f9f772b54f.setContent(html_554fafb6c018fea3b245ee4eeffe8c06);\n",
" \n",
" \n",
"\n",
" geo_json_a18790777b0c4e4d9561db6fdf300098.bindPopup(popup_0bb8ef75ef91c1551358f1f9f772b54f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a18790777b0c4e4d9561db6fdf300098.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_39f7660ee678e794b2d7b581c9cb9773_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_39f7660ee678e794b2d7b581c9cb9773_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_39f7660ee678e794b2d7b581c9cb9773 = L.geoJson(null, {\n",
" onEachFeature: geo_json_39f7660ee678e794b2d7b581c9cb9773_onEachFeature,\n",
" \n",
" style: geo_json_39f7660ee678e794b2d7b581c9cb9773_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_39f7660ee678e794b2d7b581c9cb9773_add (data) {\n",
" geo_json_39f7660ee678e794b2d7b581c9cb9773\n",
" .addData(data);\n",
" }\n",
" geo_json_39f7660ee678e794b2d7b581c9cb9773_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083211728436821, 52.3272658024457], [-2.08317858887676, 52.32724640433686], [-2.083163447080499, 52.32721812289051], [-2.083164315624741, 52.32719075702512], [-2.083186706660774, 52.327188960253594], [-2.0831891677704846, 52.32718839033498], [-2.0831911407959423, 52.32718732450147], [-2.083192252235262, 52.327186119932165], [-2.083192710423416, 52.327184764785414], [-2.0831926515240418, 52.32716983930558], [-2.083192325498865, 52.327168911748196], [-2.083191688522684, 52.32716804734155], [-2.083189919505956, 52.327166798054435], [-2.0831639278853373, 52.32715546269568], [-2.0831777168537386, 52.327129190800115], [-2.0831964134216845, 52.32710805603563], [-2.0832736310681352, 52.32711010156953], [-2.0832605672204663, 52.32718478515742], [-2.083260690220515, 52.32718621001799], [-2.0832611761441746, 52.32718711498615], [-2.083261964188413, 52.327187937930276], [-2.0832630175876643, 52.32718863932158], [-2.0832642893306956, 52.327189189519586], [-2.0833038798082226, 52.32720108162232], [-2.083286128694586, 52.327256739882095], [-2.083211728436821, 52.3272658024457]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_39f7660ee678e794b2d7b581c9cb9773.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9c94ae906889f8140736f4052e06d875 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_679e7dcaf79c40b4c284137ce24f88aa = $(`&lt;div id=&quot;html_679e7dcaf79c40b4c284137ce24f88aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 104&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 118.0 sqm&lt;br&gt;Intersecting area: 117.5 sqm&lt;/div&gt;`)[0];\n",
" popup_9c94ae906889f8140736f4052e06d875.setContent(html_679e7dcaf79c40b4c284137ce24f88aa);\n",
" \n",
" \n",
"\n",
" geo_json_39f7660ee678e794b2d7b581c9cb9773.bindPopup(popup_9c94ae906889f8140736f4052e06d875)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_39f7660ee678e794b2d7b581c9cb9773.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d003d16b8878cb6ddec987891f7e184b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d003d16b8878cb6ddec987891f7e184b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d003d16b8878cb6ddec987891f7e184b = L.geoJson(null, {\n",
" onEachFeature: geo_json_d003d16b8878cb6ddec987891f7e184b_onEachFeature,\n",
" \n",
" style: geo_json_d003d16b8878cb6ddec987891f7e184b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d003d16b8878cb6ddec987891f7e184b_add (data) {\n",
" geo_json_d003d16b8878cb6ddec987891f7e184b\n",
" .addData(data);\n",
" }\n",
" geo_json_d003d16b8878cb6ddec987891f7e184b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080597173852751, 52.327345750974516], [-2.0806145494223434, 52.327317241962405], [-2.080647263498134, 52.32732759874217], [-2.080628026788012, 52.32734855097607], [-2.080597173852751, 52.327345750974516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d003d16b8878cb6ddec987891f7e184b.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e8d33edb7875c89fbe02f14d01052893 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3c1386be2b4cc59e16c67ab1c767a0e1 = $(`&lt;div id=&quot;html_3c1386be2b4cc59e16c67ab1c767a0e1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 105&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.9 sqm&lt;/div&gt;`)[0];\n",
" popup_e8d33edb7875c89fbe02f14d01052893.setContent(html_3c1386be2b4cc59e16c67ab1c767a0e1);\n",
" \n",
" \n",
"\n",
" geo_json_d003d16b8878cb6ddec987891f7e184b.bindPopup(popup_e8d33edb7875c89fbe02f14d01052893)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d003d16b8878cb6ddec987891f7e184b.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_4cc1f9b5eaba407d48daddea3747fe0b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4cc1f9b5eaba407d48daddea3747fe0b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4cc1f9b5eaba407d48daddea3747fe0b = L.geoJson(null, {\n",
" onEachFeature: geo_json_4cc1f9b5eaba407d48daddea3747fe0b_onEachFeature,\n",
" \n",
" style: geo_json_4cc1f9b5eaba407d48daddea3747fe0b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4cc1f9b5eaba407d48daddea3747fe0b_add (data) {\n",
" geo_json_4cc1f9b5eaba407d48daddea3747fe0b\n",
" .addData(data);\n",
" }\n",
" geo_json_4cc1f9b5eaba407d48daddea3747fe0b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0810834501550235, 52.32744699735989], [-2.081050963648488, 52.32742161163766], [-2.0810492597660355, 52.32742064456764], [-2.0810478840623823, 52.32742020409664], [-2.080963368936631, 52.32739975380226], [-2.080978329412794, 52.32734420209903], [-2.08100963575228, 52.32732536948537], [-2.081058494543108, 52.327325058968604], [-2.0810607111421726, 52.32732475986631], [-2.0810626716858835, 52.327324059977485], [-2.081063743103585, 52.327323402056], [-2.0810645707209083, 52.32732262383732], [-2.08106511791999, 52.32732175770385], [-2.0810653642188535, 52.32732084053239], [-2.081065757270503, 52.32729112857287], [-2.0810932152785946, 52.32727980359769], [-2.0811161674757335, 52.327271883612106], [-2.081160380260316, 52.32729854593476], [-2.0811550981352327, 52.327330674237956], [-2.08115510870848, 52.32733163528004], [-2.0811554523143534, 52.32733257272064], [-2.0811563244153146, 52.32733364644927], [-2.08115733822664, 52.327334379347825], [-2.0811913420517665, 52.32735422603843], [-2.0811915470745928, 52.32741792051994], [-2.081158385924101, 52.32744708508977], [-2.0810834501550235, 52.32744699735989]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4cc1f9b5eaba407d48daddea3747fe0b.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ab2b0bb1f88bac13d575f9700ff7ae78 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8a1392109517cb2825e2d2d2c2166d30 = $(`&lt;div id=&quot;html_8a1392109517cb2825e2d2d2c2166d30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 106&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 196.8 sqm&lt;/div&gt;`)[0];\n",
" popup_ab2b0bb1f88bac13d575f9700ff7ae78.setContent(html_8a1392109517cb2825e2d2d2c2166d30);\n",
" \n",
" \n",
"\n",
" geo_json_4cc1f9b5eaba407d48daddea3747fe0b.bindPopup(popup_ab2b0bb1f88bac13d575f9700ff7ae78)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4cc1f9b5eaba407d48daddea3747fe0b.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9304bfb691398ff2e35de7fae8b34665_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9304bfb691398ff2e35de7fae8b34665_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9304bfb691398ff2e35de7fae8b34665 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9304bfb691398ff2e35de7fae8b34665_onEachFeature,\n",
" \n",
" style: geo_json_9304bfb691398ff2e35de7fae8b34665_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9304bfb691398ff2e35de7fae8b34665_add (data) {\n",
" geo_json_9304bfb691398ff2e35de7fae8b34665\n",
" .addData(data);\n",
" }\n",
" geo_json_9304bfb691398ff2e35de7fae8b34665_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.081023696210308, 52.327563386874616], [-2.0810071649017288, 52.32754325212233], [-2.0810122643606426, 52.32752347558324], [-2.0810734335816528, 52.327534732364704], [-2.081055053091306, 52.32756404316018], [-2.081023696210308, 52.327563386874616]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9304bfb691398ff2e35de7fae8b34665.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6a0c6a6e95a816ca9da9ee3c6b4d2624 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ee606ad3f61cac62d04241c32f4fd2b5 = $(`&lt;div id=&quot;html_ee606ad3f61cac62d04241c32f4fd2b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 107&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.9 sqm&lt;/div&gt;`)[0];\n",
" popup_6a0c6a6e95a816ca9da9ee3c6b4d2624.setContent(html_ee606ad3f61cac62d04241c32f4fd2b5);\n",
" \n",
" \n",
"\n",
" geo_json_9304bfb691398ff2e35de7fae8b34665.bindPopup(popup_6a0c6a6e95a816ca9da9ee3c6b4d2624)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9304bfb691398ff2e35de7fae8b34665.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9166cc6e0a43021c9438385a8e431fd2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9166cc6e0a43021c9438385a8e431fd2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9166cc6e0a43021c9438385a8e431fd2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9166cc6e0a43021c9438385a8e431fd2_onEachFeature,\n",
" \n",
" style: geo_json_9166cc6e0a43021c9438385a8e431fd2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9166cc6e0a43021c9438385a8e431fd2_add (data) {\n",
" geo_json_9166cc6e0a43021c9438385a8e431fd2\n",
" .addData(data);\n",
" }\n",
" geo_json_9166cc6e0a43021c9438385a8e431fd2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.082801819099485, 52.32743701831097], [-2.082769022842206, 52.327426967851466], [-2.082767825546858, 52.32737997155481], [-2.082795539203616, 52.32735962434926], [-2.082860204700448, 52.32735097615319], [-2.082892114249987, 52.32736942225236], [-2.0828765108601806, 52.3274274937031], [-2.082801819099485, 52.32743701831097]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9166cc6e0a43021c9438385a8e431fd2.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1a682c90b0370b01123ea63e6494a9e7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ee9e56a0f87e8716277712cb0331d274 = $(`&lt;div id=&quot;html_ee9e56a0f87e8716277712cb0331d274&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 108&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 64.0 sqm&lt;/div&gt;`)[0];\n",
" popup_1a682c90b0370b01123ea63e6494a9e7.setContent(html_ee9e56a0f87e8716277712cb0331d274);\n",
" \n",
" \n",
"\n",
" geo_json_9166cc6e0a43021c9438385a8e431fd2.bindPopup(popup_1a682c90b0370b01123ea63e6494a9e7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9166cc6e0a43021c9438385a8e431fd2.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_07744d12ae00cb3800d74b2d75652792_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_07744d12ae00cb3800d74b2d75652792_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_07744d12ae00cb3800d74b2d75652792 = L.geoJson(null, {\n",
" onEachFeature: geo_json_07744d12ae00cb3800d74b2d75652792_onEachFeature,\n",
" \n",
" style: geo_json_07744d12ae00cb3800d74b2d75652792_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_07744d12ae00cb3800d74b2d75652792_add (data) {\n",
" geo_json_07744d12ae00cb3800d74b2d75652792\n",
" .addData(data);\n",
" }\n",
" geo_json_07744d12ae00cb3800d74b2d75652792_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0825644056399586, 52.32756231679614], [-2.082547873632557, 52.327542182259705], [-2.082552972404256, 52.32752240565441], [-2.0826141420139446, 52.32753366163806], [-2.08259576254254, 52.32756297267278], [-2.0825644056399586, 52.32756231679614]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_07744d12ae00cb3800d74b2d75652792.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_067cc8ad5530f56892cfaa90cfef14cf = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_629e30aed7135b26db8dec284dc47a1d = $(`&lt;div id=&quot;html_629e30aed7135b26db8dec284dc47a1d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 109&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 14.0 sqm&lt;br&gt;Intersecting area: 13.9 sqm&lt;/div&gt;`)[0];\n",
" popup_067cc8ad5530f56892cfaa90cfef14cf.setContent(html_629e30aed7135b26db8dec284dc47a1d);\n",
" \n",
" \n",
"\n",
" geo_json_07744d12ae00cb3800d74b2d75652792.bindPopup(popup_067cc8ad5530f56892cfaa90cfef14cf)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_07744d12ae00cb3800d74b2d75652792.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_57d48ebab10c9f2a1ae94430bc5c5631_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_57d48ebab10c9f2a1ae94430bc5c5631_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_57d48ebab10c9f2a1ae94430bc5c5631 = L.geoJson(null, {\n",
" onEachFeature: geo_json_57d48ebab10c9f2a1ae94430bc5c5631_onEachFeature,\n",
" \n",
" style: geo_json_57d48ebab10c9f2a1ae94430bc5c5631_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_57d48ebab10c9f2a1ae94430bc5c5631_add (data) {\n",
" geo_json_57d48ebab10c9f2a1ae94430bc5c5631\n",
" .addData(data);\n",
" }\n",
" geo_json_57d48ebab10c9f2a1ae94430bc5c5631_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0811833216624667, 52.32759716997109], [-2.0811862270220067, 52.32758599315748], [-2.0812334285261755, 52.327577180787564], [-2.081264613420818, 52.32759602159465], [-2.0812649310126474, 52.32761553099616], [-2.0812015248518487, 52.3276263449843], [-2.0811833216624667, 52.32759716997109]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_57d48ebab10c9f2a1ae94430bc5c5631.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0c2b2eab0b95e33c265dc4e017445c0c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ecd3aaf022398c277204d8bae14d247a = $(`&lt;div id=&quot;html_ecd3aaf022398c277204d8bae14d247a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 110&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.6 sqm&lt;/div&gt;`)[0];\n",
" popup_0c2b2eab0b95e33c265dc4e017445c0c.setContent(html_ecd3aaf022398c277204d8bae14d247a);\n",
" \n",
" \n",
"\n",
" geo_json_57d48ebab10c9f2a1ae94430bc5c5631.bindPopup(popup_0c2b2eab0b95e33c265dc4e017445c0c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_57d48ebab10c9f2a1ae94430bc5c5631.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_fe2ea465c64a390648b54b3d5579b8d4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_fe2ea465c64a390648b54b3d5579b8d4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_fe2ea465c64a390648b54b3d5579b8d4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_fe2ea465c64a390648b54b3d5579b8d4_onEachFeature,\n",
" \n",
" style: geo_json_fe2ea465c64a390648b54b3d5579b8d4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_fe2ea465c64a390648b54b3d5579b8d4_add (data) {\n",
" geo_json_fe2ea465c64a390648b54b3d5579b8d4\n",
" .addData(data);\n",
" }\n",
" geo_json_fe2ea465c64a390648b54b3d5579b8d4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0823287197422085, 52.327597194728405], [-2.0823626974764813, 52.32757586960627], [-2.082464752041985, 52.32757627017352], [-2.0824677341366358, 52.32760640321617], [-2.08237383038617, 52.32763423514653], [-2.0823287197422085, 52.327597194728405]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_fe2ea465c64a390648b54b3d5579b8d4.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_43d6e7e0155a50278f29129d1b6fd9a4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_32f931856efc6336feff087a1db9d24a = $(`&lt;div id=&quot;html_32f931856efc6336feff087a1db9d24a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 111&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 42.0 sqm&lt;br&gt;Intersecting area: 42.0 sqm&lt;/div&gt;`)[0];\n",
" popup_43d6e7e0155a50278f29129d1b6fd9a4.setContent(html_32f931856efc6336feff087a1db9d24a);\n",
" \n",
" \n",
"\n",
" geo_json_fe2ea465c64a390648b54b3d5579b8d4.bindPopup(popup_43d6e7e0155a50278f29129d1b6fd9a4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_fe2ea465c64a390648b54b3d5579b8d4.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_2a6e4a3d2f177eed7bdeacfc29512f40_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2a6e4a3d2f177eed7bdeacfc29512f40_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2a6e4a3d2f177eed7bdeacfc29512f40 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2a6e4a3d2f177eed7bdeacfc29512f40_onEachFeature,\n",
" \n",
" style: geo_json_2a6e4a3d2f177eed7bdeacfc29512f40_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2a6e4a3d2f177eed7bdeacfc29512f40_add (data) {\n",
" geo_json_2a6e4a3d2f177eed7bdeacfc29512f40\n",
" .addData(data);\n",
" }\n",
" geo_json_2a6e4a3d2f177eed7bdeacfc29512f40_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.082430141267317, 52.327638164018715], [-2.082451874074438, 52.32763104565278], [-2.0824666811733126, 52.32765155630023], [-2.082420814124805, 52.327660618157026], [-2.082430141267317, 52.327638164018715]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2a6e4a3d2f177eed7bdeacfc29512f40.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1100b609faa22efc8e7e46a8fbf5bbd7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4ce15caa64f12fd30b1776274c489211 = $(`&lt;div id=&quot;html_4ce15caa64f12fd30b1776274c489211&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 112&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 5.7 sqm&lt;/div&gt;`)[0];\n",
" popup_1100b609faa22efc8e7e46a8fbf5bbd7.setContent(html_4ce15caa64f12fd30b1776274c489211);\n",
" \n",
" \n",
"\n",
" geo_json_2a6e4a3d2f177eed7bdeacfc29512f40.bindPopup(popup_1100b609faa22efc8e7e46a8fbf5bbd7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2a6e4a3d2f177eed7bdeacfc29512f40.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_33753384bf579dcf63877924de64ed4a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_33753384bf579dcf63877924de64ed4a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_33753384bf579dcf63877924de64ed4a = L.geoJson(null, {\n",
" onEachFeature: geo_json_33753384bf579dcf63877924de64ed4a_onEachFeature,\n",
" \n",
" style: geo_json_33753384bf579dcf63877924de64ed4a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_33753384bf579dcf63877924de64ed4a_add (data) {\n",
" geo_json_33753384bf579dcf63877924de64ed4a\n",
" .addData(data);\n",
" }\n",
" geo_json_33753384bf579dcf63877924de64ed4a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.082039291377984, 52.32782393159268], [-2.081990831573902, 52.3277983549767], [-2.081988477857342, 52.32779752052794], [-2.08198618098299, 52.327797266805966], [-2.0819195060248883, 52.32779649958801], [-2.081903506495187, 52.32776666237722], [-2.0819591804863675, 52.32773804022491], [-2.0819604291360845, 52.32773721495451], [-2.0819614276406306, 52.32773601227171], [-2.081979679127692, 52.3277023025262], [-2.082100617404553, 52.327702763082335], [-2.0821311929324953, 52.3277227161734], [-2.082115671299766, 52.327804865000445], [-2.082039291377984, 52.32782393159268]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_33753384bf579dcf63877924de64ed4a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_34222cd9553706c92e1b34104d125316 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_057e84ae281d3d4c1e617cf008a1f0b6 = $(`&lt;div id=&quot;html_057e84ae281d3d4c1e617cf008a1f0b6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 113&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 146.0 sqm&lt;br&gt;Intersecting area: 146.2 sqm&lt;/div&gt;`)[0];\n",
" popup_34222cd9553706c92e1b34104d125316.setContent(html_057e84ae281d3d4c1e617cf008a1f0b6);\n",
" \n",
" \n",
"\n",
" geo_json_33753384bf579dcf63877924de64ed4a.bindPopup(popup_34222cd9553706c92e1b34104d125316)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_33753384bf579dcf63877924de64ed4a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_2907c6f150344783e7f318cce9507f80_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2907c6f150344783e7f318cce9507f80_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2907c6f150344783e7f318cce9507f80 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2907c6f150344783e7f318cce9507f80_onEachFeature,\n",
" \n",
" style: geo_json_2907c6f150344783e7f318cce9507f80_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2907c6f150344783e7f318cce9507f80_add (data) {\n",
" geo_json_2907c6f150344783e7f318cce9507f80\n",
" .addData(data);\n",
" }\n",
" geo_json_2907c6f150344783e7f318cce9507f80_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.082536146504874, 52.32794924845354], [-2.0825051056450534, 52.32793016873968], [-2.0825052206763486, 52.327910033320954], [-2.0825320370209544, 52.32789925507081], [-2.082582656757971, 52.327890818249294], [-2.082600251094564, 52.327909281660375], [-2.0825687454388597, 52.32794931819936], [-2.082536146504874, 52.32794924845354]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2907c6f150344783e7f318cce9507f80.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a7bb555f587a0a8c28a1cd7dc35b3107 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_55530c7a8ec1f213ebe1235ddb69bdb8 = $(`&lt;div id=&quot;html_55530c7a8ec1f213ebe1235ddb69bdb8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 114&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 29.0 sqm&lt;br&gt;Intersecting area: 29.5 sqm&lt;/div&gt;`)[0];\n",
" popup_a7bb555f587a0a8c28a1cd7dc35b3107.setContent(html_55530c7a8ec1f213ebe1235ddb69bdb8);\n",
" \n",
" \n",
"\n",
" geo_json_2907c6f150344783e7f318cce9507f80.bindPopup(popup_a7bb555f587a0a8c28a1cd7dc35b3107)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2907c6f150344783e7f318cce9507f80.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662_onEachFeature,\n",
" \n",
" style: geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662_add (data) {\n",
" geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662\n",
" .addData(data);\n",
" }\n",
" geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0826388160257467, 52.327975946551994], [-2.0826224756240266, 52.327957153229384], [-2.0826408462429913, 52.327917534045454], [-2.082672337582111, 52.327917754678516], [-2.0827030131831905, 52.32793686067764], [-2.082668633911681, 52.327976573819896], [-2.0826388160257467, 52.327975946551994]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_dcf8232e6bae6efce48406a8c015ac98 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6fc213484e8186695e3bad2173524291 = $(`&lt;div id=&quot;html_6fc213484e8186695e3bad2173524291&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 115&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 24.5 sqm&lt;/div&gt;`)[0];\n",
" popup_dcf8232e6bae6efce48406a8c015ac98.setContent(html_6fc213484e8186695e3bad2173524291);\n",
" \n",
" \n",
"\n",
" geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662.bindPopup(popup_dcf8232e6bae6efce48406a8c015ac98)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d3d9cfb2d9875ce0adfa7ae95eaf6662.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_1fc7e53536c64c8075792ad93d66c763_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1fc7e53536c64c8075792ad93d66c763_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1fc7e53536c64c8075792ad93d66c763 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1fc7e53536c64c8075792ad93d66c763_onEachFeature,\n",
" \n",
" style: geo_json_1fc7e53536c64c8075792ad93d66c763_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1fc7e53536c64c8075792ad93d66c763_add (data) {\n",
" geo_json_1fc7e53536c64c8075792ad93d66c763\n",
" .addData(data);\n",
" }\n",
" geo_json_1fc7e53536c64c8075792ad93d66c763_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0788875884478926, 52.32238101957659], [-2.0789069957993425, 52.32235152585261], [-2.0789139364646294, 52.32234339737221], [-2.0789516768397425, 52.322374314647405], [-2.078950629363494, 52.322394081204635], [-2.0788875884478926, 52.32238101957659]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1fc7e53536c64c8075792ad93d66c763.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7180f9af7507f4c423cda396f421ef7e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3c8fc629ee4b246a6207d5713246948d = $(`&lt;div id=&quot;html_3c8fc629ee4b246a6207d5713246948d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 116&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 89.0 sqm&lt;br&gt;Intersecting area: 13.4 sqm&lt;/div&gt;`)[0];\n",
" popup_7180f9af7507f4c423cda396f421ef7e.setContent(html_3c8fc629ee4b246a6207d5713246948d);\n",
" \n",
" \n",
"\n",
" geo_json_1fc7e53536c64c8075792ad93d66c763.bindPopup(popup_7180f9af7507f4c423cda396f421ef7e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1fc7e53536c64c8075792ad93d66c763.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_63537b58da116556fd1588670dd3d2e6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_63537b58da116556fd1588670dd3d2e6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_63537b58da116556fd1588670dd3d2e6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_63537b58da116556fd1588670dd3d2e6_onEachFeature,\n",
" \n",
" style: geo_json_63537b58da116556fd1588670dd3d2e6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_63537b58da116556fd1588670dd3d2e6_add (data) {\n",
" geo_json_63537b58da116556fd1588670dd3d2e6\n",
" .addData(data);\n",
" }\n",
" geo_json_63537b58da116556fd1588670dd3d2e6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0877490389964453, 52.32315678434537], [-2.087748261271675, 52.32315599198823], [-2.0877472358216, 52.32315531309593], [-2.087745328458797, 52.323154571024965], [-2.087742765997436, 52.32315420254037], [-2.0877220286501275, 52.323154217986136], [-2.0877201231976144, 52.323154438763915], [-2.0877187095922802, 52.32315483088989], [-2.0877169184738897, 52.323155737536084], [-2.087715679612054, 52.323156941347754], [-2.0877150944832694, 52.32315856091831], [-2.0877153877851713, 52.323159973062204], [-2.0877405540250793, 52.323197378724124], [-2.087687097101982, 52.32320799100886], [-2.087685668828952, 52.32320838224942], [-2.0876844096242997, 52.323208949566954], [-2.087683373742208, 52.32320966775724], [-2.087624242660043, 52.32326077609766], [-2.0875582753258253, 52.32324497723011], [-2.08755599029894, 52.32324467505878], [-2.0875540449768932, 52.323244771801726], [-2.0875522103131128, 52.32324517952136], [-2.0875506153628116, 52.32324586845664], [-2.0874911974368513, 52.32327964383716], [-2.08745688842419, 52.32327966931645], [-2.0873671785729155, 52.32322436614794], [-2.087367901631447, 52.32320417631941], [-2.0874062040670065, 52.323186214249766], [-2.087407694109116, 52.32318514960366], [-2.0874085762702603, 52.32318385525991], [-2.0874087813106232, 52.32318292641919], [-2.0874086679511445, 52.32318199152164], [-2.08740808620666, 52.32318087626757], [-2.087407293798887, 52.32318007493382], [-2.087381711693718, 52.32316150038108], [-2.0873822482125712, 52.32313229890994], [-2.087413445897771, 52.32311333340971], [-2.08748761356052, 52.32310412452284], [-2.0875523544509327, 52.32312159022911], [-2.0875538046084277, 52.3231218750377], [-2.0875553189454776, 52.323121971005186], [-2.087623376259508, 52.323121920396574], [-2.087625994619439, 52.323121622672396], [-2.0876276719885305, 52.323121065830115], [-2.0876292912811647, 52.32312007750266], [-2.087630336393679, 52.323118831580416], [-2.0876306921108774, 52.3231176832685], [-2.0876311869956607, 52.32306089090294], [-2.0876873525973427, 52.32304085939452], [-2.087752782221662, 52.323032025442934], [-2.087828826720626, 52.32305114126587], [-2.0878438247308266, 52.323170236754486], [-2.0877673855137946, 52.323180778109325], [-2.0877490389964453, 52.32315678434537]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_63537b58da116556fd1588670dd3d2e6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1ff2f0cc06fdab8fdef99c696ecae455 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_413b07caf672a45ac20c3314188b0c9d = $(`&lt;div id=&quot;html_413b07caf672a45ac20c3314188b0c9d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 117&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 506.0 sqm&lt;br&gt;Intersecting area: 505.7 sqm&lt;/div&gt;`)[0];\n",
" popup_1ff2f0cc06fdab8fdef99c696ecae455.setContent(html_413b07caf672a45ac20c3314188b0c9d);\n",
" \n",
" \n",
"\n",
" geo_json_63537b58da116556fd1588670dd3d2e6.bindPopup(popup_1ff2f0cc06fdab8fdef99c696ecae455)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_63537b58da116556fd1588670dd3d2e6.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_5dff52fc95eb43f73bcff1a1233194fd_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5dff52fc95eb43f73bcff1a1233194fd_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5dff52fc95eb43f73bcff1a1233194fd = L.geoJson(null, {\n",
" onEachFeature: geo_json_5dff52fc95eb43f73bcff1a1233194fd_onEachFeature,\n",
" \n",
" style: geo_json_5dff52fc95eb43f73bcff1a1233194fd_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5dff52fc95eb43f73bcff1a1233194fd_add (data) {\n",
" geo_json_5dff52fc95eb43f73bcff1a1233194fd\n",
" .addData(data);\n",
" }\n",
" geo_json_5dff52fc95eb43f73bcff1a1233194fd_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085123324542607, 52.3237200934964], [-2.0851508728657673, 52.32370782713492], [-2.0851731414286125, 52.32370053166848], [-2.0851890389468926, 52.32373492206942], [-2.0851899862682712, 52.32373618360762], [-2.08519122628779, 52.323737058353565], [-2.085193133648555, 52.32373780855502], [-2.085194947761128, 52.3237381362851], [-2.085196837599474, 52.3237381690801], [-2.08519903040978, 52.32373781687576], [-2.0852312701139177, 52.32372667267298], [-2.0852605144969445, 52.323747880964966], [-2.085140619838725, 52.32376644345485], [-2.085123324542607, 52.3237200934964]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5dff52fc95eb43f73bcff1a1233194fd.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_20bfa8b94ce436a2023269d70c293624 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6afea3f80a4a6f39893fea9064a2eadc = $(`&lt;div id=&quot;html_6afea3f80a4a6f39893fea9064a2eadc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 118&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 33.0 sqm&lt;br&gt;Intersecting area: 32.9 sqm&lt;/div&gt;`)[0];\n",
" popup_20bfa8b94ce436a2023269d70c293624.setContent(html_6afea3f80a4a6f39893fea9064a2eadc);\n",
" \n",
" \n",
"\n",
" geo_json_5dff52fc95eb43f73bcff1a1233194fd.bindPopup(popup_20bfa8b94ce436a2023269d70c293624)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5dff52fc95eb43f73bcff1a1233194fd.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_61f44e2794f227a68430de5556aaa6be_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_61f44e2794f227a68430de5556aaa6be_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_61f44e2794f227a68430de5556aaa6be = L.geoJson(null, {\n",
" onEachFeature: geo_json_61f44e2794f227a68430de5556aaa6be_onEachFeature,\n",
" \n",
" style: geo_json_61f44e2794f227a68430de5556aaa6be_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_61f44e2794f227a68430de5556aaa6be_add (data) {\n",
" geo_json_61f44e2794f227a68430de5556aaa6be\n",
" .addData(data);\n",
" }\n",
" geo_json_61f44e2794f227a68430de5556aaa6be_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0886037386667873, 52.32431280745338], [-2.0885723916697807, 52.32429328543751], [-2.088571812245595, 52.32422522107584], [-2.088570922978249, 52.32422369071354], [-2.088542728843127, 52.324193759260744], [-2.0885565881945065, 52.324163653251745], [-2.0885919996618107, 52.32415551117192], [-2.088624265162457, 52.324175084637304], [-2.088624821178443, 52.32423435750109], [-2.0886539720520356, 52.32428333124764], [-2.088635427026923, 52.3243130281444], [-2.0886037386667873, 52.32431280745338]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_61f44e2794f227a68430de5556aaa6be.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0b854b7c123e4415bc6a4137763af41e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ada89f66e29d6df73b5df4ae08a0b582 = $(`&lt;div id=&quot;html_ada89f66e29d6df73b5df4ae08a0b582&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 119&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 76.0 sqm&lt;br&gt;Intersecting area: 76.3 sqm&lt;/div&gt;`)[0];\n",
" popup_0b854b7c123e4415bc6a4137763af41e.setContent(html_ada89f66e29d6df73b5df4ae08a0b582);\n",
" \n",
" \n",
"\n",
" geo_json_61f44e2794f227a68430de5556aaa6be.bindPopup(popup_0b854b7c123e4415bc6a4137763af41e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_61f44e2794f227a68430de5556aaa6be.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_95c626b8404863455adc9b8988f3fa8c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_95c626b8404863455adc9b8988f3fa8c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_95c626b8404863455adc9b8988f3fa8c = L.geoJson(null, {\n",
" onEachFeature: geo_json_95c626b8404863455adc9b8988f3fa8c_onEachFeature,\n",
" \n",
" style: geo_json_95c626b8404863455adc9b8988f3fa8c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_95c626b8404863455adc9b8988f3fa8c_add (data) {\n",
" geo_json_95c626b8404863455adc9b8988f3fa8c\n",
" .addData(data);\n",
" }\n",
" geo_json_95c626b8404863455adc9b8988f3fa8c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.088719671932049, 52.32466949442386], [-2.088719277453667, 52.32460231456445], [-2.0886755426115995, 52.32450906879353], [-2.088694008186526, 52.32449752316283], [-2.088742092611035, 52.324534052785125], [-2.0887428070910463, 52.32458373837297], [-2.0887430764752573, 52.32458490779712], [-2.08874364606619, 52.324585787507644], [-2.0887445045190582, 52.324586574404364], [-2.0887720502184175, 52.32460685531207], [-2.0887722279578127, 52.324661048097376], [-2.0887537490843524, 52.32467256947348], [-2.088719671932049, 52.32466949442386]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_95c626b8404863455adc9b8988f3fa8c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d56ceda184ab947b76eea3ab23094495 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7e4bc98c803c56a7a1f3efce3a11f629 = $(`&lt;div id=&quot;html_7e4bc98c803c56a7a1f3efce3a11f629&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 120&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 58.0 sqm&lt;br&gt;Intersecting area: 58.4 sqm&lt;/div&gt;`)[0];\n",
" popup_d56ceda184ab947b76eea3ab23094495.setContent(html_7e4bc98c803c56a7a1f3efce3a11f629);\n",
" \n",
" \n",
"\n",
" geo_json_95c626b8404863455adc9b8988f3fa8c.bindPopup(popup_d56ceda184ab947b76eea3ab23094495)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_95c626b8404863455adc9b8988f3fa8c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d18c0f7799929b47bbdf7272b73f9ebb_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d18c0f7799929b47bbdf7272b73f9ebb_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d18c0f7799929b47bbdf7272b73f9ebb = L.geoJson(null, {\n",
" onEachFeature: geo_json_d18c0f7799929b47bbdf7272b73f9ebb_onEachFeature,\n",
" \n",
" style: geo_json_d18c0f7799929b47bbdf7272b73f9ebb_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d18c0f7799929b47bbdf7272b73f9ebb_add (data) {\n",
" geo_json_d18c0f7799929b47bbdf7272b73f9ebb\n",
" .addData(data);\n",
" }\n",
" geo_json_d18c0f7799929b47bbdf7272b73f9ebb_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083724429641392, 52.32453979321212], [-2.0836980789270116, 52.32455039250528], [-2.0836966983124037, 52.32455120170541], [-2.0836955605670093, 52.324552419785164], [-2.083695169059033, 52.32455332627572], [-2.0836803066093195, 52.32461186033259], [-2.083633498826024, 52.32463142029095], [-2.0835728173568526, 52.324631144214266], [-2.083554985093628, 52.32458335328341], [-2.083627353188638, 52.32450842525851], [-2.083627871033356, 52.324506824635726], [-2.0836285559704186, 52.32447565243098], [-2.083665593922249, 52.32447351612803], [-2.0836681180481587, 52.32447298840566], [-2.083670168737898, 52.32447194318826], [-2.0836713402491194, 52.324470737670964], [-2.0836718482617975, 52.32446936990011], [-2.083672379735669, 52.324447835301136], [-2.0837168843092218, 52.32441152642447], [-2.083754591819943, 52.32441897676145], [-2.0837684709724056, 52.32444016488064], [-2.083753928311206, 52.32448542648855], [-2.083724429641392, 52.32453979321212]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d18c0f7799929b47bbdf7272b73f9ebb.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8e8942761558969291f97c001b3af4e2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e39507688a32e6b70e072197aa01cef8 = $(`&lt;div id=&quot;html_e39507688a32e6b70e072197aa01cef8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 121&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 175.0 sqm&lt;br&gt;Intersecting area: 175.0 sqm&lt;/div&gt;`)[0];\n",
" popup_8e8942761558969291f97c001b3af4e2.setContent(html_e39507688a32e6b70e072197aa01cef8);\n",
" \n",
" \n",
"\n",
" geo_json_d18c0f7799929b47bbdf7272b73f9ebb.bindPopup(popup_8e8942761558969291f97c001b3af4e2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d18c0f7799929b47bbdf7272b73f9ebb.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_728ec7711056d837fcadb612293d8542_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_728ec7711056d837fcadb612293d8542_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_728ec7711056d837fcadb612293d8542 = L.geoJson(null, {\n",
" onEachFeature: geo_json_728ec7711056d837fcadb612293d8542_onEachFeature,\n",
" \n",
" style: geo_json_728ec7711056d837fcadb612293d8542_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_728ec7711056d837fcadb612293d8542_add (data) {\n",
" geo_json_728ec7711056d837fcadb612293d8542\n",
" .addData(data);\n",
" }\n",
" geo_json_728ec7711056d837fcadb612293d8542_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083490819387442, 52.32474957451195], [-2.0834902610607173, 52.32475071935801], [-2.0834748719392784, 52.32481025256884], [-2.0834339057832767, 52.32482945319614], [-2.0834323758021767, 52.324830425219595], [-2.0834014255750466, 52.32487321800873], [-2.0833678009524914, 52.324874243324686], [-2.0833499266588187, 52.324862468027526], [-2.083364553068917, 52.32479908576856], [-2.0834657720885748, 52.32468902709829], [-2.083530199217607, 52.324680597162036], [-2.0835482278597213, 52.32470185788039], [-2.0834916101421355, 52.324748748649284], [-2.083490819387442, 52.32474957451195]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_728ec7711056d837fcadb612293d8542.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d03cfe3b57d26b8f004ac5d0eab4fc96 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0dc93381900b90fdca24a3b710ffa188 = $(`&lt;div id=&quot;html_0dc93381900b90fdca24a3b710ffa188&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 122&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 123.0 sqm&lt;br&gt;Intersecting area: 122.5 sqm&lt;/div&gt;`)[0];\n",
" popup_d03cfe3b57d26b8f004ac5d0eab4fc96.setContent(html_0dc93381900b90fdca24a3b710ffa188);\n",
" \n",
" \n",
"\n",
" geo_json_728ec7711056d837fcadb612293d8542.bindPopup(popup_d03cfe3b57d26b8f004ac5d0eab4fc96)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_728ec7711056d837fcadb612293d8542.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_c4bdf9f31cf305cf552be9d935eb4335_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c4bdf9f31cf305cf552be9d935eb4335_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c4bdf9f31cf305cf552be9d935eb4335 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c4bdf9f31cf305cf552be9d935eb4335_onEachFeature,\n",
" \n",
" style: geo_json_c4bdf9f31cf305cf552be9d935eb4335_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c4bdf9f31cf305cf552be9d935eb4335_add (data) {\n",
" geo_json_c4bdf9f31cf305cf552be9d935eb4335\n",
" .addData(data);\n",
" }\n",
" geo_json_c4bdf9f31cf305cf552be9d935eb4335_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083315013025149, 52.32498377948964], [-2.083314765787639, 52.32498494299409], [-2.0833148124889713, 52.3250097271392], [-2.0833150641091063, 52.32501088939051], [-2.0833157997838647, 52.32501197308989], [-2.083316702112459, 52.32501273302201], [-2.083318159063856, 52.325013493461995], [-2.08338638639661, 52.325040589277826], [-2.0833872664264237, 52.325062200187446], [-2.083313402824537, 52.32511660630009], [-2.083216218616219, 52.325143877546225], [-2.0832146131207323, 52.32514449271335], [-2.0832133176564063, 52.32514534050218], [-2.083212418673385, 52.32514636242606], [-2.083212028611323, 52.32514726082031], [-2.083196902636368, 52.32520577252042], [-2.0831296313992627, 52.32522449536064], [-2.0831274352036426, 52.32522543548454], [-2.083125936746482, 52.3252267967629], [-2.083125361206659, 52.32522816098221], [-2.083125504711676, 52.32522956784555], [-2.0831389240368274, 52.325259060604076], [-2.083108909572448, 52.32529573302288], [-2.0830428389771733, 52.32528429824763], [-2.0830413464617066, 52.325284139275816], [-2.0830394596917365, 52.32528420983041], [-2.0830373271646705, 52.32528467972492], [-2.0830355298797, 52.32528552516917], [-2.082989920663547, 52.32531489592733], [-2.082927621559294, 52.32531473663135], [-2.082895944675379, 52.32527717451721], [-2.0829109749864503, 52.32523941319988], [-2.082943648588699, 52.32522012240317], [-2.083048915862874, 52.325219955618], [-2.083050435763775, 52.325219855652605], [-2.0830518892740404, 52.32521956514453], [-2.0830535153298717, 52.32521895356181], [-2.083054596922579, 52.32521829112219], [-2.0830554303222355, 52.32521750569183], [-2.08305598037451, 52.32521663235346], [-2.0830562222045867, 52.325215707091374], [-2.0830561470833118, 52.325214772163], [-2.083042229456864, 52.32515976377182], [-2.083057250199947, 52.32511387170423], [-2.083112124550546, 52.325094449228985], [-2.0831136506165757, 52.32509373073312], [-2.0831148197314393, 52.325092793130494], [-2.0831157074373667, 52.32509123899731], [-2.0831302911568277, 52.32503302796667], [-2.083160244918765, 52.32501411301906], [-2.0832413881898906, 52.32500443798221], [-2.0832432200851643, 52.32500406089695], [-2.0832451113046275, 52.325003242351734], [-2.0832466625905575, 52.32500189002829], [-2.083247152426709, 52.32500099155913], [-2.0832473237934197, 52.325000049267565], [-2.083247818856958, 52.3249426986494], [-2.0833191054445646, 52.324895917187106], [-2.083369353434034, 52.324887540525154], [-2.083387278138401, 52.32490658705322], [-2.0833157446133757, 52.32498269475225], [-2.083315013025149, 52.32498377948964]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c4bdf9f31cf305cf552be9d935eb4335.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_86d3873c2a72e4663588d1a67b234e1a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7bc3f8ad563e316a50167e39397ee0ca = $(`&lt;div id=&quot;html_7bc3f8ad563e316a50167e39397ee0ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 123&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 531.0 sqm&lt;br&gt;Intersecting area: 530.9 sqm&lt;/div&gt;`)[0];\n",
" popup_86d3873c2a72e4663588d1a67b234e1a.setContent(html_7bc3f8ad563e316a50167e39397ee0ca);\n",
" \n",
" \n",
"\n",
" geo_json_c4bdf9f31cf305cf552be9d935eb4335.bindPopup(popup_86d3873c2a72e4663588d1a67b234e1a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c4bdf9f31cf305cf552be9d935eb4335.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_8443201e9b80940dfaf1e691fef55195_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8443201e9b80940dfaf1e691fef55195_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8443201e9b80940dfaf1e691fef55195 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8443201e9b80940dfaf1e691fef55195_onEachFeature,\n",
" \n",
" style: geo_json_8443201e9b80940dfaf1e691fef55195_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8443201e9b80940dfaf1e691fef55195_add (data) {\n",
" geo_json_8443201e9b80940dfaf1e691fef55195\n",
" .addData(data);\n",
" }\n",
" geo_json_8443201e9b80940dfaf1e691fef55195_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0829821434203493, 52.325422399891124], [-2.0829803201941193, 52.325422716731545], [-2.0829786911681536, 52.32542330853575], [-2.082977599261092, 52.325423954799014], [-2.0829765784033176, 52.325424932755126], [-2.08297599943889, 52.32542603805834], [-2.0829758823289084, 52.32542696502856], [-2.0829761764665538, 52.32542811196788], [-2.082976751786934, 52.32542897192675], [-2.082977604251753, 52.325429741786316], [-2.082992465211693, 52.325438558786765], [-2.08297801218397, 52.325475104231614], [-2.082945115926341, 52.3254946819847], [-2.082911356222223, 52.325484181832806], [-2.082910724869523, 52.325447960771854], [-2.082955821833306, 52.32542856682911], [-2.082957159887121, 52.32542773159506], [-2.0829582360096044, 52.32542649199025], [-2.0829586182796653, 52.32542534457013], [-2.0829585031073465, 52.32542417592464], [-2.0829580583078258, 52.32542327901962], [-2.082957320195993, 52.325422457834215], [-2.082955422322447, 52.325421308423536], [-2.082866657877323, 52.325384366366144], [-2.0828676207882837, 52.32535638639964], [-2.082908556883024, 52.32534580399502], [-2.0829460789410588, 52.32533851709086], [-2.082948564326889, 52.32536970952577], [-2.0829488965933685, 52.325370844752364], [-2.0829498995918914, 52.32537208379295], [-2.0829508927771343, 52.32537277983676], [-2.0829520955186305, 52.32537333638001], [-2.0830067468600304, 52.32539358874776], [-2.082992089841347, 52.3254214983562], [-2.0829821434203493, 52.325422399891124]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8443201e9b80940dfaf1e691fef55195.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e2dd4d7627f9b0cf83444d6d38866218 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2014d40ea2bf70725b8055f80551f3aa = $(`&lt;div id=&quot;html_2014d40ea2bf70725b8055f80551f3aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 124&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 79.0 sqm&lt;br&gt;Intersecting area: 79.1 sqm&lt;/div&gt;`)[0];\n",
" popup_e2dd4d7627f9b0cf83444d6d38866218.setContent(html_2014d40ea2bf70725b8055f80551f3aa);\n",
" \n",
" \n",
"\n",
" geo_json_8443201e9b80940dfaf1e691fef55195.bindPopup(popup_e2dd4d7627f9b0cf83444d6d38866218)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8443201e9b80940dfaf1e691fef55195.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_cf4798c34803d7de05764136db9d76f7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cf4798c34803d7de05764136db9d76f7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cf4798c34803d7de05764136db9d76f7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cf4798c34803d7de05764136db9d76f7_onEachFeature,\n",
" \n",
" style: geo_json_cf4798c34803d7de05764136db9d76f7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cf4798c34803d7de05764136db9d76f7_add (data) {\n",
" geo_json_cf4798c34803d7de05764136db9d76f7\n",
" .addData(data);\n",
" }\n",
" geo_json_cf4798c34803d7de05764136db9d76f7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083726114135811, 52.32629410218179], [-2.0836632423400965, 52.32629444084041], [-2.083573439518417, 52.326257433524425], [-2.0835723942013344, 52.326207434396416], [-2.0835720999290204, 52.32620623081654], [-2.0835712893466436, 52.32620511930324], [-2.0835136256995748, 52.326148277440645], [-2.0835141381075006, 52.3261204838887], [-2.083541249039852, 52.32610944987157], [-2.083578358713674, 52.326101063562234], [-2.0836387612444702, 52.32612889747759], [-2.083639809933555, 52.32617908720135], [-2.0836400629480343, 52.32618020180661], [-2.0836405883711704, 52.326181043814195], [-2.083668374290587, 52.32621499622975], [-2.0836700377920376, 52.32621632919149], [-2.083672018651367, 52.326217106333615], [-2.0836742980371428, 52.32621745892884], [-2.0837116642644276, 52.326218221715166], [-2.083756978542818, 52.32625521831757], [-2.083756602783431, 52.32627528919721], [-2.083726114135811, 52.32629410218179]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cf4798c34803d7de05764136db9d76f7.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8c5d51b0fb80983ecff058f58f48201b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ee3cbb1e3c99d52ad9fb7f16b61cb01e = $(`&lt;div id=&quot;html_ee3cbb1e3c99d52ad9fb7f16b61cb01e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 125&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 172.0 sqm&lt;br&gt;Intersecting area: 172.3 sqm&lt;/div&gt;`)[0];\n",
" popup_8c5d51b0fb80983ecff058f58f48201b.setContent(html_ee3cbb1e3c99d52ad9fb7f16b61cb01e);\n",
" \n",
" \n",
"\n",
" geo_json_cf4798c34803d7de05764136db9d76f7.bindPopup(popup_8c5d51b0fb80983ecff058f58f48201b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cf4798c34803d7de05764136db9d76f7.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_62759bde83fa1db0d474d75452487833_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_62759bde83fa1db0d474d75452487833_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_62759bde83fa1db0d474d75452487833 = L.geoJson(null, {\n",
" onEachFeature: geo_json_62759bde83fa1db0d474d75452487833_onEachFeature,\n",
" \n",
" style: geo_json_62759bde83fa1db0d474d75452487833_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_62759bde83fa1db0d474d75452487833_add (data) {\n",
" geo_json_62759bde83fa1db0d474d75452487833\n",
" .addData(data);\n",
" }\n",
" geo_json_62759bde83fa1db0d474d75452487833_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0847874547424627, 52.32628482200143], [-2.0847852501833075, 52.32628523713748], [-2.0847833633299246, 52.32628605121139], [-2.0847819833000014, 52.32628718316832], [-2.084781244881538, 52.32628852234028], [-2.084781289122125, 52.32629016841527], [-2.084782297150429, 52.32629169422311], [-2.0848136711614935, 52.32631854962549], [-2.0847852023857913, 52.326384268671866], [-2.084784956612081, 52.32638541689542], [-2.084785110975981, 52.326386338279015], [-2.084785570468239, 52.32638722168428], [-2.084813511228571, 52.326426404213734], [-2.084782491082005, 52.32644639646948], [-2.084735676415518, 52.32645546530655], [-2.0847035002847827, 52.326436556896184], [-2.0846881178972985, 52.32634277864459], [-2.0846874139500478, 52.32634143421724], [-2.0846860647771477, 52.32634028983712], [-2.084684201173871, 52.326339458681844], [-2.08468200965241, 52.32633902243633], [-2.0846445317417275, 52.326338999931906], [-2.0846430383010186, 52.32633914305027], [-2.084641625914072, 52.32633947130699], [-2.0846403517788565, 52.32633997027851], [-2.0846392730848526, 52.32634061744778], [-2.084638113254739, 52.32634180768753], [-2.0846376385272927, 52.3263429273062], [-2.084633818082666, 52.32637457374345], [-2.084588129204353, 52.326374606565714], [-2.0845717018209067, 52.32635955798722], [-2.0845702125247176, 52.32635879938228], [-2.0845684508178035, 52.32635830618801], [-2.084566152647482, 52.32635811185152], [-2.0845642396281723, 52.32635829392903], [-2.084562144020719, 52.32635890586526], [-2.0845035681338557, 52.32638366645167], [-2.08446657077413, 52.32638405529455], [-2.084464713487372, 52.326384222047835], [-2.084462985855982, 52.326384670997804], [-2.084461502286566, 52.32638537509378], [-2.084420045233746, 52.3264108353827], [-2.0844191016500666, 52.32641154628444], [-2.084418286326182, 52.32641257444613], [-2.0844179201716257, 52.32641369668681], [-2.084417213742296, 52.3264364073272], [-2.084391659663087, 52.32644668614776], [-2.0843898321973855, 52.32644787416268], [-2.0843888197095217, 52.32644938434272], [-2.084388661550602, 52.3264503158405], [-2.0843887404785306, 52.32649166888548], [-2.0843888977644567, 52.32649258936722], [-2.084389360185098, 52.32649347097571], [-2.0843908359157783, 52.32649480855873], [-2.084392649623442, 52.32649563795383], [-2.0843944185034746, 52.326496042141784], [-2.084460550483785, 52.326505449725666], [-2.0844905123678013, 52.32654661771188], [-2.084492026278499, 52.32654796695645], [-2.084494229017593, 52.32654889406425], [-2.0844960652618547, 52.32654922718196], [-2.0844979786898743, 52.32654925817073], [-2.0846334006686567, 52.32654055012926], [-2.084652627575743, 52.32656162820744], [-2.0846209495277734, 52.32660825434718], [-2.0845010844468694, 52.32661730363225], [-2.084499250983438, 52.32661765826202], [-2.0844976308111907, 52.32661829323222], [-2.0844963368423683, 52.32661916441006], [-2.084495455517845, 52.326620211503254], [-2.084495090439391, 52.32662112786264], [-2.0844950853575313, 52.32662230558222], [-2.0844954422004256, 52.32662322322849], [-2.084496102650993, 52.32662407502514], [-2.0845355291649255, 52.32665927570842], [-2.0845488384490074, 52.326734096044525], [-2.0844892027998396, 52.32677044933676], [-2.0844579076255334, 52.32677955637382], [-2.084395003569115, 52.32677103830541], [-2.084392363757133, 52.326770979962305], [-2.084390197305872, 52.32677138967075], [-2.0843886182266997, 52.32677202910689], [-2.084340272042893, 52.32679766511182], [-2.0842938707728274, 52.326795996490155], [-2.0842935917814462, 52.32675740897462], [-2.0843258633097705, 52.32673860265792], [-2.084387892176304, 52.32674680044171], [-2.084390539151357, 52.32674676707957], [-2.084392994278732, 52.326746159381464], [-2.084394701949119, 52.32674524115582], [-2.084396002233651, 52.326743826966705], [-2.084410686128926, 52.32671255394148], [-2.0844541325947397, 52.32669525352725], [-2.0844552597757193, 52.32669463329786], [-2.084456156337884, 52.32669388467093], [-2.084456892358188, 52.32669281610651], [-2.084457144455373, 52.326691899823956], [-2.0844570189914267, 52.32669074287782], [-2.0844564152943295, 52.32668964380854], [-2.0844553716492027, 52.326688675413834], [-2.084453958618868, 52.32668790417083], [-2.084380618348689, 52.32666051326857], [-2.0843805475947876, 52.326623439550296], [-2.084406072634734, 52.32660481784818], [-2.084406861987743, 52.32660401536119], [-2.0844074394419465, 52.326602899262255], [-2.0844075491771106, 52.32660196420251], [-2.084407340512319, 52.326601035664034], [-2.0844064532563014, 52.32659974261156], [-2.0844049589668767, 52.326598680142695], [-2.0843661051604703, 52.32658055048292], [-2.084336248205551, 52.326535115640816], [-2.0843358956662854, 52.326477219935356], [-2.0843355350234307, 52.32647584469477], [-2.08433450553839, 52.32647460388464], [-2.084333205356733, 52.326473757938025], [-2.0843067784272367, 52.32646184327479], [-2.0843210013440814, 52.326408913204844], [-2.0843386117984903, 52.32637960245046], [-2.084388118616012, 52.326387259899604], [-2.0843900337070327, 52.326387396075596], [-2.084392309027541, 52.32638715081021], [-2.084394032106125, 52.32638662185031], [-2.0843954714975936, 52.32638583597643], [-2.084455675463285, 52.326343042644304], [-2.0846552893765256, 52.32631567792295], [-2.084657436506372, 52.3263151549518], [-2.084742407370319, 52.32628036651712], [-2.0847443156222973, 52.32627922878345], [-2.084745063848055, 52.32627841373323], [-2.0847455214045225, 52.326277521574376], [-2.0847456678167133, 52.32627659098477], [-2.0847454958279963, 52.326275661524505], [-2.0847321186512766, 52.32624590910485], [-2.084762529542733, 52.32622657538442], [-2.0848417768422958, 52.32625404990008], [-2.0848265699024284, 52.32628396404222], [-2.0847874547424627, 52.32628482200143]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_62759bde83fa1db0d474d75452487833.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c95f02f13d4a5f7d877f5901bba338c2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_75d6c404f3129b073458b223cc472bac = $(`&lt;div id=&quot;html_75d6c404f3129b073458b223cc472bac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 126&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 685.0 sqm&lt;br&gt;Intersecting area: 684.5 sqm&lt;/div&gt;`)[0];\n",
" popup_c95f02f13d4a5f7d877f5901bba338c2.setContent(html_75d6c404f3129b073458b223cc472bac);\n",
" \n",
" \n",
"\n",
" geo_json_62759bde83fa1db0d474d75452487833.bindPopup(popup_c95f02f13d4a5f7d877f5901bba338c2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_62759bde83fa1db0d474d75452487833.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3b899b73157c26d907659e8b5c1da1f6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3b899b73157c26d907659e8b5c1da1f6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3b899b73157c26d907659e8b5c1da1f6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3b899b73157c26d907659e8b5c1da1f6_onEachFeature,\n",
" \n",
" style: geo_json_3b899b73157c26d907659e8b5c1da1f6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3b899b73157c26d907659e8b5c1da1f6_add (data) {\n",
" geo_json_3b899b73157c26d907659e8b5c1da1f6\n",
" .addData(data);\n",
" }\n",
" geo_json_3b899b73157c26d907659e8b5c1da1f6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0838151238348606, 52.32660846465953], [-2.0837793727711293, 52.326609245273715], [-2.0837767750080505, 52.32660969033567], [-2.0837754671256707, 52.32661019741544], [-2.0837743620236595, 52.32661086077846], [-2.0837731875595358, 52.32661208338155], [-2.0837726942316266, 52.32661346912097], [-2.0837725138915797, 52.326642969677174], [-2.083752987695013, 52.32665424468007], [-2.0836910047580424, 52.326652349559126], [-2.0836317237975543, 52.32654374965363], [-2.083632259114905, 52.326516467629105], [-2.0836464871743052, 52.32651468195925], [-2.0836483059104736, 52.32651429678788], [-2.0836498966890433, 52.326513634877266], [-2.0836511524847734, 52.326512742160034], [-2.083651986843555, 52.32651167982386], [-2.083652352495913, 52.326510285186046], [-2.083651993298862, 52.32650889016281], [-2.0836322550396282, 52.32647164701048], [-2.083657599705197, 52.326460714915626], [-2.083658706274324, 52.326460055149326], [-2.083659563165671, 52.32645926879794], [-2.0836601337517013, 52.326458389149266], [-2.083660390234306, 52.32645745668665], [-2.083660254472887, 52.32645627816688], [-2.0836472833643356, 52.32641743984479], [-2.0837242119890034, 52.32640618160481], [-2.0837698898758843, 52.32640652671102], [-2.08382988330961, 52.3264342241704], [-2.0838312504889793, 52.32652071427219], [-2.08383170308796, 52.32652183862041], [-2.083832839593629, 52.32652303800338], [-2.0838605777931405, 52.32654401665539], [-2.08385969955999, 52.326572231209724], [-2.0838151238348606, 52.32660846465953]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3b899b73157c26d907659e8b5c1da1f6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e332d4f4b61225c381adaa634a46695a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_24eaf45ba152515c152463f856791e31 = $(`&lt;div id=&quot;html_24eaf45ba152515c152463f856791e31&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 127&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 315.0 sqm&lt;br&gt;Intersecting area: 314.5 sqm&lt;/div&gt;`)[0];\n",
" popup_e332d4f4b61225c381adaa634a46695a.setContent(html_24eaf45ba152515c152463f856791e31);\n",
" \n",
" \n",
"\n",
" geo_json_3b899b73157c26d907659e8b5c1da1f6.bindPopup(popup_e332d4f4b61225c381adaa634a46695a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3b899b73157c26d907659e8b5c1da1f6.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_af3a19c524c7237be190f63a40a53134_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_af3a19c524c7237be190f63a40a53134_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_af3a19c524c7237be190f63a40a53134 = L.geoJson(null, {\n",
" onEachFeature: geo_json_af3a19c524c7237be190f63a40a53134_onEachFeature,\n",
" \n",
" style: geo_json_af3a19c524c7237be190f63a40a53134_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_af3a19c524c7237be190f63a40a53134_add (data) {\n",
" geo_json_af3a19c524c7237be190f63a40a53134\n",
" .addData(data);\n",
" }\n",
" geo_json_af3a19c524c7237be190f63a40a53134_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0810582102929422, 52.326297756813034], [-2.0810579097539144, 52.326298696497965], [-2.0810579408533116, 52.32629965392942], [-2.081072133719206, 52.326347471100135], [-2.0810546221524624, 52.32635906073075], [-2.0809916486642477, 52.326348799494184], [-2.0810035168819345, 52.32631152427516], [-2.0810034835088835, 52.32631012721926], [-2.0810029180218437, 52.32630901372359], [-2.0810019052412927, 52.326308027298026], [-2.081000512784041, 52.32630723352353], [-2.0809981066128467, 52.32630654383246], [-2.080996600900567, 52.326306402823015], [-2.080995079409826, 52.32630645601055], [-2.0809352440848126, 52.326314368962876], [-2.080902284449006, 52.32629453406846], [-2.080887729645526, 52.32621238986411], [-2.0809067700082298, 52.326201540898595], [-2.0809644960290354, 52.32620930112231], [-2.0809668085053743, 52.32620930852197], [-2.080968659631881, 52.32620897640657], [-2.0809703062795784, 52.326208360345845], [-2.080971632611181, 52.326207501770526], [-2.0809725492378948, 52.32620646187269], [-2.0809729422689047, 52.32620554640084], [-2.080973013896189, 52.326204600584695], [-2.080972646413909, 52.32620344020023], [-2.0809602958515545, 52.326180840151544], [-2.0809463356417597, 52.32615902154921], [-2.0809635321569844, 52.32614768837643], [-2.081038592774067, 52.326147443457046], [-2.0810570845047462, 52.32615830886756], [-2.081071746714362, 52.326203646222716], [-2.081045801094122, 52.32621519670196], [-2.081044659223829, 52.326215826803065], [-2.0810437567596196, 52.32621658799441], [-2.081043133271037, 52.326217447887345], [-2.0810427861734366, 52.32621860336619], [-2.0810429004926765, 52.32623534392744], [-2.0810433159688944, 52.32623626873289], [-2.081044042371266, 52.326237118707276], [-2.0810862027823656, 52.326275772695546], [-2.081059485608705, 52.32629628154286], [-2.0810582102929422, 52.326297756813034]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_af3a19c524c7237be190f63a40a53134.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_905f6d0421f10a85077bd416b08407e6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b5818e8ca0fd8ee8407e15c5bc2facae = $(`&lt;div id=&quot;html_b5818e8ca0fd8ee8407e15c5bc2facae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 128&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 197.0 sqm&lt;/div&gt;`)[0];\n",
" popup_905f6d0421f10a85077bd416b08407e6.setContent(html_b5818e8ca0fd8ee8407e15c5bc2facae);\n",
" \n",
" \n",
"\n",
" geo_json_af3a19c524c7237be190f63a40a53134.bindPopup(popup_905f6d0421f10a85077bd416b08407e6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_af3a19c524c7237be190f63a40a53134.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_308f05ec062369be1d1a989f43f5ec0f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_308f05ec062369be1d1a989f43f5ec0f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_308f05ec062369be1d1a989f43f5ec0f = L.geoJson(null, {\n",
" onEachFeature: geo_json_308f05ec062369be1d1a989f43f5ec0f_onEachFeature,\n",
" \n",
" style: geo_json_308f05ec062369be1d1a989f43f5ec0f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_308f05ec062369be1d1a989f43f5ec0f_add (data) {\n",
" geo_json_308f05ec062369be1d1a989f43f5ec0f\n",
" .addData(data);\n",
" }\n",
" geo_json_308f05ec062369be1d1a989f43f5ec0f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080419416435609, 52.3268602905355], [-2.080417893501887, 52.32685956516728], [-2.080416115746793, 52.32685910878054], [-2.08041381764713, 52.32685895751906], [-2.0802723246039854, 52.3268633882269], [-2.080270787121125, 52.32686353850906], [-2.0802693350990125, 52.32686388292765], [-2.0802671946686386, 52.32686490567072], [-2.0802662951491535, 52.32686568483314], [-2.0802655796392027, 52.326866792916526], [-2.080252280646273, 52.32689956674221], [-2.0802521458619454, 52.32690048832864], [-2.080252413518168, 52.326901630799874], [-2.080252965325498, 52.32690249168376], [-2.080254038193954, 52.326903441216295], [-2.080295339306848, 52.32692869708801], [-2.0802965083507456, 52.32692927885355], [-2.0802978473151796, 52.32692970137932], [-2.080300425965076, 52.32693000978377], [-2.080367147586422, 52.326930540537134], [-2.080426698966871, 52.326966870610356], [-2.0804275908154444, 52.32702236107662], [-2.0803064756053646, 52.32703413008707], [-2.0802782064079217, 52.32701653217743], [-2.0802762535767534, 52.32701582238313], [-2.080274038821234, 52.32701551283412], [-2.080271776419943, 52.32701563214492], [-2.080269682057598, 52.32701617028723], [-2.0802684798763607, 52.32701673749074], [-2.0802672856419293, 52.32701763912381], [-2.0802666283339217, 52.32701847655958], [-2.0802662646080146, 52.327019378522465], [-2.0802654475612345, 52.327033254543494], [-2.080217849126224, 52.327060844619325], [-2.0802168423825487, 52.327061565420195], [-2.0802161058281667, 52.327062399312965], [-2.0802156119485384, 52.32706354499944], [-2.080215624368259, 52.32706472899989], [-2.0802208575705996, 52.32708776280761], [-2.080176408390707, 52.32711479153036], [-2.0801288423687887, 52.32711500641042], [-2.0800827544447795, 52.32708715197788], [-2.0800818083365664, 52.327064647466514], [-2.0800812864533897, 52.3270632947988], [-2.0800801133675737, 52.327062104394265], [-2.080079024907946, 52.32706145874046], [-2.080077396569905, 52.32706086649507], [-2.0800385070076803, 52.327050599161765], [-2.0800381216369312, 52.32700389266663], [-2.080124342607707, 52.326947728924765], [-2.0801253161341355, 52.32694648941591], [-2.080125626619793, 52.32694535733678], [-2.0801271026821553, 52.32692184607591], [-2.080196798616919, 52.32688520494675], [-2.0801980823904884, 52.32688432482916], [-2.0801990661128937, 52.326883045753604], [-2.0802147372273887, 52.32684995565831], [-2.08028808316175, 52.32680495919836], [-2.080313655483296, 52.32680408858988], [-2.08038109917687, 52.326795928925556], [-2.0804120749050226, 52.32683741550305], [-2.0804130641806844, 52.32683838936774], [-2.080414424358439, 52.326839177778226], [-2.080416418124848, 52.326839808424076], [-2.0804186298003122, 52.326840040658986], [-2.0804844417376787, 52.326840677153974], [-2.080542666456091, 52.32688818199206], [-2.0804817556479467, 52.32689902175769], [-2.080419416435609, 52.3268602905355]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_308f05ec062369be1d1a989f43f5ec0f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8a2a5f1bb8c9e568ecfa18b954ceb930 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e526cc2268dabc7c068b71f98dbd227a = $(`&lt;div id=&quot;html_e526cc2268dabc7c068b71f98dbd227a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 129&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 500.0 sqm&lt;br&gt;Intersecting area: 499.6 sqm&lt;/div&gt;`)[0];\n",
" popup_8a2a5f1bb8c9e568ecfa18b954ceb930.setContent(html_e526cc2268dabc7c068b71f98dbd227a);\n",
" \n",
" \n",
"\n",
" geo_json_308f05ec062369be1d1a989f43f5ec0f.bindPopup(popup_8a2a5f1bb8c9e568ecfa18b954ceb930)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_308f05ec062369be1d1a989f43f5ec0f.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_7fdd7de3f14a96926bbf06e378f2a074_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7fdd7de3f14a96926bbf06e378f2a074_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7fdd7de3f14a96926bbf06e378f2a074 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7fdd7de3f14a96926bbf06e378f2a074_onEachFeature,\n",
" \n",
" style: geo_json_7fdd7de3f14a96926bbf06e378f2a074_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7fdd7de3f14a96926bbf06e378f2a074_add (data) {\n",
" geo_json_7fdd7de3f14a96926bbf06e378f2a074\n",
" .addData(data);\n",
" }\n",
" geo_json_7fdd7de3f14a96926bbf06e378f2a074_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0821900379601024, 52.326638215875185], [-2.082188140659157, 52.32663818213704], [-2.082186651686562, 52.32663837106921], [-2.082184932912907, 52.32663886403567], [-2.0821837425285734, 52.32663944293647], [-2.0821825689105875, 52.32664035805675], [-2.0821819322016526, 52.32664120357816], [-2.0821815934710126, 52.32664211092675], [-2.082181567327541, 52.32664304232942], [-2.082187942228708, 52.326671149318685], [-2.0821578216709553, 52.326717201932475], [-2.082074143835449, 52.32674501121245], [-2.0820720489730884, 52.326746052835816], [-2.082071175910312, 52.326746837390715], [-2.0820704956617875, 52.32674794545622], [-2.082054849976308, 52.326789224950346], [-2.0820009063924005, 52.326799215567796], [-2.081999521901476, 52.32679956984613], [-2.0819980044755395, 52.326800242469126], [-2.0818351969281, 52.32691533940294], [-2.081760616784456, 52.32690712202512], [-2.0817590687283714, 52.3269071033203], [-2.0817575503786743, 52.32690728417811], [-2.0817561277678513, 52.3269076555632], [-2.081754862480822, 52.32690820214584], [-2.0817535904909343, 52.3269090930579], [-2.081752628844466, 52.3269103829211], [-2.0817523624918235, 52.326911555424715], [-2.0817527143061363, 52.32691295765205], [-2.0817763940444514, 52.326951077617366], [-2.0816761024066155, 52.32699791150827], [-2.081675148589555, 52.3269986772369], [-2.081615123751023, 52.32705936220752], [-2.0815661306398567, 52.32705987802373], [-2.0815492024135294, 52.32704812787583], [-2.081564120029648, 52.32697617081768], [-2.0816322998718046, 52.32696536770698], [-2.081634391252021, 52.32696481246372], [-2.081636340750831, 52.32696370711759], [-2.0816374052152335, 52.32696247202587], [-2.0816523552078676, 52.32693038194827], [-2.0816938811769865, 52.32691092084412], [-2.0817483454855883, 52.32690310833008], [-2.081750477986107, 52.32690257463196], [-2.081752234146266, 52.326901662704], [-2.081753110174645, 52.32690088803922], [-2.081753702832509, 52.326900017378314], [-2.08175398577337, 52.32689909029442], [-2.0817539473541946, 52.326898148146675], [-2.0817396471331637, 52.32685069703718], [-2.0817694884056746, 52.326822338332185], [-2.081882233743618, 52.32678558809121], [-2.0818843374461373, 52.326784559947235], [-2.08188555455754, 52.326783357112895], [-2.081886100782787, 52.32678198123441], [-2.08188715028767, 52.326759205640734], [-2.0819420835821116, 52.326731423690426], [-2.081943149092224, 52.32673076037213], [-2.081944128889868, 52.32672976717536], [-2.08194474076557, 52.32672818896689], [-2.081947474408067, 52.32669574954334], [-2.0820562744598, 52.32668630240767], [-2.0820577560249447, 52.32668607572369], [-2.082059128674939, 52.3266856657109], [-2.0820603337408863, 52.32668509039782], [-2.0820613169821516, 52.3266843749947], [-2.0820620388331794, 52.32668355009015], [-2.082062465622674, 52.32668265167006], [-2.0820768064207327, 52.326634041581585], [-2.0821062341536156, 52.326615487781105], [-2.0821529913599526, 52.3266296039431], [-2.082155217786229, 52.326629879286756], [-2.0821578394636813, 52.32662965809928], [-2.082160162243999, 52.32662888062594], [-2.082161882582784, 52.32662764866852], [-2.0821627077345, 52.3266263517038], [-2.0821627986332576, 52.32662473161065], [-2.0821510641013883, 52.32658896600958], [-2.0822063804248208, 52.32657798903894], [-2.0822583477705674, 52.32656987326647], [-2.0822756468860475, 52.32659957377533], [-2.082244581028088, 52.32664536096116], [-2.0821900379601024, 52.326638215875185]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7fdd7de3f14a96926bbf06e378f2a074.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e97ffbcf6d371850a7ca7c159175f478 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4320940fd7c05da7b8da20fb5db135bb = $(`&lt;div id=&quot;html_4320940fd7c05da7b8da20fb5db135bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 130&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 516.0 sqm&lt;br&gt;Intersecting area: 515.9 sqm&lt;/div&gt;`)[0];\n",
" popup_e97ffbcf6d371850a7ca7c159175f478.setContent(html_4320940fd7c05da7b8da20fb5db135bb);\n",
" \n",
" \n",
"\n",
" geo_json_7fdd7de3f14a96926bbf06e378f2a074.bindPopup(popup_e97ffbcf6d371850a7ca7c159175f478)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7fdd7de3f14a96926bbf06e378f2a074.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a50f5ba7421623f9a84b128317d576e8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a50f5ba7421623f9a84b128317d576e8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a50f5ba7421623f9a84b128317d576e8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a50f5ba7421623f9a84b128317d576e8_onEachFeature,\n",
" \n",
" style: geo_json_a50f5ba7421623f9a84b128317d576e8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a50f5ba7421623f9a84b128317d576e8_add (data) {\n",
" geo_json_a50f5ba7421623f9a84b128317d576e8\n",
" .addData(data);\n",
" }\n",
" geo_json_a50f5ba7421623f9a84b128317d576e8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0799910024395563, 52.327124475096426], [-2.0799895842822544, 52.32712489140491], [-2.079987562891852, 52.327126027342224], [-2.079959889658402, 52.32715150996029], [-2.079958923571418, 52.327152809697324], [-2.079958661585517, 52.32715399029174], [-2.0799585602643456, 52.327186554523145], [-2.0798733416334505, 52.32712809048642], [-2.079885481508712, 52.32712806458784], [-2.0798873872831476, 52.32712790596726], [-2.079889161930531, 52.32712744895879], [-2.079890944578305, 52.32712655232752], [-2.079892021302117, 52.32712557526071], [-2.0799195152084224, 52.3270917903353], [-2.0799687533695064, 52.32708313531126], [-2.0800135494098138, 52.327092040238874], [-2.0800306645290156, 52.32712132495306], [-2.0799925324642765, 52.32712425379402], [-2.0799910024395563, 52.327124475096426]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a50f5ba7421623f9a84b128317d576e8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6d5c08b86101cf9a2b0cc6397594960a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bcab58584b911144c4b723051e84ce1b = $(`&lt;div id=&quot;html_bcab58584b911144c4b723051e84ce1b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 131&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 195.0 sqm&lt;br&gt;Intersecting area: 55.5 sqm&lt;/div&gt;`)[0];\n",
" popup_6d5c08b86101cf9a2b0cc6397594960a.setContent(html_bcab58584b911144c4b723051e84ce1b);\n",
" \n",
" \n",
"\n",
" geo_json_a50f5ba7421623f9a84b128317d576e8.bindPopup(popup_6d5c08b86101cf9a2b0cc6397594960a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a50f5ba7421623f9a84b128317d576e8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1_onEachFeature,\n",
" \n",
" style: geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1_add (data) {\n",
" geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1\n",
" .addData(data);\n",
" }\n",
" geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0842652847808933, 52.327147232379204], [-2.0842493960645525, 52.32711464799829], [-2.084248598709863, 52.32711356345325], [-2.08424764204307, 52.32711281165667], [-2.084246449404883, 52.327112200277746], [-2.0842201666023583, 52.327101413760154], [-2.0842196545122653, 52.32707060563], [-2.084219470742959, 52.3270696510008], [-2.0842189613200754, 52.327068742456696], [-2.0842181483202076, 52.32706792133724], [-2.08421676302012, 52.327067074550044], [-2.0841763756414116, 52.32704823750096], [-2.0841615263003055, 52.327016640387164], [-2.0841606850149854, 52.32701560262112], [-2.0841597181541602, 52.327014889489995], [-2.084158531463826, 52.327014313168156], [-2.084157177796332, 52.32701389878595], [-2.084154581546965, 52.327013609361856], [-2.084132539507496, 52.32701367994676], [-2.084130361354618, 52.32701411393097], [-2.08412878670849, 52.32701477673668], [-2.0841273434674257, 52.32701586557945], [-2.0841266103894127, 52.32701694672586], [-2.084126367109569, 52.3270178719909], [-2.084126442258205, 52.32701880781422], [-2.084140233196144, 52.3270733100062], [-2.0841240471183022, 52.327084886557316], [-2.084062400624243, 52.32709434330577], [-2.084029517449473, 52.32707486524204], [-2.0840442540480204, 52.32699161631439], [-2.0840769745482195, 52.326972648821716], [-2.084123946017224, 52.326984711587905], [-2.0841258627087695, 52.32698489991239], [-2.0841281689828146, 52.32698471126798], [-2.0841299376401436, 52.32698422093833], [-2.084131434342053, 52.32698346289569], [-2.0841328784508018, 52.326982058492284], [-2.0841902019101206, 52.32689316564151], [-2.0842171799784484, 52.32688232305979], [-2.0842183483207544, 52.326881738757145], [-2.0842192992522213, 52.32688102155872], [-2.084236584198271, 52.32686479448383], [-2.084268542079485, 52.3268645990124], [-2.0843006584958563, 52.326901376492245], [-2.0842447631982832, 52.326976538552195], [-2.0842441162086836, 52.32697812847934], [-2.0842444421178556, 52.32697975547354], [-2.084245468707745, 52.32698101426552], [-2.0842470788081986, 52.326982017319075], [-2.0842716931230574, 52.32699199320938], [-2.084272340425219, 52.327022896539866], [-2.0842728467346148, 52.32702448024909], [-2.0842737554723763, 52.327025492793645], [-2.0842753552575912, 52.32702647158201], [-2.0843014363439383, 52.32703690761393], [-2.0843455324288893, 52.327113811427274], [-2.0843461664196687, 52.327114636275006], [-2.084347318507564, 52.32711553087184], [-2.084348798887943, 52.327116218461214], [-2.0844029724171667, 52.327135288311645], [-2.084386492865598, 52.327156833431474], [-2.0842652847808933, 52.327147232379204]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7eb80654c2d5a7b924e465ab2b51b9c8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5da96e93411d1b8a0dce4188f6565dbf = $(`&lt;div id=&quot;html_5da96e93411d1b8a0dce4188f6565dbf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 132&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 322.0 sqm&lt;br&gt;Intersecting area: 321.8 sqm&lt;/div&gt;`)[0];\n",
" popup_7eb80654c2d5a7b924e465ab2b51b9c8.setContent(html_5da96e93411d1b8a0dce4188f6565dbf);\n",
" \n",
" \n",
"\n",
" geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1.bindPopup(popup_7eb80654c2d5a7b924e465ab2b51b9c8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3e2e37a1a9536ab393b1f6fc66e4d0f1.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_5259fc8505d29e826fc558069f1bdf02_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5259fc8505d29e826fc558069f1bdf02_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5259fc8505d29e826fc558069f1bdf02 = L.geoJson(null, {\n",
" onEachFeature: geo_json_5259fc8505d29e826fc558069f1bdf02_onEachFeature,\n",
" \n",
" style: geo_json_5259fc8505d29e826fc558069f1bdf02_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5259fc8505d29e826fc558069f1bdf02_add (data) {\n",
" geo_json_5259fc8505d29e826fc558069f1bdf02\n",
" .addData(data);\n",
" }\n",
" geo_json_5259fc8505d29e826fc558069f1bdf02_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08485251621908, 52.3271471865723], [-2.084836085730002, 52.32713606854826], [-2.084836815414891, 52.32703687291451], [-2.084914173502517, 52.32703490405505], [-2.0849327224209797, 52.32705575602285], [-2.084931918850846, 52.32713700009064], [-2.08485251621908, 52.3271471865723]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5259fc8505d29e826fc558069f1bdf02.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f6ecb2bfe27a507500ae5bcd0819be6c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_53266ee2f66539c4ce9d9e0b4db66b65 = $(`&lt;div id=&quot;html_53266ee2f66539c4ce9d9e0b4db66b65&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 133&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 76.0 sqm&lt;br&gt;Intersecting area: 75.9 sqm&lt;/div&gt;`)[0];\n",
" popup_f6ecb2bfe27a507500ae5bcd0819be6c.setContent(html_53266ee2f66539c4ce9d9e0b4db66b65);\n",
" \n",
" \n",
"\n",
" geo_json_5259fc8505d29e826fc558069f1bdf02.bindPopup(popup_f6ecb2bfe27a507500ae5bcd0819be6c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5259fc8505d29e826fc558069f1bdf02.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_de3b1e100e0919e26f00d77a07489951_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_de3b1e100e0919e26f00d77a07489951_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_de3b1e100e0919e26f00d77a07489951 = L.geoJson(null, {\n",
" onEachFeature: geo_json_de3b1e100e0919e26f00d77a07489951_onEachFeature,\n",
" \n",
" style: geo_json_de3b1e100e0919e26f00d77a07489951_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_de3b1e100e0919e26f00d77a07489951_add (data) {\n",
" geo_json_de3b1e100e0919e26f00d77a07489951\n",
" .addData(data);\n",
" }\n",
" geo_json_de3b1e100e0919e26f00d77a07489951_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0841880567650843, 52.32748964498532], [-2.0841865811717715, 52.327490708679385], [-2.084185808445831, 52.32749177277128], [-2.0841855284561777, 52.327492689073075], [-2.0841855639857454, 52.32749362223245], [-2.0841958383472954, 52.327542953070555], [-2.084132189573759, 52.327535340706994], [-2.084129878411468, 52.327535292013046], [-2.0841280110553484, 52.327535590919176], [-2.084126334994164, 52.3275361773797], [-2.0840944342352206, 52.3275527726844], [-2.084049962579076, 52.3275530885192], [-2.0840307634746496, 52.32754285249888], [-2.0840306561593125, 52.327486389664344], [-2.0840837104147107, 52.32747151078601], [-2.084085267456479, 52.32747084260492], [-2.0840864924616547, 52.327469952597326], [-2.084087301899723, 52.327468898369645], [-2.0840876529047, 52.327467519924056], [-2.0840871685727578, 52.32746592091154], [-2.084085788102048, 52.327464532016144], [-2.084084025612814, 52.32746364773807], [-2.084081530077158, 52.32746309302542], [-2.084047454960764, 52.327462818874146], [-2.0840303864833234, 52.32744409638846], [-2.084029780068161, 52.327406053018265], [-2.0840559926870044, 52.32738679799639], [-2.084057061495131, 52.32738556287981], [-2.0840574579970315, 52.32738418619802], [-2.084057026477587, 52.327382579058394], [-2.084055928047809, 52.32738135357785], [-2.084015345151872, 52.32735240354623], [-2.0840329163435967, 52.327332241287976], [-2.0841121548045063, 52.327331900635635], [-2.0841136556986783, 52.32733179887403], [-2.0841160888297803, 52.32733118040741], [-2.084118007474181, 52.3273300741422], [-2.084134969330313, 52.327314361552936], [-2.0841679330659164, 52.32731592207207], [-2.0841414840762673, 52.3273558772118], [-2.084141044218541, 52.32735683138207], [-2.0841410595284864, 52.32741730301494], [-2.0841413082420766, 52.32741845987322], [-2.0841420351577624, 52.32741953817614], [-2.0841434664226695, 52.32742062766612], [-2.084145375417346, 52.32742139406578], [-2.0841475756711136, 52.32742176468743], [-2.084196718831162, 52.32742202534263], [-2.084229119227128, 52.327442858527064], [-2.0842284250214917, 52.32747050566831], [-2.0841880567650843, 52.32748964498532]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_de3b1e100e0919e26f00d77a07489951.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_560b488145cf70946d6ac5258558392b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b2f099949c91cded070865da8816daa6 = $(`&lt;div id=&quot;html_b2f099949c91cded070865da8816daa6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 134&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 234.0 sqm&lt;br&gt;Intersecting area: 234.1 sqm&lt;/div&gt;`)[0];\n",
" popup_560b488145cf70946d6ac5258558392b.setContent(html_b2f099949c91cded070865da8816daa6);\n",
" \n",
" \n",
"\n",
" geo_json_de3b1e100e0919e26f00d77a07489951.bindPopup(popup_560b488145cf70946d6ac5258558392b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_de3b1e100e0919e26f00d77a07489951.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_184dbb5e93d4d50a3cbf6288c63f4c58_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_184dbb5e93d4d50a3cbf6288c63f4c58_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_184dbb5e93d4d50a3cbf6288c63f4c58 = L.geoJson(null, {\n",
" onEachFeature: geo_json_184dbb5e93d4d50a3cbf6288c63f4c58_onEachFeature,\n",
" \n",
" style: geo_json_184dbb5e93d4d50a3cbf6288c63f4c58_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_184dbb5e93d4d50a3cbf6288c63f4c58_add (data) {\n",
" geo_json_184dbb5e93d4d50a3cbf6288c63f4c58\n",
" .addData(data);\n",
" }\n",
" geo_json_184dbb5e93d4d50a3cbf6288c63f4c58_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0883993334432733, 52.32538810151373], [-2.088397810459065, 52.32538812243194], [-2.088396327471758, 52.32538833481415], [-2.0883946264763185, 52.325388856622624], [-2.088393459729983, 52.325389457144155], [-2.088392150266552, 52.325390598984555], [-2.0883915391539567, 52.32539170343822], [-2.0883773031406516, 52.32543548738976], [-2.08834791823171, 52.325453940238866], [-2.0882841454931653, 52.32545511542396], [-2.0882518974784547, 52.32544395937642], [-2.088251684656814, 52.32538951939652], [-2.0883291935370516, 52.32536024496019], [-2.0883738634888784, 52.32537583282075], [-2.08837566900531, 52.32537621804663], [-2.0883775766249064, 52.325376303818715], [-2.0883794543009553, 52.325376085747735], [-2.08838117732519, 52.32537557650918], [-2.0883823646343784, 52.3253749831614], [-2.088383322762774, 52.325374251541426], [-2.088384013644196, 52.32537341403504], [-2.0883844065258113, 52.32537250752803], [-2.0883986312000045, 52.32531646005567], [-2.088471432169417, 52.325271439129935], [-2.0885382498234706, 52.325280825038696], [-2.0885659929405795, 52.325364342891106], [-2.0884477628614055, 52.32539208467391], [-2.0883993334432733, 52.32538810151373]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_184dbb5e93d4d50a3cbf6288c63f4c58.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4811af216b38fcd242b8a55a06988439 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d4dc1f486bec966f4957c1bd659dcffc = $(`&lt;div id=&quot;html_d4dc1f486bec966f4957c1bd659dcffc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 135&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 197.0 sqm&lt;br&gt;Intersecting area: 197.2 sqm&lt;/div&gt;`)[0];\n",
" popup_4811af216b38fcd242b8a55a06988439.setContent(html_d4dc1f486bec966f4957c1bd659dcffc);\n",
" \n",
" \n",
"\n",
" geo_json_184dbb5e93d4d50a3cbf6288c63f4c58.bindPopup(popup_4811af216b38fcd242b8a55a06988439)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_184dbb5e93d4d50a3cbf6288c63f4c58.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_75cf18eb497c1cbca965093b6a17591f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_75cf18eb497c1cbca965093b6a17591f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_75cf18eb497c1cbca965093b6a17591f = L.geoJson(null, {\n",
" onEachFeature: geo_json_75cf18eb497c1cbca965093b6a17591f_onEachFeature,\n",
" \n",
" style: geo_json_75cf18eb497c1cbca965093b6a17591f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_75cf18eb497c1cbca965093b6a17591f_add (data) {\n",
" geo_json_75cf18eb497c1cbca965093b6a17591f\n",
" .addData(data);\n",
" }\n",
" geo_json_75cf18eb497c1cbca965093b6a17591f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085248136757049, 52.32651799181536], [-2.085129188887787, 52.32647204894419], [-2.085128543266519, 52.32644308749702], [-2.0851566833780213, 52.326422567711255], [-2.0851770633186097, 52.32640531877161], [-2.08526507472872, 52.32641417066936], [-2.0852948734813004, 52.326460929573784], [-2.085295649785607, 52.32646174352342], [-2.0852969808020076, 52.32646259123333], [-2.0852982774162596, 52.32646309824], [-2.085299717478952, 52.326463428935675], [-2.0853020082126905, 52.326463564824856], [-2.0853042555324173, 52.32646325843155], [-2.0853062364855144, 52.3264625404783], [-2.085307757506468, 52.32646148213001], [-2.085321925369299, 52.326441471380065], [-2.085382362944482, 52.32644105448948], [-2.085415008150942, 52.32646033187216], [-2.085415334341685, 52.326480313243756], [-2.0853542573936035, 52.32650907759967], [-2.085248136757049, 52.32651799181536]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_75cf18eb497c1cbca965093b6a17591f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7171121d8c372c11be50bb01a18dc163 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2ca303631e98131569e41e0c7967d5cc = $(`&lt;div id=&quot;html_2ca303631e98131569e41e0c7967d5cc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 136&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 154.0 sqm&lt;br&gt;Intersecting area: 153.7 sqm&lt;/div&gt;`)[0];\n",
" popup_7171121d8c372c11be50bb01a18dc163.setContent(html_2ca303631e98131569e41e0c7967d5cc);\n",
" \n",
" \n",
"\n",
" geo_json_75cf18eb497c1cbca965093b6a17591f.bindPopup(popup_7171121d8c372c11be50bb01a18dc163)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_75cf18eb497c1cbca965093b6a17591f.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a47179b2dcde5fff4f39212c50f209e2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a47179b2dcde5fff4f39212c50f209e2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a47179b2dcde5fff4f39212c50f209e2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a47179b2dcde5fff4f39212c50f209e2_onEachFeature,\n",
" \n",
" style: geo_json_a47179b2dcde5fff4f39212c50f209e2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a47179b2dcde5fff4f39212c50f209e2_add (data) {\n",
" geo_json_a47179b2dcde5fff4f39212c50f209e2\n",
" .addData(data);\n",
" }\n",
" geo_json_a47179b2dcde5fff4f39212c50f209e2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0871784764185333, 52.32717435011656], [-2.087177965549704, 52.327175717003776], [-2.0871770824617695, 52.32720784681489], [-2.087136913383899, 52.3272267739236], [-2.0871355343014173, 52.327227625417976], [-2.08713472742357, 52.32722844861589], [-2.0871342244529765, 52.32722935789632], [-2.08713404878413, 52.32723031278686], [-2.0871337698173935, 52.32726149548346], [-2.087060634707307, 52.32736943728468], [-2.0869735952385793, 52.32746197921555], [-2.0869730994250313, 52.32746354567397], [-2.0869723938300315, 52.32749572389528], [-2.086885939654145, 52.32756076522457], [-2.0868851116704312, 52.32756205503084], [-2.0868699389314966, 52.327603675533005], [-2.086813957801767, 52.3276408274275], [-2.0868125532808106, 52.327642181485196], [-2.0868120149100475, 52.327643750670674], [-2.0868109570750493, 52.32766698211176], [-2.0867407888363183, 52.32771277770878], [-2.0867398600139544, 52.3277135290731], [-2.0867390903035576, 52.32771460666591], [-2.086738802048203, 52.32771577020723], [-2.0867380959564525, 52.327738806302], [-2.0865775009621403, 52.32791821677761], [-2.0865360834128377, 52.32793773166092], [-2.086535006129528, 52.32793835457411], [-2.0865341550448195, 52.32793909689012], [-2.086533565330005, 52.327939928913835], [-2.08647469322348, 52.32805307417553], [-2.0864518596918917, 52.328054605783585], [-2.0864496285662066, 52.32805497961472], [-2.08644742057243, 52.32805592610161], [-2.0864460816615513, 52.32805708142798], [-2.086445546343281, 52.32805797004927], [-2.086444515101791, 52.3280611299633], [-2.0863225996059303, 52.32806121937348], [-2.0863207135608093, 52.32804217952654], [-2.086375172193868, 52.32802290418459], [-2.0863769606395732, 52.32802201554063], [-2.0863782114459513, 52.32802083151483], [-2.0863787521648263, 52.32801970195129], [-2.086393613646652, 52.32796116129585], [-2.0864490318867226, 52.32793292559209], [-2.0864500768346916, 52.32793227213813], [-2.0864508838435105, 52.32793150288642], [-2.0864515097733327, 52.3279304263013], [-2.086451676740191, 52.327929517266206], [-2.0864522099756138, 52.327898299330386], [-2.0865076307975587, 52.327869940431164], [-2.086508719686682, 52.327869249185774], [-2.0865095442130133, 52.32786843316834], [-2.086510067753528, 52.32786752747223], [-2.0865102639846733, 52.32786657436382], [-2.0865109618977282, 52.32784379539843], [-2.086597760064011, 52.327760534569016], [-2.0866277798134343, 52.32769123316446], [-2.0866987655659615, 52.32764475018366], [-2.0867000589273204, 52.327643576012846], [-2.086700691617388, 52.32764221263481], [-2.086715644808803, 52.327565619559216], [-2.086785486887281, 52.327545890386396], [-2.0867871202671493, 52.32754525717139], [-2.0867884274244237, 52.32754438415836], [-2.0868240225331274, 52.32750940854929], [-2.0868247908797875, 52.327508387594854], [-2.086833949472053, 52.32745654608358], [-2.086931790547546, 52.32742010857972], [-2.0869330102548562, 52.3274195394993], [-2.0869340110447787, 52.32741882763513], [-2.086934747499927, 52.327418004490596], [-2.0869351888682925, 52.327417105146296], [-2.086964385355531, 52.327322780052306], [-2.0869908657174503, 52.327312001932654], [-2.086992297795691, 52.3273112376084], [-2.0869933626533763, 52.327310273972074], [-2.0870527325195845, 52.3272141231362], [-2.087122560456957, 52.327186082334265], [-2.087124467267051, 52.32718496973581], [-2.0871255022412654, 52.32718373911339], [-2.087154138698421, 52.32713088794991], [-2.08717169802188, 52.327114403121506], [-2.0872039928315256, 52.32711458688973], [-2.087206978471313, 52.327153081592996], [-2.0871796508478355, 52.32717314635906], [-2.0871784764185333, 52.32717435011656]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a47179b2dcde5fff4f39212c50f209e2.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ab696be37fb04af1339e980b9f1c2d01 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c7dd6bd86b0aff50e7b5677dbd515fb0 = $(`&lt;div id=&quot;html_c7dd6bd86b0aff50e7b5677dbd515fb0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 137&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 848.0 sqm&lt;br&gt;Intersecting area: 847.8 sqm&lt;/div&gt;`)[0];\n",
" popup_ab696be37fb04af1339e980b9f1c2d01.setContent(html_c7dd6bd86b0aff50e7b5677dbd515fb0);\n",
" \n",
" \n",
"\n",
" geo_json_a47179b2dcde5fff4f39212c50f209e2.bindPopup(popup_ab696be37fb04af1339e980b9f1c2d01)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a47179b2dcde5fff4f39212c50f209e2.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_79c99bba770726b036bf69207ba7426a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_79c99bba770726b036bf69207ba7426a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_79c99bba770726b036bf69207ba7426a = L.geoJson(null, {\n",
" onEachFeature: geo_json_79c99bba770726b036bf69207ba7426a_onEachFeature,\n",
" \n",
" style: geo_json_79c99bba770726b036bf69207ba7426a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_79c99bba770726b036bf69207ba7426a_add (data) {\n",
" geo_json_79c99bba770726b036bf69207ba7426a\n",
" .addData(data);\n",
" }\n",
" geo_json_79c99bba770726b036bf69207ba7426a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0802575505095215, 52.321901816629854], [-2.0802548818160416, 52.321901852615014], [-2.0802527391992656, 52.32190234853487], [-2.0802507003048007, 52.32190340357516], [-2.0802494132707574, 52.32190483569418], [-2.08024337194204, 52.321926898170375], [-2.080243577423628, 52.32192855762056], [-2.080244752402988, 52.32193005818624], [-2.080246739529888, 52.321931193193564], [-2.080249262694542, 52.32193180819924], [-2.0802854161634845, 52.3219349103498], [-2.0802668326516267, 52.32196373751571], [-2.080235563497875, 52.32196315108614], [-2.0801769972981132, 52.321927470207925], [-2.080175269840847, 52.32189881511495], [-2.0802305992917733, 52.32188670268869], [-2.0802322914249256, 52.32188617201394], [-2.0802339446363645, 52.32188521163346], [-2.0802655645851114, 52.32186004538557], [-2.080298493767326, 52.32186023420474], [-2.0803144317993345, 52.3218999887986], [-2.080296604283324, 52.32190963216026], [-2.0802575505095215, 52.321901816629854]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_79c99bba770726b036bf69207ba7426a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_221ff795920006f126edc2b4759831bb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ddc0e722affcec49857b17bbd4c0eec8 = $(`&lt;div id=&quot;html_ddc0e722affcec49857b17bbd4c0eec8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 138&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 57.0 sqm&lt;br&gt;Intersecting area: 57.3 sqm&lt;/div&gt;`)[0];\n",
" popup_221ff795920006f126edc2b4759831bb.setContent(html_ddc0e722affcec49857b17bbd4c0eec8);\n",
" \n",
" \n",
"\n",
" geo_json_79c99bba770726b036bf69207ba7426a.bindPopup(popup_221ff795920006f126edc2b4759831bb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_79c99bba770726b036bf69207ba7426a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_8069dc0497f0afeb0f28e4e66f847ab0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8069dc0497f0afeb0f28e4e66f847ab0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8069dc0497f0afeb0f28e4e66f847ab0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8069dc0497f0afeb0f28e4e66f847ab0_onEachFeature,\n",
" \n",
" style: geo_json_8069dc0497f0afeb0f28e4e66f847ab0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8069dc0497f0afeb0f28e4e66f847ab0_add (data) {\n",
" geo_json_8069dc0497f0afeb0f28e4e66f847ab0\n",
" .addData(data);\n",
" }\n",
" geo_json_8069dc0497f0afeb0f28e4e66f847ab0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0807573850727024, 52.32196400086063], [-2.0807559653844447, 52.321965089646994], [-2.0807243470130077, 52.321999043946754], [-2.0806453216396643, 52.32200723782068], [-2.0806156287132596, 52.32198843806326], [-2.0806008335684925, 52.321916642547166], [-2.0806558475860277, 52.321895737722805], [-2.080657055476353, 52.321895165118036], [-2.0806582495486605, 52.32189425449075], [-2.0806590193223924, 52.321893185930286], [-2.080659315049352, 52.32189203228308], [-2.0806609734881767, 52.32185212274254], [-2.0807190877578803, 52.321858613697565], [-2.080737150246118, 52.32186375144704], [-2.0807160179790025, 52.32189619185428], [-2.080715837766264, 52.32189713235252], [-2.0807159818062684, 52.32189807532493], [-2.080716445609112, 52.32189897942352], [-2.080717442190507, 52.32189999193608], [-2.0807188360193654, 52.32190081088597], [-2.0807201719961603, 52.32190128735088], [-2.08072164262647, 52.321901581218924], [-2.080723178922975, 52.32190168085991], [-2.080724716315603, 52.32190158001211], [-2.0807261858692097, 52.32190128412859], [-2.0807804814431714, 52.321886298883975], [-2.0808261125585266, 52.321894115120045], [-2.080828381081108, 52.32189427718392], [-2.0808302601453255, 52.32189407900711], [-2.0808323115635172, 52.321893460873795], [-2.080833714189843, 52.32189266967075], [-2.0808347364610387, 52.321891683642235], [-2.0808348086813284, 52.321891529642926], [-2.0809133833616893, 52.321913879526555], [-2.080758939041728, 52.32196333362077], [-2.0807573850727024, 52.32196400086063]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8069dc0497f0afeb0f28e4e66f847ab0.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1b15dafc890c8bf42923d2509829e4ae = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2005b8de1424cc99d350aab80a8cd654 = $(`&lt;div id=&quot;html_2005b8de1424cc99d350aab80a8cd654&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 139&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 232.0 sqm&lt;br&gt;Intersecting area: 180.4 sqm&lt;/div&gt;`)[0];\n",
" popup_1b15dafc890c8bf42923d2509829e4ae.setContent(html_2005b8de1424cc99d350aab80a8cd654);\n",
" \n",
" \n",
"\n",
" geo_json_8069dc0497f0afeb0f28e4e66f847ab0.bindPopup(popup_1b15dafc890c8bf42923d2509829e4ae)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8069dc0497f0afeb0f28e4e66f847ab0.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_91a859a8ccc16707b5b5126dbf4d27ea_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_91a859a8ccc16707b5b5126dbf4d27ea_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_91a859a8ccc16707b5b5126dbf4d27ea = L.geoJson(null, {\n",
" onEachFeature: geo_json_91a859a8ccc16707b5b5126dbf4d27ea_onEachFeature,\n",
" \n",
" style: geo_json_91a859a8ccc16707b5b5126dbf4d27ea_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_91a859a8ccc16707b5b5126dbf4d27ea_add (data) {\n",
" geo_json_91a859a8ccc16707b5b5126dbf4d27ea\n",
" .addData(data);\n",
" }\n",
" geo_json_91a859a8ccc16707b5b5126dbf4d27ea_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083127854501453, 52.32430826689127], [-2.08312561301535, 52.32430850761164], [-2.0831235997222906, 52.32430915812338], [-2.083122238187048, 52.32430996910384], [-2.0831034908169213, 52.32432610625488], [-2.0829950986134462, 52.32431747388636], [-2.082993151599969, 52.32431747885512], [-2.0829916378444455, 52.32431770917031], [-2.0829125751922177, 52.32433538834473], [-2.0827171448486927, 52.324326662334755], [-2.082715595603104, 52.32432674523335], [-2.082714108344124, 52.32432702587126], [-2.082712750557399, 52.32432749251943], [-2.0827115852900677, 52.324328124449465], [-2.082691968000458, 52.32434442666721], [-2.0825857988260266, 52.324335865183166], [-2.0825830992769845, 52.32433595517978], [-2.082580635597811, 52.324336638363896], [-2.08257896773003, 52.32433762845644], [-2.0825367393473786, 52.32437230987761], [-2.0825361629529877, 52.3243732200906], [-2.082535919728239, 52.32437418490758], [-2.082534262148283, 52.32439719378768], [-2.0824820501131347, 52.32439859687719], [-2.082480207628661, 52.324398793254055], [-2.082478505052027, 52.3243992682303], [-2.0824768017876147, 52.324400162149054], [-2.0824169579700182, 52.32444292816671], [-2.0823349039375345, 52.32444368859427], [-2.0823329924440763, 52.32444386164513], [-2.082330895408569, 52.32444446365321], [-2.082268195897251, 52.32447053859066], [-2.08220569068799, 52.324462270800126], [-2.082203793371778, 52.32446217503142], [-2.082201918613686, 52.32446238131625], [-2.082200521031963, 52.32446275538582], [-2.082199279287849, 52.32446329926061], [-2.082197641301311, 52.32446458240241], [-2.0821796872501777, 52.3244885816837], [-2.0821482567397545, 52.324488199052745], [-2.08213210487635, 52.32447294406195], [-2.08213011756726, 52.3244717982969], [-2.0821275854189576, 52.32447117704476], [-2.0821248577985996, 52.32447116546046], [-2.0820480899799803, 52.324479726394905], [-2.082029290162831, 52.324469424138755], [-2.0820292517915733, 52.32444874221507], [-2.0821025571351064, 52.32438580199451], [-2.0821989700882786, 52.32439326762784], [-2.082201704827395, 52.32439316322875], [-2.0822041860718348, 52.324392451271144], [-2.082231520467247, 52.32437573829074], [-2.0822326175939327, 52.3243747504021], [-2.082233317865081, 52.32437338519959], [-2.082233281451159, 52.32437195308776], [-2.0822214113824873, 52.32433086807361], [-2.082266176609378, 52.32431262986216], [-2.082361333533906, 52.32430358484339], [-2.082362832595818, 52.32430334105581], [-2.0823642153910122, 52.32430290856043], [-2.0823661705492484, 52.32430176274268], [-2.082426482047931, 52.3242502183933], [-2.082523840058019, 52.32426733048314], [-2.0826405877516674, 52.324267219847194], [-2.082642805372482, 52.32426676877939], [-2.0826449426727787, 52.32426573610519], [-2.082706409401152, 52.32422251392638], [-2.0827534115891906, 52.32422295289599], [-2.08276899036157, 52.32424551543815], [-2.082770378958893, 52.32424661576104], [-2.082772249689709, 52.3242474037859], [-2.0827744248795708, 52.324247803220025], [-2.0827766946367077, 52.324247775551996], [-2.08277815259024, 52.32424752010633], [-2.0827794942956226, 52.324247086734744], [-2.0828191862739898, 52.32423082252777], [-2.0828682564753724, 52.32420500232336], [-2.0828873288126966, 52.32422053744858], [-2.082889025177257, 52.32422144966039], [-2.0828907324861765, 52.32422193752523], [-2.082892961616615, 52.324222149922065], [-2.0830155738730274, 52.32422211749825], [-2.083048974745336, 52.3242389280959], [-2.0830506588540154, 52.324239563417095], [-2.0830529528298083, 52.32423992949628], [-2.083263126152167, 52.32423101474923], [-2.083269189773299, 52.32426037694611], [-2.0831944451128943, 52.3243075303196], [-2.083127854501453, 52.32430826689127]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_91a859a8ccc16707b5b5126dbf4d27ea.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_998b75f99282caf842e820a49f3e1844 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_42854642e4466bb017255265fc37319e = $(`&lt;div id=&quot;html_42854642e4466bb017255265fc37319e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 140&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 958.0 sqm&lt;br&gt;Intersecting area: 958.0 sqm&lt;/div&gt;`)[0];\n",
" popup_998b75f99282caf842e820a49f3e1844.setContent(html_42854642e4466bb017255265fc37319e);\n",
" \n",
" \n",
"\n",
" geo_json_91a859a8ccc16707b5b5126dbf4d27ea.bindPopup(popup_998b75f99282caf842e820a49f3e1844)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_91a859a8ccc16707b5b5126dbf4d27ea.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_f967b7be87f7c97493ca97299dae8852_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f967b7be87f7c97493ca97299dae8852_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f967b7be87f7c97493ca97299dae8852 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f967b7be87f7c97493ca97299dae8852_onEachFeature,\n",
" \n",
" style: geo_json_f967b7be87f7c97493ca97299dae8852_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f967b7be87f7c97493ca97299dae8852_add (data) {\n",
" geo_json_f967b7be87f7c97493ca97299dae8852\n",
" .addData(data);\n",
" }\n",
" geo_json_f967b7be87f7c97493ca97299dae8852_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.080533701035414, 52.322080260708006], [-2.080367839616533, 52.32211489999776], [-2.0803393753718225, 52.32204072418326], [-2.0804150080110757, 52.32203936538224], [-2.080443417891411, 52.32205375277595], [-2.0804451251390894, 52.322054267649264], [-2.0804466102775327, 52.32205447430746], [-2.0804481346910797, 52.32205448854866], [-2.080449629399501, 52.322054310420086], [-2.080451032814765, 52.322053946261136], [-2.080452564738074, 52.32205325476389], [-2.080453754420011, 52.322052345041946], [-2.0804545242063166, 52.322051279179284], [-2.0804561522618963, 52.322039719361456], [-2.0805405571923496, 52.322002996025375], [-2.080575587725447, 52.32199447721846], [-2.080593842758721, 52.32200448070972], [-2.0805786608753656, 52.32205294468995], [-2.080533701035414, 52.322080260708006]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f967b7be87f7c97493ca97299dae8852.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_02cdf665f5ca01e2f26e00bba58e6e8c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6dc7f5f266d45fe3d6df46e125544ae4 = $(`&lt;div id=&quot;html_6dc7f5f266d45fe3d6df46e125544ae4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 141&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 114.0 sqm&lt;br&gt;Intersecting area: 114.2 sqm&lt;/div&gt;`)[0];\n",
" popup_02cdf665f5ca01e2f26e00bba58e6e8c.setContent(html_6dc7f5f266d45fe3d6df46e125544ae4);\n",
" \n",
" \n",
"\n",
" geo_json_f967b7be87f7c97493ca97299dae8852.bindPopup(popup_02cdf665f5ca01e2f26e00bba58e6e8c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f967b7be87f7c97493ca97299dae8852.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff = L.geoJson(null, {\n",
" onEachFeature: geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff_onEachFeature,\n",
" \n",
" style: geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff_add (data) {\n",
" geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff\n",
" .addData(data);\n",
" }\n",
" geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.0797972856275386, 52.322395169180545], [-2.079766001364087, 52.32236197787435], [-2.079765106498813, 52.32236122330261], [-2.0797639785850666, 52.32236059834769], [-2.0797619541956647, 52.32235995872164], [-2.0797597060836543, 52.32235973189184], [-2.0797094197856945, 52.32235948724511], [-2.079679723207741, 52.322341829010384], [-2.079718315612554, 52.32230191516388], [-2.0797191671215636, 52.32230059392952], [-2.0797193039449917, 52.32229917518132], [-2.0797189868260793, 52.32229824581138], [-2.0797183587820975, 52.32229737778262], [-2.0797171804148005, 52.32229643820571], [-2.079715971864973, 52.32229584297429], [-2.0796632408178293, 52.32227739840074], [-2.0796622331145516, 52.32223681641308], [-2.0796618535974285, 52.32223545465657], [-2.0796608155665774, 52.32223422819308], [-2.0796331993275308, 52.322217267078834], [-2.079631973150515, 52.32221666376916], [-2.0796305639001345, 52.32221623408972], [-2.0796282540761126, 52.322215956058315], [-2.0795751832760767, 52.32221490322194], [-2.0795152918218567, 52.32216338666944], [-2.079513463695267, 52.322162551815765], [-2.0795109290298344, 52.32216206715706], [-2.0794868554079042, 52.32216104414193], [-2.079336024541822, 52.322062992136644], [-2.0793822417248196, 52.32203697602483], [-2.079597607875115, 52.32218253862322], [-2.0795996104907077, 52.32218331491915], [-2.079601913093847, 52.3221836594881], [-2.0796395997075923, 52.32218420308202], [-2.0796982699422215, 52.32221986437934], [-2.0797001423617525, 52.32223387254331], [-2.079700926772991, 52.322235210649396], [-2.0797026471288973, 52.322236489692024], [-2.079704640861912, 52.322237218348], [-2.0797069067254506, 52.32223752787324], [-2.079756069034709, 52.32223777328233], [-2.079786308983643, 52.32225574308922], [-2.0797879345285963, 52.3222857809482], [-2.0797629159087574, 52.322296107861334], [-2.0797617990731494, 52.322296744222335], [-2.079760921617571, 52.32229750718796], [-2.0797603201599233, 52.32229836615954], [-2.079760019576609, 52.32229928156535], [-2.0797600359323116, 52.3223002156358], [-2.079760367691908, 52.32230112791684], [-2.0797730183544365, 52.322324297883284], [-2.079773850666534, 52.32232534647749], [-2.0797748188329708, 52.32232606863369], [-2.0797770153746953, 52.32232698504418], [-2.079778466920175, 52.32232727084755], [-2.0797799826825414, 52.32232736691373], [-2.079803712668267, 52.322327344540646], [-2.0798059349098708, 52.322327057148016], [-2.0798079070081235, 52.32232636626108], [-2.0798089886020716, 52.322325712840396], [-2.0798099933073195, 52.32232472863325], [-2.079827788194843, 52.3223009275985], [-2.0798750085401085, 52.32231038293455], [-2.079890949142329, 52.32236629207173], [-2.0798465931958807, 52.322394508236655], [-2.0797972856275386, 52.322395169180545]]], [[[-2.079346825335795, 52.322095981202786], [-2.0793328858167093, 52.32213359301315], [-2.0792916363343537, 52.322153143017836], [-2.0792901005172975, 52.322154132975434], [-2.079289121185745, 52.322155359000156], [-2.0792724468771833, 52.322188104449474], [-2.079223810617092, 52.32217926834645], [-2.079222605529125, 52.32212683662016], [-2.0792956193009298, 52.32208573660856], [-2.079346825335795, 52.322095981202786]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d960bd9ce8a8f01741928001ca19d106 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6439ee2d3d1df6cb825ea70dffa204f1 = $(`&lt;div id=&quot;html_6439ee2d3d1df6cb825ea70dffa204f1&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 142&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 521.0 sqm&lt;br&gt;Intersecting area: 314.0 sqm&lt;/div&gt;`)[0];\n",
" popup_d960bd9ce8a8f01741928001ca19d106.setContent(html_6439ee2d3d1df6cb825ea70dffa204f1);\n",
" \n",
" \n",
"\n",
" geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff.bindPopup(popup_d960bd9ce8a8f01741928001ca19d106)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3ef5dbbf2490a8a8e07ba6ff25f0ebff.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ee9f98297989dd06d04e9234fcbc575d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ee9f98297989dd06d04e9234fcbc575d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ee9f98297989dd06d04e9234fcbc575d = L.geoJson(null, {\n",
" onEachFeature: geo_json_ee9f98297989dd06d04e9234fcbc575d_onEachFeature,\n",
" \n",
" style: geo_json_ee9f98297989dd06d04e9234fcbc575d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ee9f98297989dd06d04e9234fcbc575d_add (data) {\n",
" geo_json_ee9f98297989dd06d04e9234fcbc575d\n",
" .addData(data);\n",
" }\n",
" geo_json_ee9f98297989dd06d04e9234fcbc575d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0802917799376512, 52.322152633416046], [-2.08028921471535, 52.322153101755774], [-2.0802873587931106, 52.32215393102006], [-2.0802861940881483, 52.32215486409525], [-2.0802550082383906, 52.3221881203336], [-2.0802040236300368, 52.32218861177171], [-2.080202072621799, 52.32218879290441], [-2.0801999390382484, 52.32218942097678], [-2.080198488029559, 52.32219024007409], [-2.0801527723229376, 52.32222408424633], [-2.0801031612338354, 52.322222310076704], [-2.080103466804684, 52.32220228419506], [-2.0801624705300523, 52.322165946999974], [-2.0803265895749496, 52.32211207465383], [-2.0803448555321484, 52.322141014236784], [-2.080311243284324, 52.32215259587104], [-2.0802917799376512, 52.322152633416046]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ee9f98297989dd06d04e9234fcbc575d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9aa7439094cd0c759b6835307eedf8de = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1792fc457ff241215f0bc31cdc829d26 = $(`&lt;div id=&quot;html_1792fc457ff241215f0bc31cdc829d26&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 143&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 70.0 sqm&lt;br&gt;Intersecting area: 70.1 sqm&lt;/div&gt;`)[0];\n",
" popup_9aa7439094cd0c759b6835307eedf8de.setContent(html_1792fc457ff241215f0bc31cdc829d26);\n",
" \n",
" \n",
"\n",
" geo_json_ee9f98297989dd06d04e9234fcbc575d.bindPopup(popup_9aa7439094cd0c759b6835307eedf8de)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ee9f98297989dd06d04e9234fcbc575d.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6_onEachFeature,\n",
" \n",
" style: geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6_add (data) {\n",
" geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6\n",
" .addData(data);\n",
" }\n",
" geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0789832496992204, 52.32589292505332], [-2.0789504246871906, 52.32586811794487], [-2.0789487473912938, 52.32586718948113], [-2.0789466892311146, 52.32586661818804], [-2.078944822545664, 52.3258664540182], [-2.0788350913017006, 52.3258655691813], [-2.078834802383308, 52.32584425721416], [-2.0788767722806893, 52.32584321411672], [-2.078878613153719, 52.325842895527366], [-2.0788802583850923, 52.32584229657984], [-2.0788815935816043, 52.32584145690132], [-2.0788825308221655, 52.32584043408468], [-2.078883002727505, 52.32583929740783], [-2.0788829786243674, 52.32583812510507], [-2.078876377060773, 52.32581003066786], [-2.078882309239233, 52.32579848777993], [-2.078957228206913, 52.325807982457754], [-2.0790165809022096, 52.32584464602005], [-2.079015696427045, 52.325883395253626], [-2.0789832496992204, 52.32589292505332]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_169e6bb622e497b35d824e3193ca8481 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3a59bb8fb0466cdbbdd954cae8ecaa72 = $(`&lt;div id=&quot;html_3a59bb8fb0466cdbbdd954cae8ecaa72&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 144&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 71.0 sqm&lt;br&gt;Intersecting area: 71.5 sqm&lt;/div&gt;`)[0];\n",
" popup_169e6bb622e497b35d824e3193ca8481.setContent(html_3a59bb8fb0466cdbbdd954cae8ecaa72);\n",
" \n",
" \n",
"\n",
" geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6.bindPopup(popup_169e6bb622e497b35d824e3193ca8481)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_eb9d8cbb430efbaf4eb0f05c518e52a6.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_c90c779db97d7b92bf541c792274d0ad_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c90c779db97d7b92bf541c792274d0ad_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c90c779db97d7b92bf541c792274d0ad = L.geoJson(null, {\n",
" onEachFeature: geo_json_c90c779db97d7b92bf541c792274d0ad_onEachFeature,\n",
" \n",
" style: geo_json_c90c779db97d7b92bf541c792274d0ad_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c90c779db97d7b92bf541c792274d0ad_add (data) {\n",
" geo_json_c90c779db97d7b92bf541c792274d0ad\n",
" .addData(data);\n",
" }\n",
" geo_json_c90c779db97d7b92bf541c792274d0ad_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0791706872400955, 52.32598478866318], [-2.0791685827044923, 52.32598372474214], [-2.079166759554408, 52.325983291739014], [-2.0791652084063017, 52.32598316871585], [-2.07909786247869, 52.325982259216566], [-2.079082768535832, 52.325971646538385], [-2.07909616883146, 52.325959077335696], [-2.079114645535367, 52.32594218043716], [-2.079162117055801, 52.32594233013297], [-2.0792650871422906, 52.32598735838556], [-2.0792661045900163, 52.326008157418194], [-2.0792162114056674, 52.32601833822518], [-2.0791706872400955, 52.32598478866318]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c90c779db97d7b92bf541c792274d0ad.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ec076394f320792574d9c21bfb8f22ad = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5821564e4fb25f9fce2b3eb1a1d53436 = $(`&lt;div id=&quot;html_5821564e4fb25f9fce2b3eb1a1d53436&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 145&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 52.0 sqm&lt;br&gt;Intersecting area: 52.1 sqm&lt;/div&gt;`)[0];\n",
" popup_ec076394f320792574d9c21bfb8f22ad.setContent(html_5821564e4fb25f9fce2b3eb1a1d53436);\n",
" \n",
" \n",
"\n",
" geo_json_c90c779db97d7b92bf541c792274d0ad.bindPopup(popup_ec076394f320792574d9c21bfb8f22ad)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c90c779db97d7b92bf541c792274d0ad.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_14aed429d677d62b4b1bdabd2a5ffadb_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_14aed429d677d62b4b1bdabd2a5ffadb_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_14aed429d677d62b4b1bdabd2a5ffadb = L.geoJson(null, {\n",
" onEachFeature: geo_json_14aed429d677d62b4b1bdabd2a5ffadb_onEachFeature,\n",
" \n",
" style: geo_json_14aed429d677d62b4b1bdabd2a5ffadb_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_14aed429d677d62b4b1bdabd2a5ffadb_add (data) {\n",
" geo_json_14aed429d677d62b4b1bdabd2a5ffadb\n",
" .addData(data);\n",
" }\n",
" geo_json_14aed429d677d62b4b1bdabd2a5ffadb_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0806686000607684, 52.32753747818071], [-2.0806663099500624, 52.32753770630131], [-2.0806645676908504, 52.32753822533009], [-2.08066310764168, 52.32753900488365], [-2.0805889732652316, 52.32759063597618], [-2.0805407267877136, 52.327591345942395], [-2.0803469124602154, 52.32753480865681], [-2.0803473076400585, 52.32750681022527], [-2.08039177078326, 52.327470357008266], [-2.08049102385919, 52.32746024087369], [-2.080542734661578, 52.327451513796525], [-2.080604471372339, 52.32747717182476], [-2.0806061450846047, 52.32747769031067], [-2.080607976768336, 52.32747793089143], [-2.080610581017261, 52.327477778074204], [-2.0806590320308613, 52.32746940829228], [-2.0806754175989957, 52.327479732195], [-2.080676692211033, 52.32748025724646], [-2.0806781176361273, 52.327480607788004], [-2.0806800152213905, 52.32748077820237], [-2.080681545504359, 52.32748069354308], [-2.080683012337219, 52.32748041564135], [-2.0806843526509398, 52.32747995622213], [-2.080685507781577, 52.32747933690559], [-2.080686427894738, 52.3274785828984], [-2.0807019531519786, 52.32746052354463], [-2.0807629470828477, 52.32746025607849], [-2.080838084431202, 52.327487919492725], [-2.080839445237276, 52.32751712050478], [-2.0808063318958063, 52.327537288455794], [-2.0806686000607684, 52.32753747818071]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_14aed429d677d62b4b1bdabd2a5ffadb.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b6705aa6a49d7964004d754b53276b60 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2791bd280beeec2be6536bc4896b6fda = $(`&lt;div id=&quot;html_2791bd280beeec2be6536bc4896b6fda&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 146&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 326.0 sqm&lt;br&gt;Intersecting area: 325.9 sqm&lt;/div&gt;`)[0];\n",
" popup_b6705aa6a49d7964004d754b53276b60.setContent(html_2791bd280beeec2be6536bc4896b6fda);\n",
" \n",
" \n",
"\n",
" geo_json_14aed429d677d62b4b1bdabd2a5ffadb.bindPopup(popup_b6705aa6a49d7964004d754b53276b60)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_14aed429d677d62b4b1bdabd2a5ffadb.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_4356d8d68b09c258344e109419412847_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4356d8d68b09c258344e109419412847_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4356d8d68b09c258344e109419412847 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4356d8d68b09c258344e109419412847_onEachFeature,\n",
" \n",
" style: geo_json_4356d8d68b09c258344e109419412847_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4356d8d68b09c258344e109419412847_add (data) {\n",
" geo_json_4356d8d68b09c258344e109419412847\n",
" .addData(data);\n",
" }\n",
" geo_json_4356d8d68b09c258344e109419412847_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0802408832953363, 52.32753216051564], [-2.080242713578557, 52.327532438865966], [-2.080280652942123, 52.3275339098758], [-2.0802819844127765, 52.327552009820046], [-2.080241070047401, 52.32755309583793], [-2.0802396120876363, 52.32753170724876], [-2.0802408832953363, 52.32753216051564]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4356d8d68b09c258344e109419412847.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8349bfafdbbd3f4f8ff96e3a239d454b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_36ddf8967ced796b379ddd0ef7a84bf7 = $(`&lt;div id=&quot;html_36ddf8967ced796b379ddd0ef7a84bf7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 147&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 714.0 sqm&lt;br&gt;Intersecting area: 6.0 sqm&lt;/div&gt;`)[0];\n",
" popup_8349bfafdbbd3f4f8ff96e3a239d454b.setContent(html_36ddf8967ced796b379ddd0ef7a84bf7);\n",
" \n",
" \n",
"\n",
" geo_json_4356d8d68b09c258344e109419412847.bindPopup(popup_8349bfafdbbd3f4f8ff96e3a239d454b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4356d8d68b09c258344e109419412847.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_679c22bb47f1c45aa9d4aee067d952aa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_679c22bb47f1c45aa9d4aee067d952aa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_679c22bb47f1c45aa9d4aee067d952aa = L.geoJson(null, {\n",
" onEachFeature: geo_json_679c22bb47f1c45aa9d4aee067d952aa_onEachFeature,\n",
" \n",
" style: geo_json_679c22bb47f1c45aa9d4aee067d952aa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_679c22bb47f1c45aa9d4aee067d952aa_add (data) {\n",
" geo_json_679c22bb47f1c45aa9d4aee067d952aa\n",
" .addData(data);\n",
" }\n",
" geo_json_679c22bb47f1c45aa9d4aee067d952aa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0817365749959826, 52.32803184790248], [-2.0817362450347976, 52.32803274445348], [-2.081736220321925, 52.328033664164565], [-2.0817365007895896, 52.32803456658502], [-2.0817538724207356, 52.32806447928634], [-2.0815762075376525, 52.328064602486464], [-2.0815659523711747, 52.32805120341449], [-2.081564857454833, 52.328050261098376], [-2.081563404864211, 52.328049520413686], [-2.081561693021425, 52.32804903253307], [-2.0815070157673086, 52.32803842689992], [-2.0814922704669767, 52.32801943183812], [-2.081521200736374, 52.3279166844776], [-2.081520995666408, 52.32791528934157], [-2.0815069576281133, 52.32788114980955], [-2.0815060635503935, 52.327880105768195], [-2.081504756003561, 52.32787923911592], [-2.081503127550171, 52.32787861093219], [-2.0815016655122784, 52.32787830987483], [-2.0814054195618397, 52.327868371255434], [-2.081388988952046, 52.32779071363787], [-2.081387957943952, 52.32778941166852], [-2.0813866166214527, 52.32778852616325], [-2.0813597197557714, 52.327776398998814], [-2.081361668892594, 52.32774796796328], [-2.081458164809539, 52.32771453595397], [-2.0814598945503535, 52.327713596179926], [-2.081461061773049, 52.32771237270912], [-2.0814615493166695, 52.3277109878796], [-2.081461198543825, 52.32770935190989], [-2.081460364589855, 52.32770828624651], [-2.0814593889171698, 52.32770755242398], [-2.0814578527541583, 52.327706837868426], [-2.0814560647045575, 52.327706393190475], [-2.081391147458314, 52.327698281271935], [-2.081360652838424, 52.327665495330486], [-2.081358913181628, 52.32766423700625], [-2.081356913347142, 52.32766352636209], [-2.0813546516240216, 52.327663232148474], [-2.0813527295743164, 52.327663327872855], [-2.0812899071710667, 52.32767164223245], [-2.081256884091415, 52.3276514550667], [-2.081257441129322, 52.32763199451071], [-2.0812889509788413, 52.32761287220059], [-2.081335804894781, 52.32761292435673], [-2.081352912350209, 52.327628693026995], [-2.0813548351431366, 52.327629796593556], [-2.0813572705991255, 52.32763041163993], [-2.081358771880376, 52.327630511292526], [-2.081438011943365, 52.327630740612925], [-2.0814528265871908, 52.32764763372812], [-2.081453743575154, 52.327648374784665], [-2.081454887762464, 52.32764898532499], [-2.0814562136112733, 52.32764943751598], [-2.081457662391877, 52.32764971341064], [-2.081459931013657, 52.327649772076086], [-2.081461770553612, 52.32764949300667], [-2.0814634320333263, 52.32764893446719], [-2.0814650354935043, 52.32764794982842], [-2.0814793064884065, 52.327631002432796], [-2.081525647210479, 52.32763045072608], [-2.081587671292623, 52.327649976727734], [-2.0816028760171643, 52.32769612004794], [-2.0815758138517975, 52.32772482830381], [-2.0815750523092915, 52.32772642279234], [-2.081575192864486, 52.327727845841885], [-2.081576053707166, 52.327729171299445], [-2.0815775480233834, 52.32773026436915], [-2.081631904995854, 52.32775912567912], [-2.0816060872686064, 52.32779506209365], [-2.0816056956893667, 52.3277959685768], [-2.081605621116101, 52.32779690450534], [-2.081605863467162, 52.32779782942852], [-2.0816064153368217, 52.32779870379239], [-2.081607498560895, 52.32779966768772], [-2.0816089511702667, 52.32780042635527], [-2.081610674767601, 52.327800930409964], [-2.0816125533779846, 52.32780114486995], [-2.0817022645078396, 52.32780123010841], [-2.0817350984024743, 52.32782130220413], [-2.0817333747962996, 52.32788667019314], [-2.081700024095203, 52.327895839058996], [-2.0816554142600983, 52.32787159288202], [-2.0816541382060563, 52.327871091214114], [-2.0816527230633284, 52.32787076135701], [-2.0816512275659798, 52.32787061585193], [-2.081649714804177, 52.327870661852764], [-2.0816472198194345, 52.327871193103825], [-2.0816451923791637, 52.32787223108027], [-2.081615945264218, 52.327893792754814], [-2.0816148690842464, 52.32789505392265], [-2.08161449016458, 52.32789645845279], [-2.0816148478594108, 52.327897864272906], [-2.0816159037645066, 52.32789913205674], [-2.081617875052255, 52.327900267050914], [-2.08162000522591, 52.327900833754754], [-2.081689155392168, 52.327909338181136], [-2.081764158857621, 52.32794639854629], [-2.0817648852666726, 52.328001969122745], [-2.081737194144083, 52.32803101048517], [-2.0817365749959826, 52.32803184790248]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_679c22bb47f1c45aa9d4aee067d952aa.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3d8887547bf3fa00e7dba5b10237482a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c025ee4c9c9d1652f0374a553ec800ea = $(`&lt;div id=&quot;html_c025ee4c9c9d1652f0374a553ec800ea&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 148&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 805.0 sqm&lt;br&gt;Intersecting area: 805.1 sqm&lt;/div&gt;`)[0];\n",
" popup_3d8887547bf3fa00e7dba5b10237482a.setContent(html_c025ee4c9c9d1652f0374a553ec800ea);\n",
" \n",
" \n",
"\n",
" geo_json_679c22bb47f1c45aa9d4aee067d952aa.bindPopup(popup_3d8887547bf3fa00e7dba5b10237482a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_679c22bb47f1c45aa9d4aee067d952aa.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_4dfc5751dc9ff719013f14be2285639a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4dfc5751dc9ff719013f14be2285639a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4dfc5751dc9ff719013f14be2285639a = L.geoJson(null, {\n",
" onEachFeature: geo_json_4dfc5751dc9ff719013f14be2285639a_onEachFeature,\n",
" \n",
" style: geo_json_4dfc5751dc9ff719013f14be2285639a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4dfc5751dc9ff719013f14be2285639a_add (data) {\n",
" geo_json_4dfc5751dc9ff719013f14be2285639a\n",
" .addData(data);\n",
" }\n",
" geo_json_4dfc5751dc9ff719013f14be2285639a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.082169885043627, 52.327581174551945], [-2.082137620071036, 52.327556153974584], [-2.082136534437546, 52.32755547417584], [-2.0821352392650465, 52.32755495005044], [-2.0821337932917205, 52.32755460403769], [-2.0821318722467494, 52.32755444624926], [-2.0820676450455284, 52.32755439752719], [-2.0820491240573307, 52.32754323472103], [-2.0820494184528395, 52.32750657790297], [-2.0820721185941653, 52.3275043954474], [-2.0820738667222582, 52.327503888980026], [-2.0820755890821134, 52.32750293841632], [-2.0820765952717797, 52.32750192631658], [-2.0820771331402383, 52.32750078868535], [-2.0820770405603857, 52.32749913545006], [-2.0820634940687706, 52.32746198842078], [-2.082078247984094, 52.3274342182187], [-2.082155623539716, 52.32741436606294], [-2.082217912799006, 52.32743368207643], [-2.0822188568630033, 52.32747974447412], [-2.0822002006950835, 52.32749137372594], [-2.082138261508898, 52.32749150684566], [-2.082136365994921, 52.32749166369487], [-2.0821346016244746, 52.32749211533704], [-2.0821333656818126, 52.32749266819633], [-2.0821321259694585, 52.32749356088607], [-2.082131306221471, 52.32749461960445], [-2.0821309895153384, 52.32749553772313], [-2.082130986675031, 52.327509804265496], [-2.0821313292180386, 52.327510944879656], [-2.0821321352616526, 52.32751199257444], [-2.0821333533379276, 52.327512879957716], [-2.082134901157237, 52.32751354684793], [-2.0822320095670532, 52.32754098368159], [-2.082228539259102, 52.32758119564416], [-2.082169885043627, 52.327581174551945]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4dfc5751dc9ff719013f14be2285639a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d707033514bb6de6f1da9bf037eeab9b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c11f7b200be9c59b813df821be577810 = $(`&lt;div id=&quot;html_c11f7b200be9c59b813df821be577810&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 149&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 147.0 sqm&lt;br&gt;Intersecting area: 146.6 sqm&lt;/div&gt;`)[0];\n",
" popup_d707033514bb6de6f1da9bf037eeab9b.setContent(html_c11f7b200be9c59b813df821be577810);\n",
" \n",
" \n",
"\n",
" geo_json_4dfc5751dc9ff719013f14be2285639a.bindPopup(popup_d707033514bb6de6f1da9bf037eeab9b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4dfc5751dc9ff719013f14be2285639a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_10ceda28227565267af852c6a234e696_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_10ceda28227565267af852c6a234e696_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_10ceda28227565267af852c6a234e696 = L.geoJson(null, {\n",
" onEachFeature: geo_json_10ceda28227565267af852c6a234e696_onEachFeature,\n",
" \n",
" style: geo_json_10ceda28227565267af852c6a234e696_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_10ceda28227565267af852c6a234e696_add (data) {\n",
" geo_json_10ceda28227565267af852c6a234e696\n",
" .addData(data);\n",
" }\n",
" geo_json_10ceda28227565267af852c6a234e696_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0829843732805107, 52.32766187660716], [-2.0829831007267456, 52.32766246546359], [-2.082982067645167, 52.32766320968275], [-2.0829639926285757, 52.32767950814862], [-2.082889969423088, 52.327679560270155], [-2.0828713844616247, 52.32763127982837], [-2.0829415790690273, 52.32758496687977], [-2.082942873972194, 52.32758377926254], [-2.0829434964802735, 52.32758240242538], [-2.0829433808203044, 52.327580976663455], [-2.082930045615725, 52.32755048322649], [-2.0829722784237323, 52.32753000348575], [-2.0829928254218104, 52.327512699066794], [-2.0830836137476427, 52.32752333068947], [-2.0830701022158546, 52.327641125241726], [-2.0829843732805107, 52.32766187660716]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_10ceda28227565267af852c6a234e696.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a3fa608c9fda0550b332180124eeb518 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f60b360460e446f76b6b7b333756050d = $(`&lt;div id=&quot;html_f60b360460e446f76b6b7b333756050d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 150&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 175.0 sqm&lt;br&gt;Intersecting area: 175.2 sqm&lt;/div&gt;`)[0];\n",
" popup_a3fa608c9fda0550b332180124eeb518.setContent(html_f60b360460e446f76b6b7b333756050d);\n",
" \n",
" \n",
"\n",
" geo_json_10ceda28227565267af852c6a234e696.bindPopup(popup_a3fa608c9fda0550b332180124eeb518)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_10ceda28227565267af852c6a234e696.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ba51638b4c51c4ea10f16aab680faa0c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ba51638b4c51c4ea10f16aab680faa0c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ba51638b4c51c4ea10f16aab680faa0c = L.geoJson(null, {\n",
" onEachFeature: geo_json_ba51638b4c51c4ea10f16aab680faa0c_onEachFeature,\n",
" \n",
" style: geo_json_ba51638b4c51c4ea10f16aab680faa0c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ba51638b4c51c4ea10f16aab680faa0c_add (data) {\n",
" geo_json_ba51638b4c51c4ea10f16aab680faa0c\n",
" .addData(data);\n",
" }\n",
" geo_json_ba51638b4c51c4ea10f16aab680faa0c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0843732846063365, 52.32791223493227], [-2.084374970070519, 52.32789812092055], [-2.084374576113095, 52.327896982141695], [-2.0843737186642546, 52.327895944388885], [-2.084372455080219, 52.32789507504471], [-2.0843708705860498, 52.327894434278505], [-2.084369069432006, 52.32789406427537], [-2.0842808596974343, 52.327883456072136], [-2.084283301557704, 52.327862770585604], [-2.0843455720126642, 52.32786218210027], [-2.084347443919444, 52.32786195151141], [-2.084349155330376, 52.32786143424664], [-2.0843505903968773, 52.327860662759036], [-2.0843516523797563, 52.32785969195961], [-2.0843523350808826, 52.32785835373086], [-2.0843523133350277, 52.32785695307125], [-2.0843384280091968, 52.3278063140639], [-2.0843377391195705, 52.32780517819682], [-2.0843258495921106, 52.32779155308176], [-2.0843600696095725, 52.327782278569565], [-2.0843909032333343, 52.32781003977196], [-2.084391299652661, 52.32784091001555], [-2.084391666163331, 52.32784227716211], [-2.084392692729334, 52.32784351077592], [-2.084394595079648, 52.3278446259979], [-2.0844627652459264, 52.32787219770149], [-2.0844181763620377, 52.32791195822964], [-2.0843732846063365, 52.32791223493227]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ba51638b4c51c4ea10f16aab680faa0c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d726db5db1a42ee0a1e838288e95f8a9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_abdb366bcecc7225eab2f36f0cca088e = $(`&lt;div id=&quot;html_abdb366bcecc7225eab2f36f0cca088e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 151&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 74.0 sqm&lt;br&gt;Intersecting area: 73.7 sqm&lt;/div&gt;`)[0];\n",
" popup_d726db5db1a42ee0a1e838288e95f8a9.setContent(html_abdb366bcecc7225eab2f36f0cca088e);\n",
" \n",
" \n",
"\n",
" geo_json_ba51638b4c51c4ea10f16aab680faa0c.bindPopup(popup_d726db5db1a42ee0a1e838288e95f8a9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ba51638b4c51c4ea10f16aab680faa0c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a4329e1387a0f42ccbcfcc7d0993e625_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a4329e1387a0f42ccbcfcc7d0993e625_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a4329e1387a0f42ccbcfcc7d0993e625 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a4329e1387a0f42ccbcfcc7d0993e625_onEachFeature,\n",
" \n",
" style: geo_json_a4329e1387a0f42ccbcfcc7d0993e625_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a4329e1387a0f42ccbcfcc7d0993e625_add (data) {\n",
" geo_json_a4329e1387a0f42ccbcfcc7d0993e625\n",
" .addData(data);\n",
" }\n",
" geo_json_a4329e1387a0f42ccbcfcc7d0993e625_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084285297595152, 52.32803310095277], [-2.0843878540292606, 52.32803295559203], [-2.084607889439664, 52.32805080509346], [-2.084625682926509, 52.32806245079361], [-2.084292624777281, 52.32806268962634], [-2.0842803421716383, 52.328044568791924], [-2.084285297595152, 52.32803310095277]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a4329e1387a0f42ccbcfcc7d0993e625.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7b6b131eae4e95fe96e80c767dc71db6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e5a4a3cb7990740759b340b9cca7426b = $(`&lt;div id=&quot;html_e5a4a3cb7990740759b340b9cca7426b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 152&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 58.0 sqm&lt;br&gt;Intersecting area: 58.3 sqm&lt;/div&gt;`)[0];\n",
" popup_7b6b131eae4e95fe96e80c767dc71db6.setContent(html_e5a4a3cb7990740759b340b9cca7426b);\n",
" \n",
" \n",
"\n",
" geo_json_a4329e1387a0f42ccbcfcc7d0993e625.bindPopup(popup_7b6b131eae4e95fe96e80c767dc71db6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a4329e1387a0f42ccbcfcc7d0993e625.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a9d84834df750871868557e3c325d4ab_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a9d84834df750871868557e3c325d4ab_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a9d84834df750871868557e3c325d4ab = L.geoJson(null, {\n",
" onEachFeature: geo_json_a9d84834df750871868557e3c325d4ab_onEachFeature,\n",
" \n",
" style: geo_json_a9d84834df750871868557e3c325d4ab_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a9d84834df750871868557e3c325d4ab_add (data) {\n",
" geo_json_a9d84834df750871868557e3c325d4ab\n",
" .addData(data);\n",
" }\n",
" geo_json_a9d84834df750871868557e3c325d4ab_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0855301716491663, 52.329400589869344], [-2.0855311639390943, 52.32938179605169], [-2.085572467653448, 52.329362438040384], [-2.0855961158113896, 52.329357619195996], [-2.0855771409338573, 52.32941226457909], [-2.0855301716491663, 52.329400589869344]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a9d84834df750871868557e3c325d4ab.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5884cdc7c346a2e5ab7afe67e697c302 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_98242b5d5c9ec3c600ba31c251ffdf1f = $(`&lt;div id=&quot;html_98242b5d5c9ec3c600ba31c251ffdf1f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 153&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 16.0 sqm&lt;br&gt;Intersecting area: 16.1 sqm&lt;/div&gt;`)[0];\n",
" popup_5884cdc7c346a2e5ab7afe67e697c302.setContent(html_98242b5d5c9ec3c600ba31c251ffdf1f);\n",
" \n",
" \n",
"\n",
" geo_json_a9d84834df750871868557e3c325d4ab.bindPopup(popup_5884cdc7c346a2e5ab7afe67e697c302)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a9d84834df750871868557e3c325d4ab.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_36fd92c317de9babf654f138074ba1a6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_36fd92c317de9babf654f138074ba1a6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_36fd92c317de9babf654f138074ba1a6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_36fd92c317de9babf654f138074ba1a6_onEachFeature,\n",
" \n",
" style: geo_json_36fd92c317de9babf654f138074ba1a6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_36fd92c317de9babf654f138074ba1a6_add (data) {\n",
" geo_json_36fd92c317de9babf654f138074ba1a6\n",
" .addData(data);\n",
" }\n",
" geo_json_36fd92c317de9babf654f138074ba1a6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085489201099811, 52.32945719488603], [-2.0855006224807022, 52.32944230782812], [-2.0855046793392, 52.329426103658584], [-2.085552136138154, 52.32942808210532], [-2.0855355384363676, 52.32946606962151], [-2.085489201099811, 52.32945719488603]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_36fd92c317de9babf654f138074ba1a6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_75f64e670ab794256d12a78c67d73e8c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ebd7a41e8f8e7db35a1f28bf9efb3811 = $(`&lt;div id=&quot;html_ebd7a41e8f8e7db35a1f28bf9efb3811&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 154&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.5 sqm&lt;/div&gt;`)[0];\n",
" popup_75f64e670ab794256d12a78c67d73e8c.setContent(html_ebd7a41e8f8e7db35a1f28bf9efb3811);\n",
" \n",
" \n",
"\n",
" geo_json_36fd92c317de9babf654f138074ba1a6.bindPopup(popup_75f64e670ab794256d12a78c67d73e8c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_36fd92c317de9babf654f138074ba1a6.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_20f29280cdfb30d4a4148b0d868518aa_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_20f29280cdfb30d4a4148b0d868518aa_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_20f29280cdfb30d4a4148b0d868518aa = L.geoJson(null, {\n",
" onEachFeature: geo_json_20f29280cdfb30d4a4148b0d868518aa_onEachFeature,\n",
" \n",
" style: geo_json_20f29280cdfb30d4a4148b0d868518aa_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_20f29280cdfb30d4a4148b0d868518aa_add (data) {\n",
" geo_json_20f29280cdfb30d4a4148b0d868518aa\n",
" .addData(data);\n",
" }\n",
" geo_json_20f29280cdfb30d4a4148b0d868518aa_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085414347607931, 52.32969893787796], [-2.0854167469673155, 52.32966862750684], [-2.0854759306251975, 52.3296594784101], [-2.0855031569589433, 52.3296677943567], [-2.0855093183595073, 52.32968131202806], [-2.08547876429549, 52.329708858570086], [-2.085414347607931, 52.32969893787796]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_20f29280cdfb30d4a4148b0d868518aa.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2d45e26e482d4d9750fe80a0564d2f2b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_51a992a006786a95eb9ce0ab77a5eb4e = $(`&lt;div id=&quot;html_51a992a006786a95eb9ce0ab77a5eb4e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 155&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 25.9 sqm&lt;/div&gt;`)[0];\n",
" popup_2d45e26e482d4d9750fe80a0564d2f2b.setContent(html_51a992a006786a95eb9ce0ab77a5eb4e);\n",
" \n",
" \n",
"\n",
" geo_json_20f29280cdfb30d4a4148b0d868518aa.bindPopup(popup_2d45e26e482d4d9750fe80a0564d2f2b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_20f29280cdfb30d4a4148b0d868518aa.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d78828a2065dbdfe9154fa51d2704160_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d78828a2065dbdfe9154fa51d2704160_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d78828a2065dbdfe9154fa51d2704160 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d78828a2065dbdfe9154fa51d2704160_onEachFeature,\n",
" \n",
" style: geo_json_d78828a2065dbdfe9154fa51d2704160_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d78828a2065dbdfe9154fa51d2704160_add (data) {\n",
" geo_json_d78828a2065dbdfe9154fa51d2704160\n",
" .addData(data);\n",
" }\n",
" geo_json_d78828a2065dbdfe9154fa51d2704160_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08546108721652, 52.330041047241394], [-2.085471986468242, 52.33001862768498], [-2.0855085549059926, 52.33001189715984], [-2.0855086112194705, 52.33004101275047], [-2.08546108721652, 52.330041047241394]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d78828a2065dbdfe9154fa51d2704160.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_636ec8527b69495100ee344c93776290 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6bf3c577000eec7915d8074c87d962be = $(`&lt;div id=&quot;html_6bf3c577000eec7915d8074c87d962be&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 156&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.1 sqm&lt;/div&gt;`)[0];\n",
" popup_636ec8527b69495100ee344c93776290.setContent(html_6bf3c577000eec7915d8074c87d962be);\n",
" \n",
" \n",
"\n",
" geo_json_d78828a2065dbdfe9154fa51d2704160.bindPopup(popup_636ec8527b69495100ee344c93776290)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d78828a2065dbdfe9154fa51d2704160.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_9669c1e710bc2eb89e45e5ced1d61a0f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9669c1e710bc2eb89e45e5ced1d61a0f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9669c1e710bc2eb89e45e5ced1d61a0f = L.geoJson(null, {\n",
" onEachFeature: geo_json_9669c1e710bc2eb89e45e5ced1d61a0f_onEachFeature,\n",
" \n",
" style: geo_json_9669c1e710bc2eb89e45e5ced1d61a0f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9669c1e710bc2eb89e45e5ced1d61a0f_add (data) {\n",
" geo_json_9669c1e710bc2eb89e45e5ced1d61a0f\n",
" .addData(data);\n",
" }\n",
" geo_json_9669c1e710bc2eb89e45e5ced1d61a0f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0852968095038147, 52.33005735944937], [-2.085296970718261, 52.33003063329373], [-2.08531566673411, 52.33002811328813], [-2.085347986574375, 52.33003104494963], [-2.0853302750771583, 52.33006010958212], [-2.0852968095038147, 52.33005735944937]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9669c1e710bc2eb89e45e5ced1d61a0f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_25e888338f03647dc365a0e6f42bd20a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c7786f3423468e3cfb70fc10d4235675 = $(`&lt;div id=&quot;html_c7786f3423468e3cfb70fc10d4235675&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 157&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.6 sqm&lt;/div&gt;`)[0];\n",
" popup_25e888338f03647dc365a0e6f42bd20a.setContent(html_c7786f3423468e3cfb70fc10d4235675);\n",
" \n",
" \n",
"\n",
" geo_json_9669c1e710bc2eb89e45e5ced1d61a0f.bindPopup(popup_25e888338f03647dc365a0e6f42bd20a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9669c1e710bc2eb89e45e5ced1d61a0f.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_b154b7d9b8199526fc656f79dc49faf8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b154b7d9b8199526fc656f79dc49faf8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b154b7d9b8199526fc656f79dc49faf8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_b154b7d9b8199526fc656f79dc49faf8_onEachFeature,\n",
" \n",
" style: geo_json_b154b7d9b8199526fc656f79dc49faf8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b154b7d9b8199526fc656f79dc49faf8_add (data) {\n",
" geo_json_b154b7d9b8199526fc656f79dc49faf8\n",
" .addData(data);\n",
" }\n",
" geo_json_b154b7d9b8199526fc656f79dc49faf8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084873154216898, 52.331182294080264], [-2.084891321019081, 52.33116144982291], [-2.08496607175676, 52.331161256575825], [-2.084997834031424, 52.331185056707334], [-2.084873246082186, 52.33119798964769], [-2.084873154216898, 52.331182294080264]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b154b7d9b8199526fc656f79dc49faf8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3d1b8f23141bcfde179c867152e926ed = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b22f0e836852281a10ae4cd588efa758 = $(`&lt;div id=&quot;html_b22f0e836852281a10ae4cd588efa758&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 158&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 129.0 sqm&lt;br&gt;Intersecting area: 24.2 sqm&lt;/div&gt;`)[0];\n",
" popup_3d1b8f23141bcfde179c867152e926ed.setContent(html_b22f0e836852281a10ae4cd588efa758);\n",
" \n",
" \n",
"\n",
" geo_json_b154b7d9b8199526fc656f79dc49faf8.bindPopup(popup_3d1b8f23141bcfde179c867152e926ed)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b154b7d9b8199526fc656f79dc49faf8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a4682fb86682c840bbd16e66d946e911_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a4682fb86682c840bbd16e66d946e911_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a4682fb86682c840bbd16e66d946e911 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a4682fb86682c840bbd16e66d946e911_onEachFeature,\n",
" \n",
" style: geo_json_a4682fb86682c840bbd16e66d946e911_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a4682fb86682c840bbd16e66d946e911_add (data) {\n",
" geo_json_a4682fb86682c840bbd16e66d946e911\n",
" .addData(data);\n",
" }\n",
" geo_json_a4682fb86682c840bbd16e66d946e911_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.081730333542267, 52.32815682849554], [-2.0816403646190573, 52.32811130163563], [-2.0816244283681944, 52.32807357185352], [-2.081628805015767, 52.32806456604105], [-2.081792097120642, 52.32806445274484], [-2.081823150916399, 52.32811045646217], [-2.081764096187342, 52.32815607595517], [-2.081730333542267, 52.32815682849554]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a4682fb86682c840bbd16e66d946e911.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f874942688b5590ab4bf58b2e73682f0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_199d87694ea3b281f981d2074d6232d6 = $(`&lt;div id=&quot;html_199d87694ea3b281f981d2074d6232d6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 159&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 100.0 sqm&lt;br&gt;Intersecting area: 99.6 sqm&lt;/div&gt;`)[0];\n",
" popup_f874942688b5590ab4bf58b2e73682f0.setContent(html_199d87694ea3b281f981d2074d6232d6);\n",
" \n",
" \n",
"\n",
" geo_json_a4682fb86682c840bbd16e66d946e911.bindPopup(popup_f874942688b5590ab4bf58b2e73682f0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a4682fb86682c840bbd16e66d946e911.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_0478b03818dc251fab33fe451ee7252e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0478b03818dc251fab33fe451ee7252e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0478b03818dc251fab33fe451ee7252e = L.geoJson(null, {\n",
" onEachFeature: geo_json_0478b03818dc251fab33fe451ee7252e_onEachFeature,\n",
" \n",
" style: geo_json_0478b03818dc251fab33fe451ee7252e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0478b03818dc251fab33fe451ee7252e_add (data) {\n",
" geo_json_0478b03818dc251fab33fe451ee7252e\n",
" .addData(data);\n",
" }\n",
" geo_json_0478b03818dc251fab33fe451ee7252e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0821093746641246, 52.328270859852516], [-2.0821228326602226, 52.328249947372804], [-2.0821596470117703, 52.32824261716448], [-2.0821742923523883, 52.32827237527322], [-2.082124661005258, 52.32828154392672], [-2.0821093746641246, 52.328270859852516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0478b03818dc251fab33fe451ee7252e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_080ec2838bc291c62ef9e365c112a1b4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_22f5caf0767737dff9dbf68283626d6b = $(`&lt;div id=&quot;html_22f5caf0767737dff9dbf68283626d6b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 160&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 12.3 sqm&lt;/div&gt;`)[0];\n",
" popup_080ec2838bc291c62ef9e365c112a1b4.setContent(html_22f5caf0767737dff9dbf68283626d6b);\n",
" \n",
" \n",
"\n",
" geo_json_0478b03818dc251fab33fe451ee7252e.bindPopup(popup_080ec2838bc291c62ef9e365c112a1b4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0478b03818dc251fab33fe451ee7252e.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_6678b3fd87da4edc8a514826682813b2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6678b3fd87da4edc8a514826682813b2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6678b3fd87da4edc8a514826682813b2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_6678b3fd87da4edc8a514826682813b2_onEachFeature,\n",
" \n",
" style: geo_json_6678b3fd87da4edc8a514826682813b2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6678b3fd87da4edc8a514826682813b2_add (data) {\n",
" geo_json_6678b3fd87da4edc8a514826682813b2\n",
" .addData(data);\n",
" }\n",
" geo_json_6678b3fd87da4edc8a514826682813b2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0818316170435174, 52.32897260909554], [-2.0818488959626498, 52.32895221542651], [-2.0818957513289718, 52.328952286239264], [-2.0819121414456543, 52.32900025279455], [-2.0818489385337675, 52.329010080764206], [-2.0818316170435174, 52.32897260909554]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6678b3fd87da4edc8a514826682813b2.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_69066201bbcb439ab68c3356f0e82d80 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_35a3f3639e663ccccce1e6505782a4d8 = $(`&lt;div id=&quot;html_35a3f3639e663ccccce1e6505782a4d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 161&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 26.2 sqm&lt;/div&gt;`)[0];\n",
" popup_69066201bbcb439ab68c3356f0e82d80.setContent(html_35a3f3639e663ccccce1e6505782a4d8);\n",
" \n",
" \n",
"\n",
" geo_json_6678b3fd87da4edc8a514826682813b2.bindPopup(popup_69066201bbcb439ab68c3356f0e82d80)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6678b3fd87da4edc8a514826682813b2.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_b964612e3fa6329a3da35a3128cb281a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b964612e3fa6329a3da35a3128cb281a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b964612e3fa6329a3da35a3128cb281a = L.geoJson(null, {\n",
" onEachFeature: geo_json_b964612e3fa6329a3da35a3128cb281a_onEachFeature,\n",
" \n",
" style: geo_json_b964612e3fa6329a3da35a3128cb281a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b964612e3fa6329a3da35a3128cb281a_add (data) {\n",
" geo_json_b964612e3fa6329a3da35a3128cb281a\n",
" .addData(data);\n",
" }\n",
" geo_json_b964612e3fa6329a3da35a3128cb281a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08201292120135, 52.32901964372401], [-2.082022072725234, 52.32899084986089], [-2.082039068019338, 52.32897027385724], [-2.0820720380550086, 52.32896985981284], [-2.0821035871406535, 52.32898891950336], [-2.0821039150382377, 52.32900903392937], [-2.082085707051559, 52.329019780912255], [-2.08201292120135, 52.32901964372401]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b964612e3fa6329a3da35a3128cb281a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2c626cb50e8d2754cab4c2a79f9467b6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_88fe0054a0d841bffefcab9e9e1c5931 = $(`&lt;div id=&quot;html_88fe0054a0d841bffefcab9e9e1c5931&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 162&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 27.0 sqm&lt;br&gt;Intersecting area: 27.4 sqm&lt;/div&gt;`)[0];\n",
" popup_2c626cb50e8d2754cab4c2a79f9467b6.setContent(html_88fe0054a0d841bffefcab9e9e1c5931);\n",
" \n",
" \n",
"\n",
" geo_json_b964612e3fa6329a3da35a3128cb281a.bindPopup(popup_2c626cb50e8d2754cab4c2a79f9467b6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b964612e3fa6329a3da35a3128cb281a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3_onEachFeature,\n",
" \n",
" style: geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3_add (data) {\n",
" geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3\n",
" .addData(data);\n",
" }\n",
" geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0829012320656215, 52.330017281760334], [-2.0829000607690986, 52.3300179074027], [-2.0828991318553105, 52.33001867042252], [-2.082898372305198, 52.33001976326535], [-2.0828837229180217, 52.33006041912312], [-2.0828526684811717, 52.330079592775], [-2.0827455707050597, 52.33007069136432], [-2.082714097463084, 52.3300331191938], [-2.082729242545917, 52.329995367739855], [-2.082804361625333, 52.329967239485605], [-2.082857858817709, 52.329966879116554], [-2.0829116269535297, 52.329959194219406], [-2.0829407202110835, 52.330006966484255], [-2.082902591505712, 52.330016821402424], [-2.0829012320656215, 52.330017281760334]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2fd5998d9673f3c9ec46d517b1b6efe4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a7c90bd6f7220b3a9fb3b8989ea47ad0 = $(`&lt;div id=&quot;html_a7c90bd6f7220b3a9fb3b8989ea47ad0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 163&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 139.0 sqm&lt;br&gt;Intersecting area: 139.5 sqm&lt;/div&gt;`)[0];\n",
" popup_2fd5998d9673f3c9ec46d517b1b6efe4.setContent(html_a7c90bd6f7220b3a9fb3b8989ea47ad0);\n",
" \n",
" \n",
"\n",
" geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3.bindPopup(popup_2fd5998d9673f3c9ec46d517b1b6efe4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1593c6b1e4a5c0e34ccfdcb4369234f3.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_dbba5fac200992efb2848e3b2614bb11_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_dbba5fac200992efb2848e3b2614bb11_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_dbba5fac200992efb2848e3b2614bb11 = L.geoJson(null, {\n",
" onEachFeature: geo_json_dbba5fac200992efb2848e3b2614bb11_onEachFeature,\n",
" \n",
" style: geo_json_dbba5fac200992efb2848e3b2614bb11_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_dbba5fac200992efb2848e3b2614bb11_add (data) {\n",
" geo_json_dbba5fac200992efb2848e3b2614bb11\n",
" .addData(data);\n",
" }\n",
" geo_json_dbba5fac200992efb2848e3b2614bb11_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0830100613112794, 52.33027703237319], [-2.0829952527123266, 52.33024694725145], [-2.083071955734918, 52.330237732171476], [-2.0830681144155356, 52.330277782581824], [-2.0830100613112794, 52.33027703237319]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_dbba5fac200992efb2848e3b2614bb11.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d7a065c9acf484b4fb9b9b618f64ad75 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_465f29c01cf556760dfad618dbed2845 = $(`&lt;div id=&quot;html_465f29c01cf556760dfad618dbed2845&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 164&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.1 sqm&lt;/div&gt;`)[0];\n",
" popup_d7a065c9acf484b4fb9b9b618f64ad75.setContent(html_465f29c01cf556760dfad618dbed2845);\n",
" \n",
" \n",
"\n",
" geo_json_dbba5fac200992efb2848e3b2614bb11.bindPopup(popup_d7a065c9acf484b4fb9b9b618f64ad75)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_dbba5fac200992efb2848e3b2614bb11.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_d7217a15dbbf88df7efbcd6c76082619_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d7217a15dbbf88df7efbcd6c76082619_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d7217a15dbbf88df7efbcd6c76082619 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d7217a15dbbf88df7efbcd6c76082619_onEachFeature,\n",
" \n",
" style: geo_json_d7217a15dbbf88df7efbcd6c76082619_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d7217a15dbbf88df7efbcd6c76082619_add (data) {\n",
" geo_json_d7217a15dbbf88df7efbcd6c76082619\n",
" .addData(data);\n",
" }\n",
" geo_json_d7217a15dbbf88df7efbcd6c76082619_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.083199949397362, 52.330518301149084], [-2.0831994526783024, 52.33049062880137], [-2.0832181812846673, 52.33048810460804], [-2.0832506507556725, 52.330490126029034], [-2.0832483057890427, 52.33051973867434], [-2.083199949397362, 52.330518301149084]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d7217a15dbbf88df7efbcd6c76082619.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3e2c41e9560203f1bfb29b6114d7276f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9ca5aca58fd13aa734c120859d7bc087 = $(`&lt;div id=&quot;html_9ca5aca58fd13aa734c120859d7bc087&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 165&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.3 sqm&lt;/div&gt;`)[0];\n",
" popup_3e2c41e9560203f1bfb29b6114d7276f.setContent(html_9ca5aca58fd13aa734c120859d7bc087);\n",
" \n",
" \n",
"\n",
" geo_json_d7217a15dbbf88df7efbcd6c76082619.bindPopup(popup_3e2c41e9560203f1bfb29b6114d7276f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d7217a15dbbf88df7efbcd6c76082619.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_a4b343b7c103c25e4685b81e67050647_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a4b343b7c103c25e4685b81e67050647_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a4b343b7c103c25e4685b81e67050647 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a4b343b7c103c25e4685b81e67050647_onEachFeature,\n",
" \n",
" style: geo_json_a4b343b7c103c25e4685b81e67050647_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a4b343b7c103c25e4685b81e67050647_add (data) {\n",
" geo_json_a4b343b7c103c25e4685b81e67050647\n",
" .addData(data);\n",
" }\n",
" geo_json_a4b343b7c103c25e4685b81e67050647_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084213488876286, 52.33066275439552], [-2.084183043809009, 52.330635037829765], [-2.0841975384346565, 52.330606108727466], [-2.084216696712252, 52.330604209786856], [-2.084264762506199, 52.330598628465744], [-2.0842789389349674, 52.33064298220836], [-2.084246621968496, 52.33066331955635], [-2.084213488876286, 52.33066275439552]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a4b343b7c103c25e4685b81e67050647.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f6efcebafdae945defe71f1c03809ba7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_77420acfe0c70edeb25067b61e7e044a = $(`&lt;div id=&quot;html_77420acfe0c70edeb25067b61e7e044a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 166&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 34.0 sqm&lt;br&gt;Intersecting area: 34.4 sqm&lt;/div&gt;`)[0];\n",
" popup_f6efcebafdae945defe71f1c03809ba7.setContent(html_77420acfe0c70edeb25067b61e7e044a);\n",
" \n",
" \n",
"\n",
" geo_json_a4b343b7c103c25e4685b81e67050647.bindPopup(popup_f6efcebafdae945defe71f1c03809ba7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a4b343b7c103c25e4685b81e67050647.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b = L.geoJson(null, {\n",
" onEachFeature: geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b_onEachFeature,\n",
" \n",
" style: geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b_add (data) {\n",
" geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b\n",
" .addData(data);\n",
" }\n",
" geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.081920975480513, 52.32917146933887], [-2.081919816526509, 52.329134411679405], [-2.0819654232804288, 52.3291051726115], [-2.081996802222714, 52.32910446751615], [-2.082030773390246, 52.32911527164162], [-2.0820456565263123, 52.329160773220735], [-2.0819818841537563, 52.329190428620876], [-2.081920975480513, 52.32917146933887]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d130f4652e387b3a30f99946fced1c9c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_03ac8525dd01c3d0798c24240cf10087 = $(`&lt;div id=&quot;html_03ac8525dd01c3d0798c24240cf10087&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 167&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 60.0 sqm&lt;br&gt;Intersecting area: 59.6 sqm&lt;/div&gt;`)[0];\n",
" popup_d130f4652e387b3a30f99946fced1c9c.setContent(html_03ac8525dd01c3d0798c24240cf10087);\n",
" \n",
" \n",
"\n",
" geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b.bindPopup(popup_d130f4652e387b3a30f99946fced1c9c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3e3a2a00b7c3c7c183d6f7fc67be9a0b.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_153dca7cc371038a5eb5bc50d3de3277_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_153dca7cc371038a5eb5bc50d3de3277_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_153dca7cc371038a5eb5bc50d3de3277 = L.geoJson(null, {\n",
" onEachFeature: geo_json_153dca7cc371038a5eb5bc50d3de3277_onEachFeature,\n",
" \n",
" style: geo_json_153dca7cc371038a5eb5bc50d3de3277_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_153dca7cc371038a5eb5bc50d3de3277_add (data) {\n",
" geo_json_153dca7cc371038a5eb5bc50d3de3277\n",
" .addData(data);\n",
" }\n",
" geo_json_153dca7cc371038a5eb5bc50d3de3277_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084211901678558, 52.33069695241179], [-2.0842159783943446, 52.3306854726186], [-2.0842611483508335, 52.330685712716765], [-2.084263607026348, 52.33071533453103], [-2.084215276538588, 52.33071683989222], [-2.084211901678558, 52.33069695241179]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_153dca7cc371038a5eb5bc50d3de3277.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0e4583813f700abb4120075d178638c9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6354f666e5ec68d1d7d265d2729fe847 = $(`&lt;div id=&quot;html_6354f666e5ec68d1d7d265d2729fe847&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 168&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 11.3 sqm&lt;/div&gt;`)[0];\n",
" popup_0e4583813f700abb4120075d178638c9.setContent(html_6354f666e5ec68d1d7d265d2729fe847);\n",
" \n",
" \n",
"\n",
" geo_json_153dca7cc371038a5eb5bc50d3de3277.bindPopup(popup_0e4583813f700abb4120075d178638c9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_153dca7cc371038a5eb5bc50d3de3277.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_cc17f078511531f94d12524e276a1a55_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cc17f078511531f94d12524e276a1a55_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cc17f078511531f94d12524e276a1a55 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cc17f078511531f94d12524e276a1a55_onEachFeature,\n",
" \n",
" style: geo_json_cc17f078511531f94d12524e276a1a55_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cc17f078511531f94d12524e276a1a55_add (data) {\n",
" geo_json_cc17f078511531f94d12524e276a1a55\n",
" .addData(data);\n",
" }\n",
" geo_json_cc17f078511531f94d12524e276a1a55_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084749906614851, 52.328092997350254], [-2.084748235533493, 52.32809235935213], [-2.08474634638476, 52.32809201638669], [-2.0844315628942676, 52.32808322439888], [-2.0844127061845734, 52.328071113741615], [-2.084417319457, 52.32806260031897], [-2.0845209531308826, 52.32806252599552], [-2.084761088109303, 52.32806860700593], [-2.084762980684377, 52.328068442018846], [-2.084798759359454, 52.32806232631148], [-2.084819842369678, 52.32806231113057], [-2.0848583459058183, 52.32807759818804], [-2.084859895327725, 52.3281081187764], [-2.084783102756333, 52.32810984086092], [-2.084749906614851, 52.328092997350254]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cc17f078511531f94d12524e276a1a55.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_84159077736233285e489020ed99811c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e6084fe4d5efd4f61fe9e552ee76d16f = $(`&lt;div id=&quot;html_e6084fe4d5efd4f61fe9e552ee76d16f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 169&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 91.0 sqm&lt;br&gt;Intersecting area: 90.5 sqm&lt;/div&gt;`)[0];\n",
" popup_84159077736233285e489020ed99811c.setContent(html_e6084fe4d5efd4f61fe9e552ee76d16f);\n",
" \n",
" \n",
"\n",
" geo_json_cc17f078511531f94d12524e276a1a55.bindPopup(popup_84159077736233285e489020ed99811c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cc17f078511531f94d12524e276a1a55.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_c72df12006f6ca906d43ec36aaa281af_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c72df12006f6ca906d43ec36aaa281af_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c72df12006f6ca906d43ec36aaa281af = L.geoJson(null, {\n",
" onEachFeature: geo_json_c72df12006f6ca906d43ec36aaa281af_onEachFeature,\n",
" \n",
" style: geo_json_c72df12006f6ca906d43ec36aaa281af_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c72df12006f6ca906d43ec36aaa281af_add (data) {\n",
" geo_json_c72df12006f6ca906d43ec36aaa281af\n",
" .addData(data);\n",
" }\n",
" geo_json_c72df12006f6ca906d43ec36aaa281af_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08355220544411, 52.32811970348746], [-2.0833829940751625, 52.32813785953463], [-2.0833809408598873, 52.328138438157936], [-2.083379042734146, 52.32813955608247], [-2.0833621879515336, 52.32815555527584], [-2.0833028374162557, 52.32816486166253], [-2.0832223337062694, 52.32816501476838], [-2.083219977573424, 52.32816525737181], [-2.0832181957604234, 52.32816580703143], [-2.083156517081776, 52.328191818770016], [-2.083061058638003, 52.32820093475802], [-2.0830589346649973, 52.328201347108404], [-2.0830576751110366, 52.32820183167], [-2.083056367739304, 52.3282026399102], [-2.083038051822287, 52.328218905294], [-2.0829321718896345, 52.32821698138239], [-2.082948416383599, 52.32816889398427], [-2.0830510371053133, 52.328141878058474], [-2.0831906175388357, 52.328132746203664], [-2.0831931170834617, 52.328132297623156], [-2.083194378093171, 52.328131807666225], [-2.0832955281836267, 52.328082930212545], [-2.0832966283827594, 52.32808198097141], [-2.0832972954430695, 52.32808088998724], [-2.0833023909000774, 52.32806339416793], [-2.083406310724497, 52.32806332061979], [-2.0834223362855098, 52.32809314502119], [-2.0834232406332087, 52.32809416207214], [-2.0834245393689117, 52.32809500442862], [-2.083426495219685, 52.32809570517912], [-2.083428329952253, 52.328095986173345], [-2.0834309651320133, 52.328095880916194], [-2.0834842295587337, 52.32808768187783], [-2.083486068778112, 52.32808723016251], [-2.0834881723623107, 52.328086130069686], [-2.0835180486250913, 52.32806324143651], [-2.083604258893468, 52.328063180271215], [-2.083643177006831, 52.32806436271576], [-2.083641366870327, 52.32808328835737], [-2.08355220544411, 52.32811970348746]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c72df12006f6ca906d43ec36aaa281af.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ffc698b6983c90773874b09af9ef95da = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_70f881331120c8b020abf8687f8a57ff = $(`&lt;div id=&quot;html_70f881331120c8b020abf8687f8a57ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 170&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 311.0 sqm&lt;br&gt;Intersecting area: 310.5 sqm&lt;/div&gt;`)[0];\n",
" popup_ffc698b6983c90773874b09af9ef95da.setContent(html_70f881331120c8b020abf8687f8a57ff);\n",
" \n",
" \n",
"\n",
" geo_json_c72df12006f6ca906d43ec36aaa281af.bindPopup(popup_ffc698b6983c90773874b09af9ef95da)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c72df12006f6ca906d43ec36aaa281af.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_20dada68224d00111d0464eaf2c2d5bf_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_20dada68224d00111d0464eaf2c2d5bf_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_20dada68224d00111d0464eaf2c2d5bf = L.geoJson(null, {\n",
" onEachFeature: geo_json_20dada68224d00111d0464eaf2c2d5bf_onEachFeature,\n",
" \n",
" style: geo_json_20dada68224d00111d0464eaf2c2d5bf_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_20dada68224d00111d0464eaf2c2d5bf_add (data) {\n",
" geo_json_20dada68224d00111d0464eaf2c2d5bf\n",
" .addData(data);\n",
" }\n",
" geo_json_20dada68224d00111d0464eaf2c2d5bf_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08546309461745, 52.32818955543161], [-2.085461069462614, 52.32819021678135], [-2.0854592640061016, 52.32819142547201], [-2.085458593582489, 52.328192270139375], [-2.0854581805353796, 52.328193415788895], [-2.085458264971557, 52.32819458715017], [-2.0854588423388076, 52.32819570600843], [-2.0854775382607227, 52.32821479390529], [-2.0854579991413744, 52.32824381044356], [-2.0853390344339418, 52.3282167445197], [-2.0853224299125244, 52.32817046244842], [-2.0853812230135844, 52.328087749626526], [-2.08542302237954, 52.32806805597266], [-2.0854897840630437, 52.32806182677734], [-2.0855214364531416, 52.32806180379937], [-2.0855507203112262, 52.328079869902034], [-2.0855214068841974, 52.328179272377355], [-2.08546309461745, 52.32818955543161]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_20dada68224d00111d0464eaf2c2d5bf.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_41d35fb5353a86576acd93aa29261482 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_fb372bbe6ad157abfc3a9f2b143056ca = $(`&lt;div id=&quot;html_fb372bbe6ad157abfc3a9f2b143056ca&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 171&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 208.0 sqm&lt;br&gt;Intersecting area: 207.7 sqm&lt;/div&gt;`)[0];\n",
" popup_41d35fb5353a86576acd93aa29261482.setContent(html_fb372bbe6ad157abfc3a9f2b143056ca);\n",
" \n",
" \n",
"\n",
" geo_json_20dada68224d00111d0464eaf2c2d5bf.bindPopup(popup_41d35fb5353a86576acd93aa29261482)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_20dada68224d00111d0464eaf2c2d5bf.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_2509166946a261bd4d47600756f295b8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2509166946a261bd4d47600756f295b8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2509166946a261bd4d47600756f295b8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2509166946a261bd4d47600756f295b8_onEachFeature,\n",
" \n",
" style: geo_json_2509166946a261bd4d47600756f295b8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2509166946a261bd4d47600756f295b8_add (data) {\n",
" geo_json_2509166946a261bd4d47600756f295b8\n",
" .addData(data);\n",
" }\n",
" geo_json_2509166946a261bd4d47600756f295b8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085074027675742, 52.3285771957136], [-2.0850721617947654, 52.32857751711379], [-2.085070199909006, 52.3285782791008], [-2.0850687258392373, 52.328579378767046], [-2.085067886120638, 52.32858070542722], [-2.0850677235949977, 52.32858165131113], [-2.0850677615260085, 52.32859602660077], [-2.085068133586583, 52.328597213037156], [-2.0850692380487406, 52.32859849244519], [-2.0850703208606753, 52.32859919649541], [-2.085125832000852, 52.32862826572996], [-2.0850942511323094, 52.32867557246544], [-2.0850747280322857, 52.3286750201846], [-2.0850159891672795, 52.32863020333685], [-2.085000617655883, 52.32858022267025], [-2.085000169818681, 52.328579312289115], [-2.0849994198530397, 52.3285784794395], [-2.08499810927009, 52.32857760473886], [-2.0849964704579373, 52.32857697031769], [-2.0849575197890755, 52.32856749578487], [-2.0849128695660624, 52.328531140178754], [-2.0849120466838973, 52.32849921480209], [-2.0849118747382653, 52.328498314107186], [-2.0849114108636373, 52.328497453181896], [-2.084910212759258, 52.32849631139225], [-2.08486809871533, 52.32846706608183], [-2.08486783659658, 52.32841307657219], [-2.084872272080107, 52.32840141039648], [-2.0849331684245596, 52.32840162182506], [-2.0851111817420787, 52.32849261521601], [-2.0851407229830836, 52.32854750236572], [-2.0851100209051667, 52.32857639116145], [-2.085074027675742, 52.3285771957136]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2509166946a261bd4d47600756f295b8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9736794c4bb82da1f5f8e11383110deb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3c5c6161bb436af31c15b4022d5ac03c = $(`&lt;div id=&quot;html_3c5c6161bb436af31c15b4022d5ac03c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 172&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 282.0 sqm&lt;br&gt;Intersecting area: 281.9 sqm&lt;/div&gt;`)[0];\n",
" popup_9736794c4bb82da1f5f8e11383110deb.setContent(html_3c5c6161bb436af31c15b4022d5ac03c);\n",
" \n",
" \n",
"\n",
" geo_json_2509166946a261bd4d47600756f295b8.bindPopup(popup_9736794c4bb82da1f5f8e11383110deb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2509166946a261bd4d47600756f295b8.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_c7d14d47de38f4d04de23a5d26a03c71_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c7d14d47de38f4d04de23a5d26a03c71_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c7d14d47de38f4d04de23a5d26a03c71 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c7d14d47de38f4d04de23a5d26a03c71_onEachFeature,\n",
" \n",
" style: geo_json_c7d14d47de38f4d04de23a5d26a03c71_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c7d14d47de38f4d04de23a5d26a03c71_add (data) {\n",
" geo_json_c7d14d47de38f4d04de23a5d26a03c71\n",
" .addData(data);\n",
" }\n",
" geo_json_c7d14d47de38f4d04de23a5d26a03c71_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0863895281673277, 52.32809090356693], [-2.0863883766188813, 52.32809182320952], [-2.086387647963474, 52.32809289268056], [-2.086387401766903, 52.32809380806246], [-2.0863868658096507, 52.328134171723356], [-2.0862869055585342, 52.328198560834736], [-2.0862859517988093, 52.328199324799925], [-2.0862851674315017, 52.32820042397616], [-2.086284885085887, 52.328201611784145], [-2.086284342449065, 52.32823334127092], [-2.086211178943596, 52.328305272333104], [-2.086147455460587, 52.32831503196028], [-2.0861163423438214, 52.32826731678913], [-2.0861991531125006, 52.328247686362154], [-2.086201104832941, 52.328246996288684], [-2.0862028222132034, 52.328245779557584], [-2.0862610723645383, 52.3281563249471], [-2.086261344465309, 52.32815514703648], [-2.086261749231259, 52.328123443723], [-2.0863030036020778, 52.32810362249005], [-2.0863047723068044, 52.32810239313359], [-2.086305533232363, 52.32810131555439], [-2.086319742105294, 52.328070706119675], [-2.0863238424602706, 52.32806121846263], [-2.086415363087137, 52.328061151354206], [-2.086415905062941, 52.32808018678849], [-2.0863907009173643, 52.3280903174478], [-2.0863895281673277, 52.32809090356693]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c7d14d47de38f4d04de23a5d26a03c71.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c25307e3a8a8ac820921dec88a2cf213 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c7719dacc297ef671e3b0af463defc4b = $(`&lt;div id=&quot;html_c7719dacc297ef671e3b0af463defc4b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 173&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 167.0 sqm&lt;br&gt;Intersecting area: 167.3 sqm&lt;/div&gt;`)[0];\n",
" popup_c25307e3a8a8ac820921dec88a2cf213.setContent(html_c7719dacc297ef671e3b0af463defc4b);\n",
" \n",
" \n",
"\n",
" geo_json_c7d14d47de38f4d04de23a5d26a03c71.bindPopup(popup_c25307e3a8a8ac820921dec88a2cf213)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c7d14d47de38f4d04de23a5d26a03c71.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5_onEachFeature,\n",
" \n",
" style: geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5_add (data) {\n",
" geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5\n",
" .addData(data);\n",
" }\n",
" geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.086510380961156, 52.32826084279004], [-2.086508740221748, 52.32826148139942], [-2.0865076615874854, 52.32826216904484], [-2.086506844384803, 52.328262980559934], [-2.0865063252283287, 52.328263879959614], [-2.0865061279850283, 52.328265064113204], [-2.0865064457691416, 52.32826623889901], [-2.0865342232501867, 52.32832183272647], [-2.086506775449154, 52.328342493469926], [-2.0865059332533815, 52.32834328432782], [-2.0865053803126954, 52.32834416487297], [-2.086490536188791, 52.32843032249726], [-2.0864630811693465, 52.328450342234454], [-2.0864620559265683, 52.328451324716035], [-2.0864615558143247, 52.3284522070184], [-2.086446625283335, 52.328574538537744], [-2.086404041588639, 52.328612633353764], [-2.086403264172032, 52.328613532046425], [-2.0863731214677474, 52.32868273907632], [-2.0863188902781884, 52.328701676212354], [-2.0863176587305965, 52.328702216525876], [-2.086316416100139, 52.32870309038646], [-2.0863155787866505, 52.32870412936698], [-2.0863151867284313, 52.328705497963504], [-2.08631394546932, 52.328746159713184], [-2.086229925824929, 52.3287829210093], [-2.0862283150529106, 52.32878388683861], [-2.0862275403458486, 52.32878467854102], [-2.0862270475387894, 52.32878555095148], [-2.0862110770252493, 52.328827196220544], [-2.086157734555375, 52.32883696174019], [-2.086155273812864, 52.328837747482005], [-2.086153673531358, 52.32883882747879], [-2.0861088395724887, 52.32888131014929], [-2.08606034920738, 52.328899129084775], [-2.086043330614494, 52.32887810896485], [-2.086122016346097, 52.32877791330963], [-2.086122611423148, 52.3287768106763], [-2.0861227250855583, 52.328775651757], [-2.0861222176619707, 52.32877429460883], [-2.086102229504566, 52.328743684134096], [-2.0861277810614154, 52.32873314333136], [-2.0861289772420855, 52.3287325275284], [-2.086129932506356, 52.328731770756825], [-2.0861307256961488, 52.328730678764316], [-2.086146371749641, 52.32869796100371], [-2.0861851607165884, 52.32868827536702], [-2.0861864789392985, 52.328687786232265], [-2.086187601692945, 52.32868713901691], [-2.0861889518395493, 52.32868571488228], [-2.0861893139629326, 52.328684795819385], [-2.0862036861206237, 52.32861813471379], [-2.0862611808117015, 52.328561643207074], [-2.086261981349101, 52.328560558401605], [-2.0862769531167453, 52.328492189609705], [-2.086303642254055, 52.3284811795488], [-2.086304791533678, 52.328480593443466], [-2.0863059152250303, 52.32847968101553], [-2.0863641725656583, 52.328399111362735], [-2.08636452938115, 52.328397734702506], [-2.0863646755856675, 52.328348632861015], [-2.0863902658211626, 52.32833776023816], [-2.086391389998989, 52.32833709953332], [-2.086392260070796, 52.32833630775555], [-2.08639306255418, 52.32833471860318], [-2.086392867084087, 52.32833305915383], [-2.086379879221018, 52.32830292456604], [-2.0864350335299497, 52.32827456679439], [-2.0864365120833206, 52.328273531839315], [-2.0864373053593224, 52.32827249198991], [-2.0864376534027698, 52.328271132419005], [-2.08643787204312, 52.32820433242719], [-2.086487436626163, 52.32817503116958], [-2.086529605130494, 52.32816646580685], [-2.086547569683133, 52.328176012782], [-2.086563632079455, 52.328231796810535], [-2.0865475080950033, 52.32825174980617], [-2.086510380961156, 52.32826084279004]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_de3262d4607506c2f79e1c560ae407c2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_89a723e63ac677cfddb9f72fc16f7d3d = $(`&lt;div id=&quot;html_89a723e63ac677cfddb9f72fc16f7d3d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 174&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 786.0 sqm&lt;br&gt;Intersecting area: 785.8 sqm&lt;/div&gt;`)[0];\n",
" popup_de3262d4607506c2f79e1c560ae407c2.setContent(html_89a723e63ac677cfddb9f72fc16f7d3d);\n",
" \n",
" \n",
"\n",
" geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5.bindPopup(popup_de3262d4607506c2f79e1c560ae407c2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ab9e64e61ca32fba6d0f41a71fa97ac5.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_45a5b4d44738828339f2f889a30ab641_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_45a5b4d44738828339f2f889a30ab641_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_45a5b4d44738828339f2f889a30ab641 = L.geoJson(null, {\n",
" onEachFeature: geo_json_45a5b4d44738828339f2f889a30ab641_onEachFeature,\n",
" \n",
" style: geo_json_45a5b4d44738828339f2f889a30ab641_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_45a5b4d44738828339f2f889a30ab641_add (data) {\n",
" geo_json_45a5b4d44738828339f2f889a30ab641\n",
" .addData(data);\n",
" }\n",
" geo_json_45a5b4d44738828339f2f889a30ab641_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085875918768338, 52.32886500027679], [-2.0858753556539784, 52.32886594465766], [-2.0858169413661725, 52.32905995870297], [-2.085765969407032, 52.32915346415513], [-2.0857586277847435, 52.3292577404355], [-2.0856857546146745, 52.329432329935265], [-2.0856856955122285, 52.32952676294422], [-2.0856376965805823, 52.32953813897638], [-2.0856190002760675, 52.329505534357615], [-2.0856178914264714, 52.32950428193099], [-2.08561619907949, 52.329503305028965], [-2.0856137149421983, 52.32950264246179], [-2.085589302496702, 52.32950003866185], [-2.0855888649220478, 52.32944683053593], [-2.0856297771614516, 52.32942610717666], [-2.0856310946739307, 52.32942523686994], [-2.0856319936251007, 52.32942418615933], [-2.085632412532355, 52.329423027918956], [-2.085632322192497, 52.32942184308018], [-2.085618551212457, 52.32937518590601], [-2.085642039525164, 52.32937193595687], [-2.085644108905109, 52.32937135458621], [-2.0856457887288, 52.32937041299122], [-2.0856469162844813, 52.329369201194226], [-2.0856473832033124, 52.32936783614231], [-2.0856472736008356, 52.32935367756887], [-2.085646544617975, 52.32935232597705], [-2.085645161574571, 52.329351181633065], [-2.0856432640988234, 52.32935036040773], [-2.085641041640407, 52.329349943081986], [-2.085590428912372, 52.32934891633165], [-2.085574049149387, 52.32931145441832], [-2.0855908487448143, 52.3292822924148], [-2.0856565498402184, 52.32927303690074], [-2.08565828928697, 52.3292725780352], [-2.0856600367051796, 52.32927169033236], [-2.0856610972428964, 52.32927072940797], [-2.0856617887546585, 52.32926940465201], [-2.085661802722389, 52.32923647357067], [-2.0856612010006934, 52.329234910612904], [-2.0856597412862046, 52.32923357843187], [-2.085658589703761, 52.32923298681281], [-2.0856572652672862, 52.32923255175116], [-2.0855746015868752, 52.32921173841344], [-2.0856044845054833, 52.3291659305558], [-2.085650663025722, 52.32916492604215], [-2.0856528369220966, 52.329164523498704], [-2.085654704861883, 52.32916373370158], [-2.0856560894105884, 52.329162631396784], [-2.0856568572623715, 52.3291613227639], [-2.0856569890024517, 52.32916039757719], [-2.0856568067238554, 52.329159474419285], [-2.0856563178466563, 52.329158594635864], [-2.085655545912247, 52.32915779596839], [-2.085632370254522, 52.3291405813167], [-2.085632231106235, 52.329033133349604], [-2.085714804724784, 52.329021270965896], [-2.085716201006817, 52.32902092562512], [-2.085717451696868, 52.32902041227262], [-2.0857185054800733, 52.32901975342597], [-2.0857193169085524, 52.32901897697858], [-2.0857198537676283, 52.32901811532821], [-2.0857201024826106, 52.3290169733942], [-2.0857205814137934, 52.32895066139327], [-2.085790452390476, 52.32891346574803], [-2.0857919177086965, 52.328912399340936], [-2.0857927794943882, 52.32891110862208], [-2.0857929142800398, 52.32890948669427], [-2.0857802730059056, 52.328850636216245], [-2.085883677413994, 52.32879655228604], [-2.085917387049244, 52.32880605910546], [-2.0859120798142796, 52.32882055876241], [-2.085875918768338, 52.32886500027679]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_45a5b4d44738828339f2f889a30ab641.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_2c08b4233d13a9b4ee24dae03aae71f8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_db106ee3ac1e169a9bdf5b541e5e82a8 = $(`&lt;div id=&quot;html_db106ee3ac1e169a9bdf5b541e5e82a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 175&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 644.0 sqm&lt;br&gt;Intersecting area: 643.8 sqm&lt;/div&gt;`)[0];\n",
" popup_2c08b4233d13a9b4ee24dae03aae71f8.setContent(html_db106ee3ac1e169a9bdf5b541e5e82a8);\n",
" \n",
" \n",
"\n",
" geo_json_45a5b4d44738828339f2f889a30ab641.bindPopup(popup_2c08b4233d13a9b4ee24dae03aae71f8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_45a5b4d44738828339f2f889a30ab641.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_475729041ed7618732bd8d34b231f781_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_475729041ed7618732bd8d34b231f781_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_475729041ed7618732bd8d34b231f781 = L.geoJson(null, {\n",
" onEachFeature: geo_json_475729041ed7618732bd8d34b231f781_onEachFeature,\n",
" \n",
" style: geo_json_475729041ed7618732bd8d34b231f781_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_475729041ed7618732bd8d34b231f781_add (data) {\n",
" geo_json_475729041ed7618732bd8d34b231f781\n",
" .addData(data);\n",
" }\n",
" geo_json_475729041ed7618732bd8d34b231f781_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0849807676209515, 52.32901952473548], [-2.084981003701181, 52.32902096209844], [-2.084994585358906, 52.329051984640145], [-2.0849390383802855, 52.32908927107473], [-2.0849381197961936, 52.329090035903775], [-2.084937484606813, 52.32909090211839], [-2.084937120453347, 52.329092305748034], [-2.08493737804274, 52.32909348148152], [-2.084950992744784, 52.32912413900387], [-2.0849357991813315, 52.32915156015227], [-2.0848956607433027, 52.329170283294225], [-2.0848941086681365, 52.329171270638696], [-2.0848931131962627, 52.32917249761602], [-2.0848927694892296, 52.329173851786145], [-2.0848926209283385, 52.32922257603375], [-2.084849918529751, 52.32926100570981], [-2.0848491600994197, 52.32926188459462], [-2.084827256165078, 52.32932457009511], [-2.0848271607931883, 52.329326104790056], [-2.084834044491697, 52.32935751605603], [-2.0847624725055596, 52.32941371312174], [-2.0847614693588663, 52.329414770193814], [-2.084761028004137, 52.329415709984744], [-2.0847315930984114, 52.329519725196306], [-2.084686412280292, 52.32954766773541], [-2.084666577550322, 52.32954473501232], [-2.084664643614492, 52.329544793940684], [-2.084662802720741, 52.329545160264104], [-2.0846611810090834, 52.32954580962399], [-2.0846601199300774, 52.32954650262833], [-2.0846590305827215, 52.329547758444434], [-2.0846586512823184, 52.329548921149765], [-2.084658137242459, 52.329573976281885], [-2.0846140682751524, 52.32961017278701], [-2.084579684411821, 52.32961122146314], [-2.084532805975534, 52.32959024144619], [-2.084561891823399, 52.32945536950788], [-2.0846333596474813, 52.32940821766737], [-2.0846348067545497, 52.32940681146009], [-2.084678844518447, 52.32928471818767], [-2.0847187559637073, 52.329273791575844], [-2.0847206047798985, 52.32927296854123], [-2.0847221151002664, 52.32927162522273], [-2.084722590297884, 52.32927073574816], [-2.0847227558014647, 52.32926980514533], [-2.08472311321607, 52.32921204740549], [-2.0847948574278394, 52.32914709558771], [-2.0847955660990247, 52.32914628865539], [-2.0847959914253256, 52.32914541000641], [-2.0848251913044784, 52.32905065304419], [-2.0848817803055546, 52.329012666476885], [-2.0848828555629493, 52.32901172802484], [-2.084883507958146, 52.32901065412559], [-2.0848836969722218, 52.32900974418105], [-2.084884930680215, 52.3289782164868], [-2.0849077177518045, 52.32897666453992], [-2.0849095218826594, 52.328976267669574], [-2.084910804853039, 52.32897575160589], [-2.0849118850420667, 52.32897508285762], [-2.084912879466099, 52.328974077935804], [-2.0849134128974374, 52.328972950180635], [-2.084927461911308, 52.3289165310953], [-2.0849280620695962, 52.32888826909621], [-2.084961675130778, 52.32886897257958], [-2.0849940425528333, 52.32887878449578], [-2.085023985754586, 52.32891524688366], [-2.085024165446032, 52.32895298398123], [-2.0849812858391115, 52.32901811649761], [-2.0849807676209515, 52.32901952473548]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_475729041ed7618732bd8d34b231f781.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_41b8674cf764a31de3652c8bb98b1968 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a434598f9f27ef5cbe36abd05fcff8aa = $(`&lt;div id=&quot;html_a434598f9f27ef5cbe36abd05fcff8aa&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 176&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 779.0 sqm&lt;br&gt;Intersecting area: 779.1 sqm&lt;/div&gt;`)[0];\n",
" popup_41b8674cf764a31de3652c8bb98b1968.setContent(html_a434598f9f27ef5cbe36abd05fcff8aa);\n",
" \n",
" \n",
"\n",
" geo_json_475729041ed7618732bd8d34b231f781.bindPopup(popup_41b8674cf764a31de3652c8bb98b1968)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_475729041ed7618732bd8d34b231f781.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_93a7ea9f4c2b0005d26f7b7118bf946a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_93a7ea9f4c2b0005d26f7b7118bf946a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_93a7ea9f4c2b0005d26f7b7118bf946a = L.geoJson(null, {\n",
" onEachFeature: geo_json_93a7ea9f4c2b0005d26f7b7118bf946a_onEachFeature,\n",
" \n",
" style: geo_json_93a7ea9f4c2b0005d26f7b7118bf946a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_93a7ea9f4c2b0005d26f7b7118bf946a_add (data) {\n",
" geo_json_93a7ea9f4c2b0005d26f7b7118bf946a\n",
" .addData(data);\n",
" }\n",
" geo_json_93a7ea9f4c2b0005d26f7b7118bf946a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.08560208256497, 52.32970033261969], [-2.085600404803302, 52.32970082829792], [-2.0855989857788666, 52.329701567427314], [-2.085597603153, 52.329702916957245], [-2.085563937063783, 52.329754138757906], [-2.085502187620091, 52.329742474773454], [-2.085530300041107, 52.32968540800566], [-2.0855306046294357, 52.32968432356978], [-2.0855305715335897, 52.32966797583225], [-2.0855300728438197, 52.3296665755196], [-2.0855288803851284, 52.32966534203649], [-2.0855277565255648, 52.32966467577904], [-2.0855264290030093, 52.32966417059378], [-2.085487557049093, 52.32965270305733], [-2.085502843751142, 52.3296333145023], [-2.0855191440292837, 52.32963268954087], [-2.0855206566262185, 52.32963253291119], [-2.085522418099795, 52.32963207313146], [-2.085523925206849, 52.32963135012617], [-2.085525255398953, 52.32963020470669], [-2.085525876902624, 52.32962909486828], [-2.085526021831323, 52.32962815978242], [-2.0855258483438086, 52.329627226728206], [-2.08552535943617, 52.32962633615432], [-2.0855245816114834, 52.3296255267046], [-2.0855015100935734, 52.329608391066905], [-2.0855151791442994, 52.32957810038523], [-2.085564945001919, 52.32956980405776], [-2.085597430486627, 52.329594786668615], [-2.0855985191479314, 52.329595462836465], [-2.085599815876378, 52.32959598332595], [-2.0856024067778343, 52.329596456126694], [-2.085656550694765, 52.32959991934133], [-2.085656339251742, 52.329689220859166], [-2.08560208256497, 52.32970033261969]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_93a7ea9f4c2b0005d26f7b7118bf946a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a5474edab0764afbd1e38f662cbdb2d0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_969557056f084115c498c5cae62a30fb = $(`&lt;div id=&quot;html_969557056f084115c498c5cae62a30fb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 177&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 148.0 sqm&lt;br&gt;Intersecting area: 147.9 sqm&lt;/div&gt;`)[0];\n",
" popup_a5474edab0764afbd1e38f662cbdb2d0.setContent(html_969557056f084115c498c5cae62a30fb);\n",
" \n",
" \n",
"\n",
" geo_json_93a7ea9f4c2b0005d26f7b7118bf946a.bindPopup(popup_a5474edab0764afbd1e38f662cbdb2d0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_93a7ea9f4c2b0005d26f7b7118bf946a.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_7469cd4cdced2e5b7550394c6eb3cc8c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7469cd4cdced2e5b7550394c6eb3cc8c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7469cd4cdced2e5b7550394c6eb3cc8c = L.geoJson(null, {\n",
" onEachFeature: geo_json_7469cd4cdced2e5b7550394c6eb3cc8c_onEachFeature,\n",
" \n",
" style: geo_json_7469cd4cdced2e5b7550394c6eb3cc8c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7469cd4cdced2e5b7550394c6eb3cc8c_add (data) {\n",
" geo_json_7469cd4cdced2e5b7550394c6eb3cc8c\n",
" .addData(data);\n",
" }\n",
" geo_json_7469cd4cdced2e5b7550394c6eb3cc8c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.085627832232626, 52.329895531390505], [-2.0856001441899066, 52.32991637099969], [-2.0855991262986153, 52.32991738672991], [-2.085598581161667, 52.329918529779164], [-2.0855842456510207, 52.33011169083259], [-2.0855551880330956, 52.330178626823624], [-2.0855552711193366, 52.33017985661954], [-2.0855694987090883, 52.33022805797885], [-2.0855430329016573, 52.330239848953376], [-2.0855412583399553, 52.3302411403373], [-2.085540450948527, 52.33024250113891], [-2.0855258748578724, 52.33035472457195], [-2.0854981957425713, 52.33037504541369], [-2.085496858827103, 52.330376521671425], [-2.0854813718029668, 52.330436635028], [-2.0853962141199505, 52.33049172394921], [-2.085394908880461, 52.33049289182066], [-2.085394399942248, 52.3304937849146], [-2.085394206579637, 52.330494723631965], [-2.0853931641355987, 52.330526338388054], [-2.0853453023413078, 52.3305363800572], [-2.085313298583364, 52.33050352521926], [-2.0853118334664846, 52.330502448359], [-2.0853098979388798, 52.33050169997683], [-2.085307681433657, 52.330501353660914], [-2.0853053967939967, 52.330501441622836], [-2.085243479771857, 52.330509918348234], [-2.0852119882777207, 52.33050068303852], [-2.085209647064084, 52.33047141537212], [-2.0852569880876874, 52.33045996267446], [-2.0852746958683377, 52.33047070841613], [-2.0852763786340436, 52.33047126638825], [-2.085277859744911, 52.33047150895082], [-2.0852797733479673, 52.330471539030874], [-2.0852812712264646, 52.33047134375608], [-2.08528331560783, 52.330470705772], [-2.085284938149362, 52.330469712078504], [-2.085313986128975, 52.330442335694805], [-2.0853556909438526, 52.33044166987664], [-2.0853572006093164, 52.330441498864516], [-2.0853589503422914, 52.33044102201696], [-2.0853604383683804, 52.33044028374506], [-2.0853615649964667, 52.33043933446162], [-2.0853623328390314, 52.33043800875215], [-2.0853623932273715, 52.33043660354115], [-2.0853564826585327, 52.33041698493683], [-2.0853826901531574, 52.33040585227134], [-2.0853840444488214, 52.33040501430237], [-2.085384842643843, 52.33040420640581], [-2.0853854812895145, 52.330402849324294], [-2.08539243505369, 52.330368439727316], [-2.085392461091938, 52.33036748404811], [-2.0853857303523418, 52.330338818316235], [-2.0853853529274793, 52.3303379060853], [-2.085384674806211, 52.33033706150031], [-2.085383449222889, 52.3303361579735], [-2.085381883623245, 52.330335480348964], [-2.08538008376859, 52.330335074398], [-2.08537817442507, 52.33033496790327], [-2.0853439053900167, 52.330338007148576], [-2.085341521368105, 52.33031777375623], [-2.0853599856718152, 52.330306905623154], [-2.085406123430367, 52.33031077302028], [-2.085408305465138, 52.330310753459], [-2.0854077147041634, 52.33031183180885], [-2.0854022577616087, 52.33032877418127], [-2.085402275706985, 52.3303297073483], [-2.085402738661932, 52.330330837979666], [-2.085403660718059, 52.330331857698674], [-2.085404687779892, 52.33033254650343], [-2.085406959536682, 52.330333389932775], [-2.0854091905929213, 52.330333676897624], [-2.0854368707990485, 52.330333656823015], [-2.0854391154063965, 52.33033336301559], [-2.085440797468233, 52.33033280170482], [-2.085442185572737, 52.33033199337996], [-2.08544333074963, 52.330330774378986], [-2.085443814820863, 52.33032916298434], [-2.0854437786197613, 52.33031574695049], [-2.0854432858135135, 52.330314355627195], [-2.085442108023487, 52.33031312752555], [-2.0854406859796493, 52.33031231943867], [-2.0854385980753527, 52.3303116925386], [-2.085416681339548, 52.330308346102655], [-2.0854151666956855, 52.33030821594609], [-2.0854137228493226, 52.33030827363105], [-2.085414281510565, 52.33030729149723], [-2.085414455773029, 52.33030634380413], [-2.0854150728126593, 52.33023683930123], [-2.0854828635603453, 52.33022608999982], [-2.085485230498997, 52.33022531692222], [-2.0854869875504964, 52.33022407410478], [-2.0854876212898326, 52.33022321508179], [-2.0854879482126214, 52.33022229424636], [-2.0855019636120167, 52.33014412066959], [-2.085501605283734, 52.33014246044152], [-2.0855005227908756, 52.33014118461859], [-2.085459539253412, 52.3301109749606], [-2.0855430452741577, 52.33007332995458], [-2.0855444201596467, 52.33007252253403], [-2.0855452462644752, 52.330071736191826], [-2.085545787523557, 52.330070861953004], [-2.08554602345385, 52.33006993849135], [-2.0855456494231284, 52.329919106748896], [-2.085545239708279, 52.32991818824874], [-2.0855445249040434, 52.32991734368697], [-2.0855435344420377, 52.32991660990912], [-2.0855423153378556, 52.32991602013852], [-2.0854888071065, 52.329897728888746], [-2.085487165285852, 52.329877354714604], [-2.0855067832210397, 52.329857621388044], [-2.0855668231983784, 52.32987378980048], [-2.085569498705831, 52.32987399552931], [-2.0855717564666416, 52.32987368822332], [-2.0855737478291165, 52.32987296486135], [-2.0855754681151972, 52.32987169330013], [-2.0855761762164398, 52.329870593284085], [-2.0855886222331654, 52.329839940279896], [-2.085588834692754, 52.32983901683088], [-2.0855887316350423, 52.32983808642206], [-2.0855883175535896, 52.32983718950097], [-2.085587389646833, 52.32983617338422], [-2.0855863611277434, 52.32983548638258], [-2.0855847853212834, 52.329834834840774], [-2.085546179512278, 52.32982449000403], [-2.085545580804895, 52.32977974715979], [-2.0855846838196372, 52.32977633664671], [-2.085586831191276, 52.3297758577063], [-2.0855886329810764, 52.32977499693373], [-2.085589553075819, 52.32977425187818], [-2.0855902029736133, 52.32977340542904], [-2.0856089383029985, 52.32974048232091], [-2.0856417187779837, 52.3297434414362], [-2.0856277676620594, 52.32980536792105], [-2.085627832232626, 52.329895531390505]], [[-2.0853995203281683, 52.33044086045413], [-2.0853983704410117, 52.33043964311759], [-2.085396334513332, 52.330438581054615], [-2.085394191081983, 52.330438078259945], [-2.0853926647565535, 52.33043798137325], [-2.0853803940978923, 52.330438015440976], [-2.0853778211136276, 52.33043848569223], [-2.085375962018628, 52.33043932043037], [-2.0853749978622225, 52.33044005652656], [-2.0853741796206138, 52.33044112245918], [-2.085373842883633, 52.33044228243506], [-2.085374008033853, 52.33044345643386], [-2.0853791918646833, 52.33045300475257], [-2.0853799007811142, 52.33045383762928], [-2.0853808750940557, 52.33045456333083], [-2.085382744719337, 52.33045538008351], [-2.085389767615806, 52.330457518253446], [-2.085391225325598, 52.33045779949044], [-2.0853931287585676, 52.330457882617324], [-2.0853950022527004, 52.330457662796576], [-2.0853967211073234, 52.33045715360508], [-2.085397904185891, 52.33045656119115], [-2.0853992417635094, 52.33045542476173], [-2.085399993005792, 52.330453859025816], [-2.085399999899312, 52.33044223560429], [-2.0853995203281683, 52.33044086045413]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7469cd4cdced2e5b7550394c6eb3cc8c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7539eda350c19a1771ef84ac1c842252 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a5a84659d81e72deb3113fb961957658 = $(`&lt;div id=&quot;html_a5a84659d81e72deb3113fb961957658&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 178&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 548.0 sqm&lt;br&gt;Intersecting area: 548.4 sqm&lt;/div&gt;`)[0];\n",
" popup_7539eda350c19a1771ef84ac1c842252.setContent(html_a5a84659d81e72deb3113fb961957658);\n",
" \n",
" \n",
"\n",
" geo_json_7469cd4cdced2e5b7550394c6eb3cc8c.bindPopup(popup_7539eda350c19a1771ef84ac1c842252)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7469cd4cdced2e5b7550394c6eb3cc8c.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_f4d47ffa3b3bdac069886b7318d9f227_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f4d47ffa3b3bdac069886b7318d9f227_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f4d47ffa3b3bdac069886b7318d9f227 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f4d47ffa3b3bdac069886b7318d9f227_onEachFeature,\n",
" \n",
" style: geo_json_f4d47ffa3b3bdac069886b7318d9f227_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f4d47ffa3b3bdac069886b7318d9f227_add (data) {\n",
" geo_json_f4d47ffa3b3bdac069886b7318d9f227\n",
" .addData(data);\n",
" }\n",
" geo_json_f4d47ffa3b3bdac069886b7318d9f227_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0820606964421886, 52.3282559673664], [-2.0820598291665426, 52.32825672314358], [-2.0820592335231582, 52.3282575713362], [-2.08205893145933, 52.32825847685817], [-2.0820564733279037, 52.328290734483836], [-2.0819938140414314, 52.328291672646706], [-2.081991956797177, 52.32829191038139], [-2.0819905811401287, 52.328292306908935], [-2.0819890975043323, 52.32829303075321], [-2.0819881597467833, 52.3282937641072], [-2.0819871779446077, 52.32829527154836], [-2.0819870358553287, 52.32829619853451], [-2.081987207785792, 52.32829712350588], [-2.0819999280687713, 52.32832541936994], [-2.081968478115816, 52.328345299699194], [-2.0819348410531644, 52.32834501114711], [-2.081904033410965, 52.32832034551018], [-2.081902240028308, 52.32831941357275], [-2.081900057053587, 52.32831887748033], [-2.081898495571364, 52.32831876888268], [-2.081759371924353, 52.32831828029051], [-2.081712949934781, 52.32826254994189], [-2.0817425815417314, 52.32819804902201], [-2.0817610408269545, 52.32818764174374], [-2.08192517777155, 52.32818313147443], [-2.081927797787696, 52.32818275655799], [-2.0819291380914042, 52.3281822872392], [-2.081930288801859, 52.32818165712365], [-2.081931197156223, 52.32818089322526], [-2.081931826518902, 52.32818002972716], [-2.0819321461594087, 52.328179104413714], [-2.081932142938874, 52.32817815954963], [-2.0819184385722496, 52.32810020612867], [-2.0819803678860036, 52.32808875178384], [-2.0820422797642877, 52.32811615213587], [-2.082043807582349, 52.32812896119757], [-2.082044230393606, 52.32812986261785], [-2.0820449494647217, 52.32813069011494], [-2.082045933937171, 52.32813140864384], [-2.0820474700926552, 52.328132106108555], [-2.0820500007926817, 52.32813262667766], [-2.082052668328476, 52.32813255739115], [-2.082098030385426, 52.328124653066034], [-2.0821153270523776, 52.32813380740686], [-2.0821035456060377, 52.3281741087672], [-2.082103458288594, 52.32817528654369], [-2.0821038727548746, 52.32817643699744], [-2.082105235633218, 52.32817785380122], [-2.0821063637613513, 52.32817849671216], [-2.0821076867523614, 52.32817898036335], [-2.082145457812901, 52.32818825437914], [-2.082159996637877, 52.328209668765545], [-2.0820617972611415, 52.32825533548387], [-2.0820606964421886, 52.3282559673664]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f4d47ffa3b3bdac069886b7318d9f227.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_39f5289bec91c80eb0f8a25762b2e6e6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_27e739529ec59871ba129fb771a47aa9 = $(`&lt;div id=&quot;html_27e739529ec59871ba129fb771a47aa9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 179&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 469.0 sqm&lt;br&gt;Intersecting area: 469.1 sqm&lt;/div&gt;`)[0];\n",
" popup_39f5289bec91c80eb0f8a25762b2e6e6.setContent(html_27e739529ec59871ba129fb771a47aa9);\n",
" \n",
" \n",
"\n",
" geo_json_f4d47ffa3b3bdac069886b7318d9f227.bindPopup(popup_39f5289bec91c80eb0f8a25762b2e6e6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f4d47ffa3b3bdac069886b7318d9f227.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e = L.geoJson(null, {\n",
" onEachFeature: geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e_onEachFeature,\n",
" \n",
" style: geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e_add (data) {\n",
" geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e\n",
" .addData(data);\n",
" }\n",
" geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0823171487261978, 52.32891110956053], [-2.082258154332894, 52.328875106403316], [-2.0822567093393536, 52.32882483875813], [-2.082256325293208, 52.328823481507214], [-2.082255504569778, 52.328822448206154], [-2.0822545553133516, 52.328821735947606], [-2.082226668215977, 52.32880468844313], [-2.0822134849109544, 52.32879189471563], [-2.0822310968913125, 52.32878107980479], [-2.0822943089431916, 52.32880003192572], [-2.0823238308363003, 52.3288273810303], [-2.082324227357708, 52.3288582881334], [-2.0823247601565904, 52.32885993476728], [-2.0823257305794014, 52.32886098054512], [-2.0823271203056386, 52.328861830047586], [-2.0823531954661196, 52.32887269174544], [-2.0823507780768047, 52.32891096647703], [-2.0823171487261978, 52.32891110956053]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8540c9e91e9cebcf5096d8af24752493 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bbf2627109117d1cc8bd7a0b547c656a = $(`&lt;div id=&quot;html_bbf2627109117d1cc8bd7a0b547c656a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 180&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 63.7 sqm&lt;/div&gt;`)[0];\n",
" popup_8540c9e91e9cebcf5096d8af24752493.setContent(html_bbf2627109117d1cc8bd7a0b547c656a);\n",
" \n",
" \n",
"\n",
" geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e.bindPopup(popup_8540c9e91e9cebcf5096d8af24752493)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b312fad1d9990d9d07c5a3d0fbe7d13e.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_0499235124efc0ffb09ed9022a0c1fa4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0499235124efc0ffb09ed9022a0c1fa4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0499235124efc0ffb09ed9022a0c1fa4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0499235124efc0ffb09ed9022a0c1fa4_onEachFeature,\n",
" \n",
" style: geo_json_0499235124efc0ffb09ed9022a0c1fa4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0499235124efc0ffb09ed9022a0c1fa4_add (data) {\n",
" geo_json_0499235124efc0ffb09ed9022a0c1fa4\n",
" .addData(data);\n",
" }\n",
" geo_json_0499235124efc0ffb09ed9022a0c1fa4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.084380671366354, 52.33001808131489], [-2.084336760819041, 52.33013074815489], [-2.084299612628677, 52.330132939585475], [-2.0842975093911655, 52.33013349488838], [-2.0842957883895803, 52.33013441941039], [-2.084294616745911, 52.330135624937064], [-2.0842941449285552, 52.33013675893394], [-2.084294313858712, 52.33013838963613], [-2.0843074055179343, 52.33017031611662], [-2.0843080869663266, 52.33017138006815], [-2.0843089336439466, 52.33017213373879], [-2.0843103144941333, 52.33017290320994], [-2.084336933454645, 52.330184320572656], [-2.0843371712345244, 52.33024742164347], [-2.0843215056703, 52.33027551461574], [-2.0842838817816873, 52.330276869394574], [-2.084282364744977, 52.330277023315155], [-2.0842805958963497, 52.33027748128114], [-2.084279082883356, 52.3302782042747], [-2.084277745302927, 52.33027935148147], [-2.084266109388605, 52.33029365061286], [-2.0842653728098153, 52.330295227121134], [-2.084265441081005, 52.33029640119082], [-2.084266171474205, 52.330297735711085], [-2.0842672738812853, 52.33029869777176], [-2.084268744219853, 52.33029945099646], [-2.084321315952462, 52.33031760682014], [-2.0843226274790587, 52.33034665318276], [-2.084307269230972, 52.33038355811457], [-2.0842524164578435, 52.330411299733484], [-2.084250883550311, 52.330412366169526], [-2.0842499703596755, 52.330413672196215], [-2.0842498076871685, 52.330415324711346], [-2.0842634498489687, 52.330481980801856], [-2.0842151665634834, 52.33050119589991], [-2.0841821936604714, 52.330480654414366], [-2.0841965664384943, 52.3303369242777], [-2.0842252207677183, 52.3302890166468], [-2.084225664236896, 52.33028763363843], [-2.0841963322410337, 52.33013921848843], [-2.0842388333059954, 52.33010066423689], [-2.08423981547938, 52.330099367150424], [-2.0842400905724, 52.33009818654201], [-2.084240769008102, 52.33004838490243], [-2.0842811205260423, 52.330029261767], [-2.084282496811742, 52.33002840671601], [-2.08428358908083, 52.330027133822554], [-2.0842839679049465, 52.33002571400177], [-2.0842841149191504, 52.3299773646528], [-2.08430972860242, 52.32996648437365], [-2.0843115209020335, 52.329965249637695], [-2.084312175205984, 52.329964391506486], [-2.0843125212275364, 52.329963467964184], [-2.084312346392435, 52.32996181928714], [-2.0843002507534627, 52.32993275097649], [-2.0843688335183552, 52.3299388169935], [-2.0843704107652483, 52.3299386944985], [-2.0844224676700516, 52.32993105149476], [-2.0844390453702033, 52.32996881459478], [-2.0843818950459596, 52.33001646310153], [-2.084380671366354, 52.33001808131489]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0499235124efc0ffb09ed9022a0c1fa4.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_32c5ac36ed2f8b2cd8bbef259f7f1b67 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2b4325207b1705643ee6e4e06a404a0c = $(`&lt;div id=&quot;html_2b4325207b1705643ee6e4e06a404a0c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 181&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 446.0 sqm&lt;br&gt;Intersecting area: 445.5 sqm&lt;/div&gt;`)[0];\n",
" popup_32c5ac36ed2f8b2cd8bbef259f7f1b67.setContent(html_2b4325207b1705643ee6e4e06a404a0c);\n",
" \n",
" \n",
"\n",
" geo_json_0499235124efc0ffb09ed9022a0c1fa4.bindPopup(popup_32c5ac36ed2f8b2cd8bbef259f7f1b67)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0499235124efc0ffb09ed9022a0c1fa4.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" function geo_json_ca0aa47da2eb5939be91fad9df004b73_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ca0aa47da2eb5939be91fad9df004b73_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ca0aa47da2eb5939be91fad9df004b73 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ca0aa47da2eb5939be91fad9df004b73_onEachFeature,\n",
" \n",
" style: geo_json_ca0aa47da2eb5939be91fad9df004b73_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ca0aa47da2eb5939be91fad9df004b73_add (data) {\n",
" geo_json_ca0aa47da2eb5939be91fad9df004b73\n",
" .addData(data);\n",
" }\n",
" geo_json_ca0aa47da2eb5939be91fad9df004b73_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.0851745068565832, 52.33070935895027], [-2.0850860037383643, 52.330850495161556], [-2.0850548419822523, 52.33086935930469], [-2.0850223199500104, 52.33086918949475], [-2.085004715652359, 52.33082683773639], [-2.0850041709645124, 52.33082593911147], [-2.0850030714049046, 52.33082494828661], [-2.084960938282879, 52.33079612377604], [-2.0849605715101047, 52.33076791732076], [-2.085009615022746, 52.33072968801887], [-2.085027281952713, 52.330731375309576], [-2.0850417707189988, 52.33076222097523], [-2.0850427255145543, 52.33076347981132], [-2.08504397158468, 52.330764350961076], [-2.085046233063906, 52.330765183618986], [-2.085048829538731, 52.33076547302322], [-2.0850713533911907, 52.33076545046432], [-2.085073570153994, 52.33076516477327], [-2.0850758284210325, 52.330764327955436], [-2.0850774577765536, 52.33076305646306], [-2.0850782472298697, 52.330761514077885], [-2.085091745977209, 52.330694254117255], [-2.0850913001281124, 52.330692861858424], [-2.0850899179936673, 52.33069144061091], [-2.0850877897049105, 52.33069042266114], [-2.0850852060748157, 52.33068994445106], [-2.0850223506560472, 52.33068982351786], [-2.084976890121717, 52.330671255625525], [-2.085004297484624, 52.33062386294627], [-2.0850412094092676, 52.330622995717725], [-2.085070986668224, 52.33066410073534], [-2.0850718231670804, 52.33066489126621], [-2.0850729088887654, 52.330665557555434], [-2.085074198295318, 52.33066607086253], [-2.0850756341106527, 52.33066640785693], [-2.085077537685211, 52.330666560212926], [-2.0851007541173763, 52.330666537148154], [-2.085103038341874, 52.3306662325285], [-2.085105048811904, 52.330665503772146], [-2.085106584613549, 52.330664423840794], [-2.0851074874913365, 52.330663103428336], [-2.0851117964823502, 52.33064891739259], [-2.085157510145684, 52.33065261078237], [-2.0851597890248583, 52.33065257587303], [-2.085161942347167, 52.33065211401498], [-2.085163487725539, 52.33065143324231], [-2.0851646951638156, 52.330650532451], [-2.08516536270166, 52.33064969318491], [-2.085165777262427, 52.330648554724846], [-2.0851673792670966, 52.33062242178289], [-2.0852336655475256, 52.33060431254665], [-2.0852358913132134, 52.330603369662406], [-2.085237408939208, 52.330601996663], [-2.0852379844558633, 52.33060061804797], [-2.085237827631068, 52.3305991986119], [-2.085224607274887, 52.33057095471353], [-2.085250147438793, 52.33055918245582], [-2.0852514620379505, 52.33055830046538], [-2.085252470618791, 52.33055700964458], [-2.0852527677029222, 52.33055582991392], [-2.085252548232134, 52.330554643368096], [-2.0852416444611506, 52.33053298760154], [-2.0852882952772203, 52.33053188939202], [-2.085306702909124, 52.33054864007037], [-2.085334201129961, 52.33058122756633], [-2.085175530445596, 52.33070823893339], [-2.0851745068565832, 52.33070935895027]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ca0aa47da2eb5939be91fad9df004b73.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_fc39e40b683ad12acab6823343c9fbc8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6f7658df091978b4a21285d5b8d70a64 = $(`&lt;div id=&quot;html_6f7658df091978b4a21285d5b8d70a64&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 182&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 301.0 sqm&lt;br&gt;Intersecting area: 300.6 sqm&lt;/div&gt;`)[0];\n",
" popup_fc39e40b683ad12acab6823343c9fbc8.setContent(html_6f7658df091978b4a21285d5b8d70a64);\n",
" \n",
" \n",
"\n",
" geo_json_ca0aa47da2eb5939be91fad9df004b73.bindPopup(popup_fc39e40b683ad12acab6823343c9fbc8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ca0aa47da2eb5939be91fad9df004b73.addTo(feature_group_9c9af1df436743cde04fb07eb9a06882);\n",
" \n",
" \n",
" feature_group_9c9af1df436743cde04fb07eb9a06882.addTo(map_dc31576c89db5e6cdebcc198f6113379);\n",
" \n",
" \n",
" var layer_control_aa38bee05cea7479b876d88478bf3ebf_layers = {\n",
" base_layers : {\n",
" &quot;cartodbpositron&quot; : tile_layer_5c6177f27aa5b83878aff6a7fd53ab5c,\n",
" },\n",
" overlays : {\n",
" &quot;expanded postcode boundary (+50m)&quot; : geo_json_5f605b1820c06b210a64198f478f14be,\n",
" &quot;original postcode boundary&quot; : geo_json_75efb32b311f465ce8dc20ad0cf461c3,\n",
" &quot;foliage boundary&quot; : feature_group_27f49a14cab78c4e3bd69076ec128036,\n",
" &quot;intersection area&quot; : feature_group_9c9af1df436743cde04fb07eb9a06882,\n",
" },\n",
" };\n",
" let layer_control_aa38bee05cea7479b876d88478bf3ebf = L.control.layers(\n",
" layer_control_aa38bee05cea7479b876d88478bf3ebf_layers.base_layers,\n",
" layer_control_aa38bee05cea7479b876d88478bf3ebf_layers.overlays,\n",
" {\n",
" &quot;position&quot;: &quot;topright&quot;,\n",
" &quot;collapsed&quot;: true,\n",
" &quot;autoZIndex&quot;: true,\n",
"}\n",
" ).addTo(map_dc31576c89db5e6cdebcc198f6113379);\n",
"\n",
" \n",
"&lt;/script&gt;\n",
"&lt;/html&gt;\" title=\"B61 7EF polygon intersection map\"></iframe>\n",
" </section>\n",
" \n",
" <section class='map-card'>\n",
" <h2>B94 6HR: 4.3% | intersection 2281 sqm | +50m</h2>\n",
" <iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
" \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_b4a48d5a921e6663ace479ace1cb7741 {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 430.0px;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" .leaflet-container { font-size: 1rem; }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;style&gt;html, body {\n",
" width: 100%;\n",
" height: 100%;\n",
" margin: 0;\n",
" padding: 0;\n",
" }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;style&gt;#map {\n",
" position:absolute;\n",
" top:0;\n",
" bottom:0;\n",
" right:0;\n",
" left:0;\n",
" }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
"\n",
" \n",
"&lt;/head&gt;\n",
"&lt;body&gt;\n",
" \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_b4a48d5a921e6663ace479ace1cb7741&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt;\n",
" \n",
" \n",
" var map_b4a48d5a921e6663ace479ace1cb7741 = L.map(\n",
" &quot;map_b4a48d5a921e6663ace479ace1cb7741&quot;,\n",
" {\n",
" center: [52.34565394037748, -1.7317494044190347],\n",
" crs: L.CRS.EPSG3857,\n",
" ...{\n",
" &quot;zoom&quot;: 18,\n",
" &quot;zoomControl&quot;: true,\n",
" &quot;preferCanvas&quot;: false,\n",
"}\n",
"\n",
" }\n",
" );\n",
" L.control.scale().addTo(map_b4a48d5a921e6663ace479ace1cb7741);\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_a4a64da2cef1ae0900fb4a0ffd0850f7 = L.tileLayer(\n",
" &quot;https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png&quot;,\n",
" {\n",
" &quot;minZoom&quot;: 0,\n",
" &quot;maxZoom&quot;: 20,\n",
" &quot;maxNativeZoom&quot;: 20,\n",
" &quot;noWrap&quot;: false,\n",
" &quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;https://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\&quot;https://carto.com/attributions\\&quot;\\u003eCARTO\\u003c/a\\u003e&quot;,\n",
" &quot;subdomains&quot;: &quot;abcd&quot;,\n",
" &quot;detectRetina&quot;: false,\n",
" &quot;tms&quot;: false,\n",
" &quot;opacity&quot;: 1,\n",
"}\n",
"\n",
" );\n",
" \n",
" \n",
" tile_layer_a4a64da2cef1ae0900fb4a0ffd0850f7.addTo(map_b4a48d5a921e6663ace479ace1cb7741);\n",
" \n",
" \n",
" function geo_json_0b1e35f6485e6d1f56aa64ac197f26d2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#f97316&quot;, &quot;fillColor&quot;: &quot;#fed7aa&quot;, &quot;fillOpacity&quot;: 0.18, &quot;weight&quot;: 3};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0b1e35f6485e6d1f56aa64ac197f26d2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0b1e35f6485e6d1f56aa64ac197f26d2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0b1e35f6485e6d1f56aa64ac197f26d2_onEachFeature,\n",
" \n",
" style: geo_json_0b1e35f6485e6d1f56aa64ac197f26d2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0b1e35f6485e6d1f56aa64ac197f26d2_add (data) {\n",
" geo_json_0b1e35f6485e6d1f56aa64ac197f26d2\n",
" .addData(data);\n",
" }\n",
" geo_json_0b1e35f6485e6d1f56aa64ac197f26d2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.732229512634672, 52.34462881273999], [-1.73230477464858, 52.34461503854519], [-1.7323820091660949, 52.34460626929367], [-1.7329450035979101, 52.344561269735244], [-1.7330172452855077, 52.344557705499966], [-1.7330897087308423, 52.34455852227986], [-1.7331616873599007, 52.344563712110705], [-1.7332324793255593, 52.34457322438767], [-1.7333013943505347, 52.344586966358776], [-1.7333677604575568, 52.34460480402905], [-1.7334309305211892, 52.34462656346712], [-1.7334902885774306, 52.344652032500974], [-1.7335452558295776, 52.344680962786654], [-1.73359529629183, 52.34471307222964], [-1.733639922015592, 52.34474804773533], [-1.7336786978475365, 52.34478554826179], [-1.7337112456730017, 52.344825208144975], [-1.733737248103382, 52.34486664066421], [-1.73375645157149, 52.34490944181283], [-1.733768668804733, 52.344953194237576], [-1.7337737806519304, 52.344997471308076], [-1.7337717372459547, 52.345041841276846], [-1.7336587518455935, 52.34593184199168], [-1.7336500393223824, 52.34597425197614], [-1.7336347886198384, 52.3460159633975], [-1.7336131376241526, 52.34605659908052], [-1.7335852820976025, 52.34609579157624], [-1.7335514739089453, 52.34613318648487], [-1.7335120187563804, 52.34616844566045], [-1.7334672734036507, 52.346201250268805], [-1.7334176424542906, 52.34623130367071], [-1.7333635746931333, 52.34625833410444], [-1.7333055590282078, 52.34628209714344], [-1.7332441200696687, 52.346302377906575], [-1.7331798133857845, 52.34631899300158], [-1.7311147963371742, 52.34678299736362], [-1.7310453009792761, 52.346796257512786], [-1.7309740027041212, 52.34680523687267], [-1.7309016027424082, 52.34680984712968], [-1.7308288131610876, 52.34681004294111], [-1.7307563498594296, 52.34680582238117], [-1.7306849255273846, 52.34679722695986], [-1.7306152426355141, 52.34678434121471], [-1.7305479865254887, 52.34676729187931], [-1.7304838186691147, 52.34674624663669], [-1.7304233701622336, 52.34672141247003], [-1.7303672355174924, 52.346693033626735], [-1.730315966817055, 52.34666138921613], [-1.7302700682827772, 52.3466267904641], [-1.7302299913172452, 52.34658957765205], [-1.7301961300644575, 52.346550116769976], [-1.7299621337178785, 52.346241115466064], [-1.7299330365375245, 52.34619661631496], [-1.7299319224211873, 52.346194190692536], [-1.7299276411396263, 52.34619024430148], [-1.7298926546734108, 52.34614947976085], [-1.7295766596418778, 52.3457304779988], [-1.729549835817565, 52.34568980554084], [-1.7295296127469388, 52.34564772555005], [-1.7295161829911072, 52.34560463874551], [-1.7295096744185567, 52.34556095543281], [-1.7295101489882272, 52.34551709159666], [-1.72951760216027, 52.34547346493972], [-1.7295319629400614, 52.34543049090478], [-1.7295530945550321, 52.345388578718776], [-1.7295807957578382, 52.345348127495825], [-1.7296148027434248, 52.345309522436864], [-1.7296547916617162, 52.34527313116151], [-1.7297003817019798, 52.345239300207616], [-1.7297511387194677, 52.345208351731486], [-1.7298065793697999, 52.34518058044028], [-1.7298661757117122, 52.345156250785905], [-1.7299293602343275, 52.345135594446894], [-1.7299955312611013, 52.345118808122436], [-1.732229512634672, 52.34462881273999]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0b1e35f6485e6d1f56aa64ac197f26d2.addTo(map_b4a48d5a921e6663ace479ace1cb7741);\n",
" \n",
" \n",
" function geo_json_2e55dbb26d079cd30718ebf0346389b9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#2563eb&quot;, &quot;fillColor&quot;: &quot;#93c5fd&quot;, &quot;fillOpacity&quot;: 0.12, &quot;weight&quot;: 3};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2e55dbb26d079cd30718ebf0346389b9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2e55dbb26d079cd30718ebf0346389b9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2e55dbb26d079cd30718ebf0346389b9_onEachFeature,\n",
" \n",
" style: geo_json_2e55dbb26d079cd30718ebf0346389b9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2e55dbb26d079cd30718ebf0346389b9_add (data) {\n",
" geo_json_2e55dbb26d079cd30718ebf0346389b9\n",
" .addData(data);\n",
" }\n",
" geo_json_2e55dbb26d079cd30718ebf0346389b9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7324769878609818, 52.3450519960673], [-1.7330399878613316, 52.345006996067255], [-1.7329269878608222, 52.34589699606799], [-1.730861987859392, 52.34636099606835], [-1.7306279878594089, 52.34605199606809], [-1.7306409878594569, 52.34597199606803], [-1.7305589878594145, 52.34596099606802], [-1.7302429878594396, 52.34554199606765], [-1.7324769878609818, 52.3450519960673]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2e55dbb26d079cd30718ebf0346389b9.addTo(map_b4a48d5a921e6663ace479ace1cb7741);\n",
" \n",
" \n",
" var feature_group_6dac4e9dbc25e13614e66583a03a7074 = L.featureGroup(\n",
" {\n",
"}\n",
" );\n",
" \n",
" \n",
" function geo_json_0fbc732065efc89ab37e2a9f50b80c9d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0fbc732065efc89ab37e2a9f50b80c9d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0fbc732065efc89ab37e2a9f50b80c9d = L.geoJson(null, {\n",
" onEachFeature: geo_json_0fbc732065efc89ab37e2a9f50b80c9d_onEachFeature,\n",
" \n",
" style: geo_json_0fbc732065efc89ab37e2a9f50b80c9d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0fbc732065efc89ab37e2a9f50b80c9d_add (data) {\n",
" geo_json_0fbc732065efc89ab37e2a9f50b80c9d\n",
" .addData(data);\n",
" }\n",
" geo_json_0fbc732065efc89ab37e2a9f50b80c9d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7311221897349691, 52.34501490912346], [-1.7310021061699445, 52.34502409557128], [-1.7309255081620205, 52.34499556179508], [-1.73091056072518, 52.34497612696225], [-1.730925761403591, 52.34493057139016], [-1.730997964326136, 52.34489252731266], [-1.7310313345826756, 52.344875336642055], [-1.7310762291294324, 52.34487515193505], [-1.7311389318800698, 52.34489468811322], [-1.7311539736741433, 52.344977050861594], [-1.7311221897349691, 52.34501490912346]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0fbc732065efc89ab37e2a9f50b80c9d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_72abbeb3d758c8f3e9f553027e965394 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bd8da411e364810a65f8dc213e9a5831 = $(`&lt;div id=&quot;html_bd8da411e364810a65f8dc213e9a5831&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 1&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 208.0 sqm&lt;br&gt;Intersecting area: 200.8 sqm&lt;/div&gt;`)[0];\n",
" popup_72abbeb3d758c8f3e9f553027e965394.setContent(html_bd8da411e364810a65f8dc213e9a5831);\n",
" \n",
" \n",
"\n",
" geo_json_0fbc732065efc89ab37e2a9f50b80c9d.bindPopup(popup_72abbeb3d758c8f3e9f553027e965394)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0fbc732065efc89ab37e2a9f50b80c9d.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_315a9df39e6263fb9fe7003765e1d7d6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_315a9df39e6263fb9fe7003765e1d7d6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_315a9df39e6263fb9fe7003765e1d7d6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_315a9df39e6263fb9fe7003765e1d7d6_onEachFeature,\n",
" \n",
" style: geo_json_315a9df39e6263fb9fe7003765e1d7d6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_315a9df39e6263fb9fe7003765e1d7d6_add (data) {\n",
" geo_json_315a9df39e6263fb9fe7003765e1d7d6\n",
" .addData(data);\n",
" }\n",
" geo_json_315a9df39e6263fb9fe7003765e1d7d6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7308598654940992, 52.34500403134206], [-1.7308406544248855, 52.34501473270179], [-1.73075258908829, 52.34500555287154], [-1.7307351169388936, 52.344981273750314], [-1.7307335693038362, 52.34497989562523], [-1.7307313055746245, 52.34497895908805], [-1.730729032422367, 52.344978608692685], [-1.7306924621176036, 52.3449778673506], [-1.7306760720984513, 52.34495790237878], [-1.730695755854386, 52.34493728594133], [-1.7307268436657044, 52.34493823146352], [-1.730742213437914, 52.344961349665176], [-1.7307433291353906, 52.344962304264314], [-1.730744490930735, 52.34496292004091], [-1.7307461948524132, 52.344963459733854], [-1.7307480693326593, 52.3449637112324], [-1.7307507346028428, 52.34496354828158], [-1.7308433592645067, 52.34494707329759], [-1.7308604600290067, 52.34495805147434], [-1.7308598654940992, 52.34500403134206]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_315a9df39e6263fb9fe7003765e1d7d6.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9640e20c2d8366f704a128f6f88322e6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e324298840837b8c22401bd8743ea148 = $(`&lt;div id=&quot;html_e324298840837b8c22401bd8743ea148&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 2&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 55.3 sqm&lt;/div&gt;`)[0];\n",
" popup_9640e20c2d8366f704a128f6f88322e6.setContent(html_e324298840837b8c22401bd8743ea148);\n",
" \n",
" \n",
"\n",
" geo_json_315a9df39e6263fb9fe7003765e1d7d6.bindPopup(popup_9640e20c2d8366f704a128f6f88322e6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_315a9df39e6263fb9fe7003765e1d7d6.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_1bc728174665df2c215ccdbb19e0518c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1bc728174665df2c215ccdbb19e0518c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1bc728174665df2c215ccdbb19e0518c = L.geoJson(null, {\n",
" onEachFeature: geo_json_1bc728174665df2c215ccdbb19e0518c_onEachFeature,\n",
" \n",
" style: geo_json_1bc728174665df2c215ccdbb19e0518c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1bc728174665df2c215ccdbb19e0518c_add (data) {\n",
" geo_json_1bc728174665df2c215ccdbb19e0518c\n",
" .addData(data);\n",
" }\n",
" geo_json_1bc728174665df2c215ccdbb19e0518c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7301681768456554, 52.34515621915942], [-1.7300592143168332, 52.345137323086355], [-1.7300589275423433, 52.34509953306842], [-1.7300925660843631, 52.34508875777573], [-1.730183872380181, 52.34509966801399], [-1.73019858310357, 52.34513674024904], [-1.7301681768456554, 52.34515621915942]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1bc728174665df2c215ccdbb19e0518c.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_eec6123b64304c9ea5e37c509c8de82f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2fa1c5f8d525e26a5f6c09b74e8bca98 = $(`&lt;div id=&quot;html_2fa1c5f8d525e26a5f6c09b74e8bca98&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 3&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 53.0 sqm&lt;br&gt;Intersecting area: 50.2 sqm&lt;/div&gt;`)[0];\n",
" popup_eec6123b64304c9ea5e37c509c8de82f.setContent(html_2fa1c5f8d525e26a5f6c09b74e8bca98);\n",
" \n",
" \n",
"\n",
" geo_json_1bc728174665df2c215ccdbb19e0518c.bindPopup(popup_eec6123b64304c9ea5e37c509c8de82f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1bc728174665df2c215ccdbb19e0518c.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_daad31bb2e47f47f6fe305725880a5f5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_daad31bb2e47f47f6fe305725880a5f5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_daad31bb2e47f47f6fe305725880a5f5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_daad31bb2e47f47f6fe305725880a5f5_onEachFeature,\n",
" \n",
" style: geo_json_daad31bb2e47f47f6fe305725880a5f5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_daad31bb2e47f47f6fe305725880a5f5_add (data) {\n",
" geo_json_daad31bb2e47f47f6fe305725880a5f5\n",
" .addData(data);\n",
" }\n",
" geo_json_daad31bb2e47f47f6fe305725880a5f5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7299605274025407, 52.345245280369625], [-1.7298992711290624, 52.34523626449231], [-1.7299246307489928, 52.345213660828875], [-1.7299447313710026, 52.3452056658967], [-1.7299621864591472, 52.345215086109626], [-1.7299605274025407, 52.345245280369625]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_daad31bb2e47f47f6fe305725880a5f5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e32fbe59b7582fcbb9f52f0d4f231435 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e418e42ae26b115eb8829b422e9200b5 = $(`&lt;div id=&quot;html_e418e42ae26b115eb8829b422e9200b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 4&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 11.7 sqm&lt;/div&gt;`)[0];\n",
" popup_e32fbe59b7582fcbb9f52f0d4f231435.setContent(html_e418e42ae26b115eb8829b422e9200b5);\n",
" \n",
" \n",
"\n",
" geo_json_daad31bb2e47f47f6fe305725880a5f5.bindPopup(popup_e32fbe59b7582fcbb9f52f0d4f231435)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_daad31bb2e47f47f6fe305725880a5f5.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_bcb73cde4da6703d77c753e96ea8cf85_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_bcb73cde4da6703d77c753e96ea8cf85_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_bcb73cde4da6703d77c753e96ea8cf85 = L.geoJson(null, {\n",
" onEachFeature: geo_json_bcb73cde4da6703d77c753e96ea8cf85_onEachFeature,\n",
" \n",
" style: geo_json_bcb73cde4da6703d77c753e96ea8cf85_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_bcb73cde4da6703d77c753e96ea8cf85_add (data) {\n",
" geo_json_bcb73cde4da6703d77c753e96ea8cf85\n",
" .addData(data);\n",
" }\n",
" geo_json_bcb73cde4da6703d77c753e96ea8cf85_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.730209795141197, 52.34526443909957], [-1.7301636920052734, 52.34526463779944], [-1.7301468334481989, 52.3452256736209], [-1.7301953275162278, 52.34521562623204], [-1.73021294633729, 52.345244720013596], [-1.730209795141197, 52.34526443909957]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_bcb73cde4da6703d77c753e96ea8cf85.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_661672db664095cc0667d341c2595c80 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_76825dd06d1a576dc19949f3af0863f0 = $(`&lt;div id=&quot;html_76825dd06d1a576dc19949f3af0863f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 5&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.0 sqm&lt;/div&gt;`)[0];\n",
" popup_661672db664095cc0667d341c2595c80.setContent(html_76825dd06d1a576dc19949f3af0863f0);\n",
" \n",
" \n",
"\n",
" geo_json_bcb73cde4da6703d77c753e96ea8cf85.bindPopup(popup_661672db664095cc0667d341c2595c80)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_bcb73cde4da6703d77c753e96ea8cf85.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_9579aef7627b2b0184387598a972ea15_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9579aef7627b2b0184387598a972ea15_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9579aef7627b2b0184387598a972ea15 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9579aef7627b2b0184387598a972ea15_onEachFeature,\n",
" \n",
" style: geo_json_9579aef7627b2b0184387598a972ea15_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9579aef7627b2b0184387598a972ea15_add (data) {\n",
" geo_json_9579aef7627b2b0184387598a972ea15\n",
" .addData(data);\n",
" }\n",
" geo_json_9579aef7627b2b0184387598a972ea15_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.731005164473096, 52.345282323234365], [-1.7309722272820427, 52.34529268053979], [-1.7309678776480306, 52.345264381219806], [-1.7309866035673929, 52.34526156043442], [-1.7310046340022398, 52.34526352893919], [-1.731005164473096, 52.345282323234365]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9579aef7627b2b0184387598a972ea15.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_72ecaac7efd91d7b00d62cbb44c0172e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ed7c6fb0a2e255d4c85c1a532d5cf715 = $(`&lt;div id=&quot;html_ed7c6fb0a2e255d4c85c1a532d5cf715&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 6&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.7 sqm&lt;/div&gt;`)[0];\n",
" popup_72ecaac7efd91d7b00d62cbb44c0172e.setContent(html_ed7c6fb0a2e255d4c85c1a532d5cf715);\n",
" \n",
" \n",
"\n",
" geo_json_9579aef7627b2b0184387598a972ea15.bindPopup(popup_72ecaac7efd91d7b00d62cbb44c0172e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9579aef7627b2b0184387598a972ea15.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_53e53974c0080d3b10d3da0bf99d7bbf_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_53e53974c0080d3b10d3da0bf99d7bbf_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_53e53974c0080d3b10d3da0bf99d7bbf = L.geoJson(null, {\n",
" onEachFeature: geo_json_53e53974c0080d3b10d3da0bf99d7bbf_onEachFeature,\n",
" \n",
" style: geo_json_53e53974c0080d3b10d3da0bf99d7bbf_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_53e53974c0080d3b10d3da0bf99d7bbf_add (data) {\n",
" geo_json_53e53974c0080d3b10d3da0bf99d7bbf\n",
" .addData(data);\n",
" }\n",
" geo_json_53e53974c0080d3b10d3da0bf99d7bbf_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7295653319623936, 52.34543286398274], [-1.7295331471172188, 52.345452172341254], [-1.7294716041066118, 52.34545186887949], [-1.7294401975528984, 52.345432368347474], [-1.7294399476410944, 52.345396080673936], [-1.7294724735510771, 52.34536633910547], [-1.7295489916490856, 52.34536651408765], [-1.7295661972018064, 52.34537785499435], [-1.7295653319623936, 52.34543286398274]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_53e53974c0080d3b10d3da0bf99d7bbf.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8a8e61e2dca8fc9facd3f7514fb3120b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_21488332a0aba0228a267830f01dbf41 = $(`&lt;div id=&quot;html_21488332a0aba0228a267830f01dbf41&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 7&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 72.0 sqm&lt;br&gt;Intersecting area: 11.9 sqm&lt;/div&gt;`)[0];\n",
" popup_8a8e61e2dca8fc9facd3f7514fb3120b.setContent(html_21488332a0aba0228a267830f01dbf41);\n",
" \n",
" \n",
"\n",
" geo_json_53e53974c0080d3b10d3da0bf99d7bbf.bindPopup(popup_8a8e61e2dca8fc9facd3f7514fb3120b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_53e53974c0080d3b10d3da0bf99d7bbf.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_2888efbea900888b13c5b4c15b9df4ff_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2888efbea900888b13c5b4c15b9df4ff_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2888efbea900888b13c5b4c15b9df4ff = L.geoJson(null, {\n",
" onEachFeature: geo_json_2888efbea900888b13c5b4c15b9df4ff_onEachFeature,\n",
" \n",
" style: geo_json_2888efbea900888b13c5b4c15b9df4ff_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2888efbea900888b13c5b4c15b9df4ff_add (data) {\n",
" geo_json_2888efbea900888b13c5b4c15b9df4ff\n",
" .addData(data);\n",
" }\n",
" geo_json_2888efbea900888b13c5b4c15b9df4ff_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7302176283973834, 52.345587614701664], [-1.7302025004592816, 52.345576879175084], [-1.73021644605464, 52.345547166045506], [-1.7302679281571791, 52.34553994566195], [-1.7302821470926404, 52.345578747374475], [-1.7302176283973834, 52.345587614701664]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2888efbea900888b13c5b4c15b9df4ff.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4a7cc70c1cf60ad21156be0304eaaf8a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3c8f4dab803ae69a8a98bc111992f5d5 = $(`&lt;div id=&quot;html_3c8f4dab803ae69a8a98bc111992f5d5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 8&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 20.0 sqm&lt;br&gt;Intersecting area: 20.2 sqm&lt;/div&gt;`)[0];\n",
" popup_4a7cc70c1cf60ad21156be0304eaaf8a.setContent(html_3c8f4dab803ae69a8a98bc111992f5d5);\n",
" \n",
" \n",
"\n",
" geo_json_2888efbea900888b13c5b4c15b9df4ff.bindPopup(popup_4a7cc70c1cf60ad21156be0304eaaf8a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2888efbea900888b13c5b4c15b9df4ff.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce = L.geoJson(null, {\n",
" onEachFeature: geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce_onEachFeature,\n",
" \n",
" style: geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce_add (data) {\n",
" geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce\n",
" .addData(data);\n",
" }\n",
" geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7302390941550665, 52.345650383710556], [-1.730207789605295, 52.345669308579765], [-1.7301745475022283, 52.345669138356534], [-1.7301436463937512, 52.34564996640707], [-1.7301439215368069, 52.34562983170649], [-1.7301709515816268, 52.345619087167194], [-1.7302075449880956, 52.34561080436792], [-1.7302393719968128, 52.345630038647066], [-1.7302390941550665, 52.345650383710556]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_07985faebe02a316bffda5c0453ebdd6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d3c670124ae29432997db20183385ab7 = $(`&lt;div id=&quot;html_d3c670124ae29432997db20183385ab7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 9&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 31.0 sqm&lt;br&gt;Intersecting area: 31.5 sqm&lt;/div&gt;`)[0];\n",
" popup_07985faebe02a316bffda5c0453ebdd6.setContent(html_d3c670124ae29432997db20183385ab7);\n",
" \n",
" \n",
"\n",
" geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce.bindPopup(popup_07985faebe02a316bffda5c0453ebdd6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_05eed4c9d2ae7605ed5dbae9cc8273ce.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_94d0966ab297ad95a802f028473d82ea_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_94d0966ab297ad95a802f028473d82ea_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_94d0966ab297ad95a802f028473d82ea = L.geoJson(null, {\n",
" onEachFeature: geo_json_94d0966ab297ad95a802f028473d82ea_onEachFeature,\n",
" \n",
" style: geo_json_94d0966ab297ad95a802f028473d82ea_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_94d0966ab297ad95a802f028473d82ea_add (data) {\n",
" geo_json_94d0966ab297ad95a802f028473d82ea\n",
" .addData(data);\n",
" }\n",
" geo_json_94d0966ab297ad95a802f028473d82ea_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.73390985530194, 52.34520066176513], [-1.7338737694278032, 52.34520134834451], [-1.733872278143217, 52.34520157064078], [-1.7338705735863786, 52.34520210801698], [-1.7338691552398322, 52.34520289596079], [-1.7338681173642618, 52.34520388254759], [-1.7338675323039185, 52.34520499961196], [-1.733867481293049, 52.34520640646047], [-1.7338681411226138, 52.345207752877506], [-1.7338691921416838, 52.345208735170345], [-1.7338970084384688, 52.345224812875465], [-1.7338973967038496, 52.345251857135345], [-1.7338722085652765, 52.345255261687576], [-1.7338704354701109, 52.34525572249208], [-1.7338689191393408, 52.34525644998512], [-1.7338674209825342, 52.34525781761519], [-1.7338503322655643, 52.345282126393634], [-1.7338045192327678, 52.3452912238632], [-1.7337162222593014, 52.34528204661779], [-1.7336694326264925, 52.34525379659078], [-1.733669328533116, 52.34521513854377], [-1.7337414681854357, 52.34515943771892], [-1.7337634778905093, 52.34515119381492], [-1.7339114942038583, 52.34517998712049], [-1.73390985530194, 52.34520066176513]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_94d0966ab297ad95a802f028473d82ea.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e1a6e6d6ee8f57c085689e175bf55ce0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_82b148e4dd821508595856bcd89e5473 = $(`&lt;div id=&quot;html_82b148e4dd821508595856bcd89e5473&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 10&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 183.0 sqm&lt;br&gt;Intersecting area: 54.4 sqm&lt;/div&gt;`)[0];\n",
" popup_e1a6e6d6ee8f57c085689e175bf55ce0.setContent(html_82b148e4dd821508595856bcd89e5473);\n",
" \n",
" \n",
"\n",
" geo_json_94d0966ab297ad95a802f028473d82ea.bindPopup(popup_e1a6e6d6ee8f57c085689e175bf55ce0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_94d0966ab297ad95a802f028473d82ea.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_1b034408a88577548d0dc71aed5a4ee2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1b034408a88577548d0dc71aed5a4ee2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1b034408a88577548d0dc71aed5a4ee2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1b034408a88577548d0dc71aed5a4ee2_onEachFeature,\n",
" \n",
" style: geo_json_1b034408a88577548d0dc71aed5a4ee2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1b034408a88577548d0dc71aed5a4ee2_add (data) {\n",
" geo_json_1b034408a88577548d0dc71aed5a4ee2\n",
" .addData(data);\n",
" }\n",
" geo_json_1b034408a88577548d0dc71aed5a4ee2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7318224907033206, 52.34576956840826], [-1.7316701532895975, 52.34576922292523], [-1.731669838380911, 52.34575891316297], [-1.7317142560907424, 52.345731646883074], [-1.7317755010214326, 52.34573081663768], [-1.7318236318502467, 52.34575029243499], [-1.7318224907033206, 52.34576956840826]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1b034408a88577548d0dc71aed5a4ee2.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_49805af0a94b08aa3c3e0ce35eb3ffbe = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8504197cf1511a9e793cb388775d8c7f = $(`&lt;div id=&quot;html_8504197cf1511a9e793cb388775d8c7f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 11&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 36.0 sqm&lt;br&gt;Intersecting area: 36.3 sqm&lt;/div&gt;`)[0];\n",
" popup_49805af0a94b08aa3c3e0ce35eb3ffbe.setContent(html_8504197cf1511a9e793cb388775d8c7f);\n",
" \n",
" \n",
"\n",
" geo_json_1b034408a88577548d0dc71aed5a4ee2.bindPopup(popup_49805af0a94b08aa3c3e0ce35eb3ffbe)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1b034408a88577548d0dc71aed5a4ee2.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_80ef2ea8b411bc5e65d75a3fb0bee998_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_80ef2ea8b411bc5e65d75a3fb0bee998_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_80ef2ea8b411bc5e65d75a3fb0bee998 = L.geoJson(null, {\n",
" onEachFeature: geo_json_80ef2ea8b411bc5e65d75a3fb0bee998_onEachFeature,\n",
" \n",
" style: geo_json_80ef2ea8b411bc5e65d75a3fb0bee998_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_80ef2ea8b411bc5e65d75a3fb0bee998_add (data) {\n",
" geo_json_80ef2ea8b411bc5e65d75a3fb0bee998\n",
" .addData(data);\n",
" }\n",
" geo_json_80ef2ea8b411bc5e65d75a3fb0bee998_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7331961463753305, 52.34577267482504], [-1.733057585462242, 52.345772362204315], [-1.73306354561995, 52.34574596607778], [-1.7330819840568448, 52.345725062345984], [-1.7331570639305163, 52.34572503755972], [-1.7331890562979135, 52.34573530819652], [-1.7332040377894722, 52.345764422551454], [-1.7331961463753305, 52.34577267482504]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_80ef2ea8b411bc5e65d75a3fb0bee998.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b19a9e64f0794b58c3e5af735e6261c1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a1ffe073a85bba0c04f1250c93be2172 = $(`&lt;div id=&quot;html_a1ffe073a85bba0c04f1250c93be2172&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 12&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 45.0 sqm&lt;br&gt;Intersecting area: 45.4 sqm&lt;/div&gt;`)[0];\n",
" popup_b19a9e64f0794b58c3e5af735e6261c1.setContent(html_a1ffe073a85bba0c04f1250c93be2172);\n",
" \n",
" \n",
"\n",
" geo_json_80ef2ea8b411bc5e65d75a3fb0bee998.bindPopup(popup_b19a9e64f0794b58c3e5af735e6261c1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_80ef2ea8b411bc5e65d75a3fb0bee998.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_461e54f3dbfc012a68507c1d88ecab5a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_461e54f3dbfc012a68507c1d88ecab5a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_461e54f3dbfc012a68507c1d88ecab5a = L.geoJson(null, {\n",
" onEachFeature: geo_json_461e54f3dbfc012a68507c1d88ecab5a_onEachFeature,\n",
" \n",
" style: geo_json_461e54f3dbfc012a68507c1d88ecab5a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_461e54f3dbfc012a68507c1d88ecab5a_add (data) {\n",
" geo_json_461e54f3dbfc012a68507c1d88ecab5a\n",
" .addData(data);\n",
" }\n",
" geo_json_461e54f3dbfc012a68507c1d88ecab5a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7305889521911184, 52.345687955457066], [-1.7304550962238494, 52.34568814226307], [-1.7304264423984057, 52.34567114574253], [-1.7304248877245796, 52.34567044096401], [-1.7304228955647047, 52.34566998331593], [-1.7304397457158576, 52.345629462483025], [-1.730536178921619, 52.34562907357426], [-1.730537618630695, 52.345628888956895], [-1.7305389683721153, 52.34562853152861], [-1.7305610979847739, 52.34562098522828], [-1.7306057623460689, 52.345648437814006], [-1.7305889521911184, 52.345687955457066]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_461e54f3dbfc012a68507c1d88ecab5a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4eb660d19bd4c32c8ef3c4dd610f5146 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ded8ef70a6a12c400ef7417c9b16e96b = $(`&lt;div id=&quot;html_ded8ef70a6a12c400ef7417c9b16e96b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 13&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 73.0 sqm&lt;br&gt;Intersecting area: 72.9 sqm&lt;/div&gt;`)[0];\n",
" popup_4eb660d19bd4c32c8ef3c4dd610f5146.setContent(html_ded8ef70a6a12c400ef7417c9b16e96b);\n",
" \n",
" \n",
"\n",
" geo_json_461e54f3dbfc012a68507c1d88ecab5a.bindPopup(popup_4eb660d19bd4c32c8ef3c4dd610f5146)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_461e54f3dbfc012a68507c1d88ecab5a.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_bde6911732f4058a1adb7e516f1b299e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_bde6911732f4058a1adb7e516f1b299e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_bde6911732f4058a1adb7e516f1b299e = L.geoJson(null, {\n",
" onEachFeature: geo_json_bde6911732f4058a1adb7e516f1b299e_onEachFeature,\n",
" \n",
" style: geo_json_bde6911732f4058a1adb7e516f1b299e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_bde6911732f4058a1adb7e516f1b299e_add (data) {\n",
" geo_json_bde6911732f4058a1adb7e516f1b299e\n",
" .addData(data);\n",
" }\n",
" geo_json_bde6911732f4058a1adb7e516f1b299e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7304133099266175, 52.345705001629334], [-1.730294197065198, 52.3457058233], [-1.730276656379038, 52.34569619256881], [-1.7302919961773233, 52.34566532737105], [-1.7303524812353004, 52.34566464177225], [-1.7304139850411953, 52.34567482849925], [-1.7304133099266175, 52.345705001629334]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_bde6911732f4058a1adb7e516f1b299e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c13877d1adb4ff753a28d659e17332ab = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8a6f57a4007cdeb3e4b14c31533f0c2f = $(`&lt;div id=&quot;html_8a6f57a4007cdeb3e4b14c31533f0c2f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 14&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 37.0 sqm&lt;br&gt;Intersecting area: 37.4 sqm&lt;/div&gt;`)[0];\n",
" popup_c13877d1adb4ff753a28d659e17332ab.setContent(html_8a6f57a4007cdeb3e4b14c31533f0c2f);\n",
" \n",
" \n",
"\n",
" geo_json_bde6911732f4058a1adb7e516f1b299e.bindPopup(popup_c13877d1adb4ff753a28d659e17332ab)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_bde6911732f4058a1adb7e516f1b299e.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7_onEachFeature,\n",
" \n",
" style: geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7_add (data) {\n",
" geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7\n",
" .addData(data);\n",
" }\n",
" geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7307666920870104, 52.34576716994722], [-1.7305710962542056, 52.34576672457587], [-1.7305692974624962, 52.34572016478641], [-1.730657665663831, 52.34565743921994], [-1.7306840177045966, 52.34565631970757], [-1.730735285866252, 52.345647834615335], [-1.7307676099094622, 52.345667209231834], [-1.7307666920870104, 52.34576716994722]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_aba0dbdfba038776af9ecfd7097637f2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6a0bb31e73f9055d10e7d1b47f4bef6e = $(`&lt;div id=&quot;html_6a0bb31e73f9055d10e7d1b47f4bef6e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 15&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 145.0 sqm&lt;br&gt;Intersecting area: 145.1 sqm&lt;/div&gt;`)[0];\n",
" popup_aba0dbdfba038776af9ecfd7097637f2.setContent(html_6a0bb31e73f9055d10e7d1b47f4bef6e);\n",
" \n",
" \n",
"\n",
" geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7.bindPopup(popup_aba0dbdfba038776af9ecfd7097637f2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b6fb3c49b2fdcf3d9854d7c83049c0f7.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_79f8132b6e5aa0fa159335e2c8652d88_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_79f8132b6e5aa0fa159335e2c8652d88_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_79f8132b6e5aa0fa159335e2c8652d88 = L.geoJson(null, {\n",
" onEachFeature: geo_json_79f8132b6e5aa0fa159335e2c8652d88_onEachFeature,\n",
" \n",
" style: geo_json_79f8132b6e5aa0fa159335e2c8652d88_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_79f8132b6e5aa0fa159335e2c8652d88_add (data) {\n",
" geo_json_79f8132b6e5aa0fa159335e2c8652d88\n",
" .addData(data);\n",
" }\n",
" geo_json_79f8132b6e5aa0fa159335e2c8652d88_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7305501726061663, 52.345272849440825], [-1.73050848178488, 52.34529267042786], [-1.7305068679319562, 52.34529373478683], [-1.730506005502495, 52.34529482513], [-1.730488187396478, 52.34532822264065], [-1.7304558888520114, 52.34532814904282], [-1.7304392526357575, 52.345312461010636], [-1.7304373217943003, 52.34531133642908], [-1.7304348624189112, 52.345310707806824], [-1.7304333422539246, 52.345310606349145], [-1.7303113204865843, 52.34531030482215], [-1.730292559841869, 52.34529975071716], [-1.7302779142192568, 52.34523214885768], [-1.7302772749452966, 52.345230819550494], [-1.7302762562412604, 52.345229847184825], [-1.7302745516341262, 52.345228937086326], [-1.730219184912304, 52.34520756790183], [-1.7302218800668345, 52.3451793178829], [-1.7303281482102342, 52.34515368464748], [-1.7303295248648485, 52.345153244572295], [-1.7303307190444477, 52.34515263775964], [-1.7303316777440272, 52.34515189016132], [-1.7303323581847232, 52.345151035846044], [-1.7303327733194067, 52.34514987616043], [-1.7303325984508728, 52.34514845800835], [-1.7303317080606513, 52.345147144311795], [-1.7303304820585845, 52.345146224515226], [-1.7302791629796008, 52.34511970511483], [-1.730293155032582, 52.3450832835999], [-1.730298787316271, 52.34507123610505], [-1.7304027169695044, 52.34507237924546], [-1.7304188919181767, 52.34511878660797], [-1.730392876638403, 52.34513024554296], [-1.7303917293139464, 52.345130872242606], [-1.7303908204569833, 52.34513163074074], [-1.7303900799124832, 52.34513271416756], [-1.7303898218217344, 52.345133878708275], [-1.7303897525575647, 52.34514696736876], [-1.7303903740303948, 52.345148569038784], [-1.730391895357599, 52.34514992732451], [-1.7303937648679688, 52.34515075688707], [-1.7303963470785562, 52.34515121947301], [-1.7303990268863247, 52.34515108173996], [-1.730475259620383, 52.34513558647224], [-1.7304916223644342, 52.345167528139775], [-1.730492449560622, 52.345168612442905], [-1.7304934314772644, 52.345169359067086], [-1.7304946491412907, 52.34516996058674], [-1.7304971760342895, 52.34517058936587], [-1.7305205035794007, 52.34517193170943], [-1.7305358493559406, 52.34520431247127], [-1.730536654381961, 52.34520542279624], [-1.7305376317594052, 52.34520619098544], [-1.730538856652905, 52.34520681140044], [-1.7305644166965566, 52.34521713732433], [-1.7305501726061663, 52.345272849440825]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_79f8132b6e5aa0fa159335e2c8652d88.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_070462ebe99228cd4df22f57e849a83f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_404c5b2d5f981b14cb96cfc08c308af6 = $(`&lt;div id=&quot;html_404c5b2d5f981b14cb96cfc08c308af6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 16&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 394.0 sqm&lt;br&gt;Intersecting area: 394.4 sqm&lt;/div&gt;`)[0];\n",
" popup_070462ebe99228cd4df22f57e849a83f.setContent(html_404c5b2d5f981b14cb96cfc08c308af6);\n",
" \n",
" \n",
"\n",
" geo_json_79f8132b6e5aa0fa159335e2c8652d88.bindPopup(popup_070462ebe99228cd4df22f57e849a83f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_79f8132b6e5aa0fa159335e2c8652d88.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_9c4ff01e9085b5af8cdc9afa08232c01_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9c4ff01e9085b5af8cdc9afa08232c01_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9c4ff01e9085b5af8cdc9afa08232c01 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9c4ff01e9085b5af8cdc9afa08232c01_onEachFeature,\n",
" \n",
" style: geo_json_9c4ff01e9085b5af8cdc9afa08232c01_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9c4ff01e9085b5af8cdc9afa08232c01_add (data) {\n",
" geo_json_9c4ff01e9085b5af8cdc9afa08232c01\n",
" .addData(data);\n",
" }\n",
" geo_json_9c4ff01e9085b5af8cdc9afa08232c01_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7338487506262446, 52.34573982140465], [-1.7337713059465722, 52.34573151549694], [-1.7337263562404315, 52.34571090949892], [-1.7337247126090898, 52.345710341215714], [-1.7337228882373847, 52.34571004942219], [-1.7337213778516518, 52.34571002714273], [-1.733719892751002, 52.345710194613574], [-1.733718165119075, 52.34571065911049], [-1.7337169595220545, 52.34571121648699], [-1.7336852830015494, 52.345731213071026], [-1.73362310933027, 52.34572096899653], [-1.7336246945455842, 52.34569923789114], [-1.733655823684767, 52.34569021890807], [-1.733701145322789, 52.345698253893225], [-1.733703841509011, 52.34569832649093], [-1.7337060547445642, 52.34569790893539], [-1.7337073642512295, 52.34569740303798], [-1.733708709590754, 52.34569655289673], [-1.733709495447942, 52.345695735662126], [-1.733709983795635, 52.345694836843364], [-1.7337112407645305, 52.34568229656072], [-1.733780366733567, 52.34565484419289], [-1.7337820958489598, 52.345653887035816], [-1.7337831016403518, 52.3456528671159], [-1.7337836355057865, 52.34565172206797], [-1.7337857801665508, 52.34563753408453], [-1.7338254358440286, 52.34563645909933], [-1.7338640343924034, 52.345628565360336], [-1.7339090776131438, 52.34566588427782], [-1.7338487506262446, 52.34573982140465]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9c4ff01e9085b5af8cdc9afa08232c01.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e39a37d6d441aefba1175cdcb238fa90 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_09431fe3c6c583ebcbed5624b01fe9d7 = $(`&lt;div id=&quot;html_09431fe3c6c583ebcbed5624b01fe9d7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 17&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 126.0 sqm&lt;br&gt;Intersecting area: 15.3 sqm&lt;/div&gt;`)[0];\n",
" popup_e39a37d6d441aefba1175cdcb238fa90.setContent(html_09431fe3c6c583ebcbed5624b01fe9d7);\n",
" \n",
" \n",
"\n",
" geo_json_9c4ff01e9085b5af8cdc9afa08232c01.bindPopup(popup_e39a37d6d441aefba1175cdcb238fa90)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9c4ff01e9085b5af8cdc9afa08232c01.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_112e3c02e7d36abb5f1ae2b053929bb8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_112e3c02e7d36abb5f1ae2b053929bb8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_112e3c02e7d36abb5f1ae2b053929bb8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_112e3c02e7d36abb5f1ae2b053929bb8_onEachFeature,\n",
" \n",
" style: geo_json_112e3c02e7d36abb5f1ae2b053929bb8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_112e3c02e7d36abb5f1ae2b053929bb8_add (data) {\n",
" geo_json_112e3c02e7d36abb5f1ae2b053929bb8\n",
" .addData(data);\n",
" }\n",
" geo_json_112e3c02e7d36abb5f1ae2b053929bb8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7306142810638454, 52.34666497414803], [-1.7306202367095513, 52.346766263065795], [-1.730536518806031, 52.34675808909191], [-1.7305186423276164, 52.346701920828735], [-1.7306100181512005, 52.34666350712725], [-1.7306142810638454, 52.34666497414803]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_112e3c02e7d36abb5f1ae2b053929bb8.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_bd9eaca5572177b60be1e56a3581aa1e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a63689c1681105385157596a6c0e97bf = $(`&lt;div id=&quot;html_a63689c1681105385157596a6c0e97bf&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 18&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 56.0 sqm&lt;br&gt;Intersecting area: 55.9 sqm&lt;/div&gt;`)[0];\n",
" popup_bd9eaca5572177b60be1e56a3581aa1e.setContent(html_a63689c1681105385157596a6c0e97bf);\n",
" \n",
" \n",
"\n",
" geo_json_112e3c02e7d36abb5f1ae2b053929bb8.bindPopup(popup_bd9eaca5572177b60be1e56a3581aa1e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_112e3c02e7d36abb5f1ae2b053929bb8.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_68d8c57e69e872a8711d6962e69db021_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_68d8c57e69e872a8711d6962e69db021_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_68d8c57e69e872a8711d6962e69db021 = L.geoJson(null, {\n",
" onEachFeature: geo_json_68d8c57e69e872a8711d6962e69db021_onEachFeature,\n",
" \n",
" style: geo_json_68d8c57e69e872a8711d6962e69db021_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_68d8c57e69e872a8711d6962e69db021_add (data) {\n",
" geo_json_68d8c57e69e872a8711d6962e69db021\n",
" .addData(data);\n",
" }\n",
" geo_json_68d8c57e69e872a8711d6962e69db021_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7314911956248256, 52.346070432229745], [-1.731523697890174, 52.34604517974822], [-1.731583331752536, 52.34604502560484], [-1.73167539223573, 52.34605637781565], [-1.7316898074794753, 52.3461826156658], [-1.7316433806586056, 52.34621190016803], [-1.7315979919506392, 52.34621225658059], [-1.7315343478364378, 52.34617716189445], [-1.7315327235653546, 52.34617655047325], [-1.731530517956948, 52.34617618495981], [-1.731521717777683, 52.34617614071357], [-1.731423908165027, 52.346119989808464], [-1.731418207788413, 52.346116884241724], [-1.7314122538000725, 52.3461139641955], [-1.7314060578894894, 52.34611123778565], [-1.731399640571169, 52.34610871225199], [-1.7313930164852858, 52.346106393925176], [-1.7313867087102925, 52.34610444491299], [-1.7313902222030348, 52.34609027356836], [-1.731487588490774, 52.34607194608086], [-1.7314895796775749, 52.346071357248725], [-1.7314911956248256, 52.346070432229745]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_68d8c57e69e872a8711d6962e69db021.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3d01e79ea0b6f4c5b5c782137296d874 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9e98eaf7644be72dbe8b686f2813704c = $(`&lt;div id=&quot;html_9e98eaf7644be72dbe8b686f2813704c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 19&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 247.0 sqm&lt;br&gt;Intersecting area: 246.8 sqm&lt;/div&gt;`)[0];\n",
" popup_3d01e79ea0b6f4c5b5c782137296d874.setContent(html_9e98eaf7644be72dbe8b686f2813704c);\n",
" \n",
" \n",
"\n",
" geo_json_68d8c57e69e872a8711d6962e69db021.bindPopup(popup_3d01e79ea0b6f4c5b5c782137296d874)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_68d8c57e69e872a8711d6962e69db021.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_89f0d4b8ab027cc790863000097490b3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_89f0d4b8ab027cc790863000097490b3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_89f0d4b8ab027cc790863000097490b3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_89f0d4b8ab027cc790863000097490b3_onEachFeature,\n",
" \n",
" style: geo_json_89f0d4b8ab027cc790863000097490b3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_89f0d4b8ab027cc790863000097490b3_add (data) {\n",
" geo_json_89f0d4b8ab027cc790863000097490b3\n",
" .addData(data);\n",
" }\n",
" geo_json_89f0d4b8ab027cc790863000097490b3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.731852829049678, 52.34635096789349], [-1.7318554258407426, 52.34635146194597], [-1.7319955643601332, 52.346361383768325], [-1.7320116393323646, 52.34637293302354], [-1.7319997897481543, 52.34644949987369], [-1.7319272850351168, 52.34640893816828], [-1.7317572424681014, 52.34631134986983], [-1.7318167052636628, 52.34630652661632], [-1.7318496412062776, 52.346348927985694], [-1.7318509670121256, 52.34635010510949], [-1.731852829049678, 52.34635096789349]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_89f0d4b8ab027cc790863000097490b3.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_284d7b1939c93129d6b09a8adcbf6719 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b50903556ec68d083e9486d6c7efe114 = $(`&lt;div id=&quot;html_b50903556ec68d083e9486d6c7efe114&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 20&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 77.0 sqm&lt;br&gt;Intersecting area: 77.2 sqm&lt;/div&gt;`)[0];\n",
" popup_284d7b1939c93129d6b09a8adcbf6719.setContent(html_b50903556ec68d083e9486d6c7efe114);\n",
" \n",
" \n",
"\n",
" geo_json_89f0d4b8ab027cc790863000097490b3.bindPopup(popup_284d7b1939c93129d6b09a8adcbf6719)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_89f0d4b8ab027cc790863000097490b3.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_6a628abb999ad2c3f0bfd10bc723b404_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6a628abb999ad2c3f0bfd10bc723b404_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6a628abb999ad2c3f0bfd10bc723b404 = L.geoJson(null, {\n",
" onEachFeature: geo_json_6a628abb999ad2c3f0bfd10bc723b404_onEachFeature,\n",
" \n",
" style: geo_json_6a628abb999ad2c3f0bfd10bc723b404_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6a628abb999ad2c3f0bfd10bc723b404_add (data) {\n",
" geo_json_6a628abb999ad2c3f0bfd10bc723b404\n",
" .addData(data);\n",
" }\n",
" geo_json_6a628abb999ad2c3f0bfd10bc723b404_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7318217761623875, 52.34578165319644], [-1.731821372624065, 52.34578259984812], [-1.731821313847925, 52.34578358054317], [-1.7318238620700228, 52.34580497487563], [-1.7317024251180275, 52.34580775165695], [-1.7316825774255262, 52.34578121435166], [-1.7316806540649679, 52.34578005834628], [-1.731678552616242, 52.34577946382366], [-1.7316770283774945, 52.345779304834565], [-1.7316704595976626, 52.34577925577139], [-1.7316701532895975, 52.34576922292523], [-1.7318224907033206, 52.34576956840826], [-1.7318217761623875, 52.34578165319644]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6a628abb999ad2c3f0bfd10bc723b404.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6c68015e99c3d5baf8287b233689be6d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9a905cf47823a24d06a98d9170de579d = $(`&lt;div id=&quot;html_9a905cf47823a24d06a98d9170de579d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 21&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 38.0 sqm&lt;br&gt;Intersecting area: 38.3 sqm&lt;/div&gt;`)[0];\n",
" popup_6c68015e99c3d5baf8287b233689be6d.setContent(html_9a905cf47823a24d06a98d9170de579d);\n",
" \n",
" \n",
"\n",
" geo_json_6a628abb999ad2c3f0bfd10bc723b404.bindPopup(popup_6c68015e99c3d5baf8287b233689be6d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6a628abb999ad2c3f0bfd10bc723b404.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5_onEachFeature,\n",
" \n",
" style: geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5_add (data) {\n",
" geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5\n",
" .addData(data);\n",
" }\n",
" geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7318755439758118, 52.34586282792571], [-1.7318461589726835, 52.34587003167834], [-1.731817319747354, 52.34583940235177], [-1.7318347567364245, 52.34583006601716], [-1.7318793014164808, 52.345839110437204], [-1.7318755439758118, 52.34586282792571]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_bd8c8c0d32a72eb213d1029311d1c5a1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_30ec0794d569f1b8ef135766b7d3ef13 = $(`&lt;div id=&quot;html_30ec0794d569f1b8ef135766b7d3ef13&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 22&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 11.9 sqm&lt;/div&gt;`)[0];\n",
" popup_bd8c8c0d32a72eb213d1029311d1c5a1.setContent(html_30ec0794d569f1b8ef135766b7d3ef13);\n",
" \n",
" \n",
"\n",
" geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5.bindPopup(popup_bd8c8c0d32a72eb213d1029311d1c5a1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_84d5ee496d09d2ef6ae204e5eda9f5e5.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_b2123cda221492f518b2d3c69727588a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b2123cda221492f518b2d3c69727588a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b2123cda221492f518b2d3c69727588a = L.geoJson(null, {\n",
" onEachFeature: geo_json_b2123cda221492f518b2d3c69727588a_onEachFeature,\n",
" \n",
" style: geo_json_b2123cda221492f518b2d3c69727588a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b2123cda221492f518b2d3c69727588a_add (data) {\n",
" geo_json_b2123cda221492f518b2d3c69727588a\n",
" .addData(data);\n",
" }\n",
" geo_json_b2123cda221492f518b2d3c69727588a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7321564244843037, 52.345925671891244], [-1.7320980750549864, 52.34591662058683], [-1.7321080360693257, 52.34589312751056], [-1.7321726603433203, 52.34588550543386], [-1.7321749267052997, 52.34591568433611], [-1.7321564244843037, 52.345925671891244]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b2123cda221492f518b2d3c69727588a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7dec56ab7414e061be9fdd74724c7042 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_370716229287fca759915b2f2762337b = $(`&lt;div id=&quot;html_370716229287fca759915b2f2762337b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 23&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 17.0 sqm&lt;br&gt;Intersecting area: 17.1 sqm&lt;/div&gt;`)[0];\n",
" popup_7dec56ab7414e061be9fdd74724c7042.setContent(html_370716229287fca759915b2f2762337b);\n",
" \n",
" \n",
"\n",
" geo_json_b2123cda221492f518b2d3c69727588a.bindPopup(popup_7dec56ab7414e061be9fdd74724c7042)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b2123cda221492f518b2d3c69727588a.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_e203834e96dfe9d61fca0ddeba67d864_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e203834e96dfe9d61fca0ddeba67d864_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e203834e96dfe9d61fca0ddeba67d864 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e203834e96dfe9d61fca0ddeba67d864_onEachFeature,\n",
" \n",
" style: geo_json_e203834e96dfe9d61fca0ddeba67d864_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e203834e96dfe9d61fca0ddeba67d864_add (data) {\n",
" geo_json_e203834e96dfe9d61fca0ddeba67d864\n",
" .addData(data);\n",
" }\n",
" geo_json_e203834e96dfe9d61fca0ddeba67d864_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7321259706028316, 52.346023838709186], [-1.7321086651190023, 52.345982706268224], [-1.7321079582143077, 52.34598162674596], [-1.7321070805644514, 52.3459808659848], [-1.7321059643369219, 52.34598023234587], [-1.7321035906131, 52.34597950865565], [-1.7320808275145871, 52.34597699288522], [-1.7320923315263088, 52.34596514290286], [-1.7322017782856545, 52.34595706942943], [-1.7322325383444255, 52.34600490123525], [-1.7321259706028316, 52.346023838709186]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e203834e96dfe9d61fca0ddeba67d864.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d907b19ff2201de2e5e113eb70933c1a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_42d0382672662ff51033507d3eb06699 = $(`&lt;div id=&quot;html_42d0382672662ff51033507d3eb06699&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 24&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 47.0 sqm&lt;br&gt;Intersecting area: 46.7 sqm&lt;/div&gt;`)[0];\n",
" popup_d907b19ff2201de2e5e113eb70933c1a.setContent(html_42d0382672662ff51033507d3eb06699);\n",
" \n",
" \n",
"\n",
" geo_json_e203834e96dfe9d61fca0ddeba67d864.bindPopup(popup_d907b19ff2201de2e5e113eb70933c1a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e203834e96dfe9d61fca0ddeba67d864.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_0db81d5318029e729508f70dc4171ca7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0db81d5318029e729508f70dc4171ca7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0db81d5318029e729508f70dc4171ca7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0db81d5318029e729508f70dc4171ca7_onEachFeature,\n",
" \n",
" style: geo_json_0db81d5318029e729508f70dc4171ca7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0db81d5318029e729508f70dc4171ca7_add (data) {\n",
" geo_json_0db81d5318029e729508f70dc4171ca7\n",
" .addData(data);\n",
" }\n",
" geo_json_0db81d5318029e729508f70dc4171ca7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7319833602128685, 52.34605002232828], [-1.7319278054820062, 52.34607792514442], [-1.7319267327897, 52.346078590682595], [-1.7319259059699568, 52.34607937814743], [-1.7319252768939357, 52.346080480719905], [-1.7319213929041022, 52.34609574714524], [-1.7318602678299222, 52.34609560859606], [-1.7317855452941382, 52.34605827554528], [-1.7318003046419101, 52.34601108895061], [-1.7318490318794284, 52.345991688917], [-1.7319521287414292, 52.34599230107977], [-1.7319838144719828, 52.346029258721025], [-1.7319833602128685, 52.34605002232828]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0db81d5318029e729508f70dc4171ca7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d2b3597fb1d7ef9935027abee22b88e9 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f8932c9ce5100e8dd750d5f3dd473cae = $(`&lt;div id=&quot;html_f8932c9ce5100e8dd750d5f3dd473cae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 25&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 118.0 sqm&lt;br&gt;Intersecting area: 118.3 sqm&lt;/div&gt;`)[0];\n",
" popup_d2b3597fb1d7ef9935027abee22b88e9.setContent(html_f8932c9ce5100e8dd750d5f3dd473cae);\n",
" \n",
" \n",
"\n",
" geo_json_0db81d5318029e729508f70dc4171ca7.bindPopup(popup_d2b3597fb1d7ef9935027abee22b88e9)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0db81d5318029e729508f70dc4171ca7.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_808d6e08aa445e11492d675d12a87be0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_808d6e08aa445e11492d675d12a87be0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_808d6e08aa445e11492d675d12a87be0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_808d6e08aa445e11492d675d12a87be0_onEachFeature,\n",
" \n",
" style: geo_json_808d6e08aa445e11492d675d12a87be0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_808d6e08aa445e11492d675d12a87be0_add (data) {\n",
" geo_json_808d6e08aa445e11492d675d12a87be0\n",
" .addData(data);\n",
" }\n",
" geo_json_808d6e08aa445e11492d675d12a87be0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.731140751024927, 52.34612975267685], [-1.7311241669214223, 52.346118456565655], [-1.7311381854239603, 52.346096987500985], [-1.731155944910287, 52.34608049940692], [-1.7311888229485008, 52.34608048062926], [-1.7312198971982087, 52.34609954751018], [-1.7312199263740902, 52.346119203726566], [-1.731140751024927, 52.34612975267685]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_808d6e08aa445e11492d675d12a87be0.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7d918d53ae75bbc96493a327f3239baa = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_539930616b86210e4fefe9682f9f9a68 = $(`&lt;div id=&quot;html_539930616b86210e4fefe9682f9f9a68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 26&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 25.6 sqm&lt;/div&gt;`)[0];\n",
" popup_7d918d53ae75bbc96493a327f3239baa.setContent(html_539930616b86210e4fefe9682f9f9a68);\n",
" \n",
" \n",
"\n",
" geo_json_808d6e08aa445e11492d675d12a87be0.bindPopup(popup_7d918d53ae75bbc96493a327f3239baa)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_808d6e08aa445e11492d675d12a87be0.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_a8d05e75896cbcdb121b680c98ca8b46_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a8d05e75896cbcdb121b680c98ca8b46_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a8d05e75896cbcdb121b680c98ca8b46 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a8d05e75896cbcdb121b680c98ca8b46_onEachFeature,\n",
" \n",
" style: geo_json_a8d05e75896cbcdb121b680c98ca8b46_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a8d05e75896cbcdb121b680c98ca8b46_add (data) {\n",
" geo_json_a8d05e75896cbcdb121b680c98ca8b46\n",
" .addData(data);\n",
" }\n",
" geo_json_a8d05e75896cbcdb121b680c98ca8b46_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7299379390420422, 52.346199475276386], [-1.729906618319858, 52.346198065122294], [-1.7299059586669383, 52.34617789952469], [-1.72996908238207, 52.34616828749708], [-1.7299712707801214, 52.34618908409853], [-1.7299379390420422, 52.346199475276386]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a8d05e75896cbcdb121b680c98ca8b46.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ec8f523c540e696cd3b97b422f0caf9e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f77182cb3d118b3ce559c3053fc1b015 = $(`&lt;div id=&quot;html_f77182cb3d118b3ce559c3053fc1b015&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 27&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 8.2 sqm&lt;/div&gt;`)[0];\n",
" popup_ec8f523c540e696cd3b97b422f0caf9e.setContent(html_f77182cb3d118b3ce559c3053fc1b015);\n",
" \n",
" \n",
"\n",
" geo_json_a8d05e75896cbcdb121b680c98ca8b46.bindPopup(popup_ec8f523c540e696cd3b97b422f0caf9e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a8d05e75896cbcdb121b680c98ca8b46.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a = L.geoJson(null, {\n",
" onEachFeature: geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a_onEachFeature,\n",
" \n",
" style: geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a_add (data) {\n",
" geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a\n",
" .addData(data);\n",
" }\n",
" geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7302347249572858, 52.34639644787145], [-1.7301722612932362, 52.346442549120695], [-1.7300668655988085, 52.34643284108338], [-1.7300213161138116, 52.34637732071094], [-1.730023384624938, 52.346312408186336], [-1.7301283033966979, 52.34630249499163], [-1.7301900529057044, 52.34632117542627], [-1.730235412363508, 52.34635896395341], [-1.7302347249572858, 52.34639644787145]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_87c53a969c6079e32e3ae7027213b45f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d58100084fe4a692f62ee2aa4192f324 = $(`&lt;div id=&quot;html_d58100084fe4a692f62ee2aa4192f324&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 28&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 177.0 sqm&lt;br&gt;Intersecting area: 149.6 sqm&lt;/div&gt;`)[0];\n",
" popup_87c53a969c6079e32e3ae7027213b45f.setContent(html_d58100084fe4a692f62ee2aa4192f324);\n",
" \n",
" \n",
"\n",
" geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a.bindPopup(popup_87c53a969c6079e32e3ae7027213b45f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cea0a1faaa560aa6ed54344bc1cd2d3a.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_c9c776e017f5bbf9aa82308a6b3f654a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c9c776e017f5bbf9aa82308a6b3f654a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c9c776e017f5bbf9aa82308a6b3f654a = L.geoJson(null, {\n",
" onEachFeature: geo_json_c9c776e017f5bbf9aa82308a6b3f654a_onEachFeature,\n",
" \n",
" style: geo_json_c9c776e017f5bbf9aa82308a6b3f654a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c9c776e017f5bbf9aa82308a6b3f654a_add (data) {\n",
" geo_json_c9c776e017f5bbf9aa82308a6b3f654a\n",
" .addData(data);\n",
" }\n",
" geo_json_c9c776e017f5bbf9aa82308a6b3f654a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7303642880360894, 52.34654161926011], [-1.7303333444574327, 52.34654163682177], [-1.7303429196286106, 52.34650934611895], [-1.7303921742596173, 52.34650167289275], [-1.7303953100330984, 52.3465226577453], [-1.7303642880360894, 52.34654161926011]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c9c776e017f5bbf9aa82308a6b3f654a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e3b17f9e57dc5e6b46b7cb03dd94f055 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a4892eb1e71a9913e28c241bcfa0c943 = $(`&lt;div id=&quot;html_a4892eb1e71a9913e28c241bcfa0c943&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 29&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 13.0 sqm&lt;br&gt;Intersecting area: 13.1 sqm&lt;/div&gt;`)[0];\n",
" popup_e3b17f9e57dc5e6b46b7cb03dd94f055.setContent(html_a4892eb1e71a9913e28c241bcfa0c943);\n",
" \n",
" \n",
"\n",
" geo_json_c9c776e017f5bbf9aa82308a6b3f654a.bindPopup(popup_e3b17f9e57dc5e6b46b7cb03dd94f055)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c9c776e017f5bbf9aa82308a6b3f654a.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_7046d52fc5ffecd09e6a3f16ff939de9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7046d52fc5ffecd09e6a3f16ff939de9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7046d52fc5ffecd09e6a3f16ff939de9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7046d52fc5ffecd09e6a3f16ff939de9_onEachFeature,\n",
" \n",
" style: geo_json_7046d52fc5ffecd09e6a3f16ff939de9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7046d52fc5ffecd09e6a3f16ff939de9_add (data) {\n",
" geo_json_7046d52fc5ffecd09e6a3f16ff939de9\n",
" .addData(data);\n",
" }\n",
" geo_json_7046d52fc5ffecd09e6a3f16ff939de9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7333869870532044, 52.346089779096694], [-1.7333701246474273, 52.34606949518292], [-1.733374166703817, 52.3460583771394], [-1.7334193497302135, 52.34605875138167], [-1.7334215774890445, 52.34608841233209], [-1.7333869870532044, 52.346089779096694]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7046d52fc5ffecd09e6a3f16ff939de9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f5a205de81dc97b3c99365ad610f1068 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a2bbbd35fa31a90b0890fdb24e75b7f8 = $(`&lt;div id=&quot;html_a2bbbd35fa31a90b0890fdb24e75b7f8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 30&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 10.3 sqm&lt;/div&gt;`)[0];\n",
" popup_f5a205de81dc97b3c99365ad610f1068.setContent(html_a2bbbd35fa31a90b0890fdb24e75b7f8);\n",
" \n",
" \n",
"\n",
" geo_json_7046d52fc5ffecd09e6a3f16ff939de9.bindPopup(popup_f5a205de81dc97b3c99365ad610f1068)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7046d52fc5ffecd09e6a3f16ff939de9.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_cd3fdfcfaa8255d9b75797483593fc83_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cd3fdfcfaa8255d9b75797483593fc83_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cd3fdfcfaa8255d9b75797483593fc83 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cd3fdfcfaa8255d9b75797483593fc83_onEachFeature,\n",
" \n",
" style: geo_json_cd3fdfcfaa8255d9b75797483593fc83_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cd3fdfcfaa8255d9b75797483593fc83_add (data) {\n",
" geo_json_cd3fdfcfaa8255d9b75797483593fc83\n",
" .addData(data);\n",
" }\n",
" geo_json_cd3fdfcfaa8255d9b75797483593fc83_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7301881068652507, 52.346540983768215], [-1.7301352906993208, 52.346550371302264], [-1.7301335056313525, 52.34655085449503], [-1.7301322675179975, 52.34655143783341], [-1.7301312589748759, 52.3465521691291], [-1.7301135856382066, 52.34656815561281], [-1.7300814744157096, 52.34656706285381], [-1.7300955015831132, 52.34653679523593], [-1.7301717605443985, 52.34651836312916], [-1.7301898070983117, 52.34652065633483], [-1.7301881068652507, 52.346540983768215]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cd3fdfcfaa8255d9b75797483593fc83.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_03a69e2e7c65d598e99a4c00a814df85 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9f3d0cb0dedb9e0ca5967aea25d5d585 = $(`&lt;div id=&quot;html_9f3d0cb0dedb9e0ca5967aea25d5d585&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 31&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 1.3 sqm&lt;/div&gt;`)[0];\n",
" popup_03a69e2e7c65d598e99a4c00a814df85.setContent(html_9f3d0cb0dedb9e0ca5967aea25d5d585);\n",
" \n",
" \n",
"\n",
" geo_json_cd3fdfcfaa8255d9b75797483593fc83.bindPopup(popup_03a69e2e7c65d598e99a4c00a814df85)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cd3fdfcfaa8255d9b75797483593fc83.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_62ad2f4afcc09c87407d9345bb5546c3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_62ad2f4afcc09c87407d9345bb5546c3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_62ad2f4afcc09c87407d9345bb5546c3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_62ad2f4afcc09c87407d9345bb5546c3_onEachFeature,\n",
" \n",
" style: geo_json_62ad2f4afcc09c87407d9345bb5546c3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_62ad2f4afcc09c87407d9345bb5546c3_add (data) {\n",
" geo_json_62ad2f4afcc09c87407d9345bb5546c3\n",
" .addData(data);\n",
" }\n",
" geo_json_62ad2f4afcc09c87407d9345bb5546c3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7328593699500192, 52.345811302518285], [-1.7327905353835134, 52.34583703248703], [-1.7327553939651672, 52.3458346120483], [-1.7327563197005313, 52.345814962490614], [-1.7328017753301788, 52.34579635660161], [-1.7328619585395437, 52.345796577043785], [-1.7328593699500192, 52.345811302518285]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_62ad2f4afcc09c87407d9345bb5546c3.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cdb9a9c036987533de52df11349bb16e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0f7e65294c059b504c02e4854b4e2a81 = $(`&lt;div id=&quot;html_0f7e65294c059b504c02e4854b4e2a81&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 32&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.7 sqm&lt;/div&gt;`)[0];\n",
" popup_cdb9a9c036987533de52df11349bb16e.setContent(html_0f7e65294c059b504c02e4854b4e2a81);\n",
" \n",
" \n",
"\n",
" geo_json_62ad2f4afcc09c87407d9345bb5546c3.bindPopup(popup_cdb9a9c036987533de52df11349bb16e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_62ad2f4afcc09c87407d9345bb5546c3.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" function geo_json_a8ff491124869f9b2ac8fc17d90f0f30_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a8ff491124869f9b2ac8fc17d90f0f30_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a8ff491124869f9b2ac8fc17d90f0f30 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a8ff491124869f9b2ac8fc17d90f0f30_onEachFeature,\n",
" \n",
" style: geo_json_a8ff491124869f9b2ac8fc17d90f0f30_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a8ff491124869f9b2ac8fc17d90f0f30_add (data) {\n",
" geo_json_a8ff491124869f9b2ac8fc17d90f0f30\n",
" .addData(data);\n",
" }\n",
" geo_json_a8ff491124869f9b2ac8fc17d90f0f30_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-1.7319681283123955, 52.3459519174533], [-1.731915740692348, 52.345952268017754], [-1.7319130802617706, 52.34595259282609], [-1.7319117050119532, 52.34595304102071], [-1.7318492881332272, 52.34597892343061], [-1.7316832826141388, 52.3459743242888], [-1.7316813912978495, 52.34597442158841], [-1.7316799465324366, 52.345974713191005], [-1.7316786313540364, 52.34597517949396], [-1.7316772539821879, 52.345975979194634], [-1.7316764228060975, 52.34597675855427], [-1.7316758714758995, 52.3459776266565], [-1.7316562403874094, 52.346032490590765], [-1.7316109663773924, 52.34603211726833], [-1.7315225058878163, 52.34599545590948], [-1.731538221293896, 52.34594702997055], [-1.7316713498534355, 52.345954864028776], [-1.7316728751041057, 52.345954856703074], [-1.731674363354655, 52.34595465599911], [-1.7316766933409773, 52.34595387194591], [-1.7316777689575567, 52.345953209113055], [-1.731678595763033, 52.345952424346336], [-1.7316793509278796, 52.34595086266886], [-1.7316793521689748, 52.345949929487496], [-1.7316790391524048, 52.34594901537711], [-1.7316557078778068, 52.345920549860054], [-1.7317393748036338, 52.34590148175637], [-1.7318216191112181, 52.34589335772421], [-1.7318379409127176, 52.34590459290432], [-1.7318276225542033, 52.34592039584052], [-1.731827151877516, 52.34592152124331], [-1.7318271257075073, 52.3459224507672], [-1.7318274108387097, 52.34592336391802], [-1.7318279987062453, 52.345924222017516], [-1.7318288601748082, 52.34592498723669], [-1.7318299616806465, 52.345925627137966], [-1.731831254929695, 52.345926115539235], [-1.7318338080504239, 52.345926543870036], [-1.7318357020216348, 52.345926493322175], [-1.731837162709865, 52.34592623861646], [-1.731935829076402, 52.34590207817333], [-1.7320092365288937, 52.345902172591344], [-1.7320282403391938, 52.345922885886274], [-1.7319681283123955, 52.3459519174533]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a8ff491124869f9b2ac8fc17d90f0f30.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e6adf41cbf0269e110ba873bd7c1fc74 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cba8f6825de4d98de118c0954c2976d4 = $(`&lt;div id=&quot;html_cba8f6825de4d98de118c0954c2976d4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 33&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 232.0 sqm&lt;br&gt;Intersecting area: 231.8 sqm&lt;/div&gt;`)[0];\n",
" popup_e6adf41cbf0269e110ba873bd7c1fc74.setContent(html_cba8f6825de4d98de118c0954c2976d4);\n",
" \n",
" \n",
"\n",
" geo_json_a8ff491124869f9b2ac8fc17d90f0f30.bindPopup(popup_e6adf41cbf0269e110ba873bd7c1fc74)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a8ff491124869f9b2ac8fc17d90f0f30.addTo(feature_group_6dac4e9dbc25e13614e66583a03a7074);\n",
" \n",
" \n",
" feature_group_6dac4e9dbc25e13614e66583a03a7074.addTo(map_b4a48d5a921e6663ace479ace1cb7741);\n",
" \n",
" \n",
" var feature_group_3ef3da6d976955e9e97ee65bee804c6a = L.featureGroup(\n",
" {\n",
"}\n",
" );\n",
" \n",
" \n",
" function geo_json_3363bd20181c3a3248f985e28049cf2c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3363bd20181c3a3248f985e28049cf2c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3363bd20181c3a3248f985e28049cf2c = L.geoJson(null, {\n",
" onEachFeature: geo_json_3363bd20181c3a3248f985e28049cf2c_onEachFeature,\n",
" \n",
" style: geo_json_3363bd20181c3a3248f985e28049cf2c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3363bd20181c3a3248f985e28049cf2c_add (data) {\n",
" geo_json_3363bd20181c3a3248f985e28049cf2c\n",
" .addData(data);\n",
" }\n",
" geo_json_3363bd20181c3a3248f985e28049cf2c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7310021061699445, 52.34502409557128], [-1.7309255081620205, 52.34499556179508], [-1.73091056072518, 52.34497612696225], [-1.730925761403591, 52.34493057139016], [-1.7309771025458631, 52.34490351949928], [-1.7310887087546134, 52.34487904019245], [-1.7311389318800698, 52.34489468811322], [-1.7311539736741433, 52.344977050861594], [-1.7311221897349691, 52.34501490912346], [-1.7310021061699445, 52.34502409557128]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3363bd20181c3a3248f985e28049cf2c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_609647f20e1e2405d07c548714d582f6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_87fa7368c6dd583ae25b84b35654a7e7 = $(`&lt;div id=&quot;html_87fa7368c6dd583ae25b84b35654a7e7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 1&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 208.0 sqm&lt;br&gt;Intersecting area: 200.8 sqm&lt;/div&gt;`)[0];\n",
" popup_609647f20e1e2405d07c548714d582f6.setContent(html_87fa7368c6dd583ae25b84b35654a7e7);\n",
" \n",
" \n",
"\n",
" geo_json_3363bd20181c3a3248f985e28049cf2c.bindPopup(popup_609647f20e1e2405d07c548714d582f6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3363bd20181c3a3248f985e28049cf2c.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_87994f75f8d0a122c9d0d29bedcd325d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_87994f75f8d0a122c9d0d29bedcd325d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_87994f75f8d0a122c9d0d29bedcd325d = L.geoJson(null, {\n",
" onEachFeature: geo_json_87994f75f8d0a122c9d0d29bedcd325d_onEachFeature,\n",
" \n",
" style: geo_json_87994f75f8d0a122c9d0d29bedcd325d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_87994f75f8d0a122c9d0d29bedcd325d_add (data) {\n",
" geo_json_87994f75f8d0a122c9d0d29bedcd325d\n",
" .addData(data);\n",
" }\n",
" geo_json_87994f75f8d0a122c9d0d29bedcd325d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7308406544248855, 52.34501473270179], [-1.73075258908829, 52.34500555287154], [-1.7307351169388936, 52.344981273750314], [-1.7307335693038362, 52.34497989562523], [-1.7307313055746245, 52.34497895908805], [-1.730729032422367, 52.344978608692685], [-1.7306924621176036, 52.3449778673506], [-1.7306841721339827, 52.34496776917768], [-1.730738551712964, 52.34495584194142], [-1.730742213437914, 52.344961349665176], [-1.7307433291353906, 52.344962304264314], [-1.730744490930735, 52.34496292004091], [-1.7307461948524132, 52.344963459733854], [-1.7307480693326593, 52.3449637112324], [-1.7307507346028428, 52.34496354828158], [-1.7308433592645067, 52.34494707329759], [-1.7308604600290067, 52.34495805147434], [-1.7308598654940992, 52.34500403134206], [-1.7308406544248855, 52.34501473270179]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_87994f75f8d0a122c9d0d29bedcd325d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_45be606d6d16517f22bccdf1e2f120a8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c4b07ceaa5430460f56c33c1f618682b = $(`&lt;div id=&quot;html_c4b07ceaa5430460f56c33c1f618682b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 2&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 64.0 sqm&lt;br&gt;Intersecting area: 55.3 sqm&lt;/div&gt;`)[0];\n",
" popup_45be606d6d16517f22bccdf1e2f120a8.setContent(html_c4b07ceaa5430460f56c33c1f618682b);\n",
" \n",
" \n",
"\n",
" geo_json_87994f75f8d0a122c9d0d29bedcd325d.bindPopup(popup_45be606d6d16517f22bccdf1e2f120a8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_87994f75f8d0a122c9d0d29bedcd325d.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_94709542b952e15cd3024798195bbcc0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_94709542b952e15cd3024798195bbcc0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_94709542b952e15cd3024798195bbcc0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_94709542b952e15cd3024798195bbcc0_onEachFeature,\n",
" \n",
" style: geo_json_94709542b952e15cd3024798195bbcc0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_94709542b952e15cd3024798195bbcc0_add (data) {\n",
" geo_json_94709542b952e15cd3024798195bbcc0\n",
" .addData(data);\n",
" }\n",
" geo_json_94709542b952e15cd3024798195bbcc0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7300592143168332, 52.345137323086355], [-1.730058968230246, 52.34510489476377], [-1.730118444618714, 52.34509185002339], [-1.730183872380181, 52.34509966801399], [-1.73019858310357, 52.34513674024904], [-1.7301681768456554, 52.34515621915942], [-1.7300592143168332, 52.345137323086355]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_94709542b952e15cd3024798195bbcc0.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f146f537e5b1965cec86acfbd37f332f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d408f94dc35281bb3cc131f93cb29183 = $(`&lt;div id=&quot;html_d408f94dc35281bb3cc131f93cb29183&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 3&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 53.0 sqm&lt;br&gt;Intersecting area: 50.2 sqm&lt;/div&gt;`)[0];\n",
" popup_f146f537e5b1965cec86acfbd37f332f.setContent(html_d408f94dc35281bb3cc131f93cb29183);\n",
" \n",
" \n",
"\n",
" geo_json_94709542b952e15cd3024798195bbcc0.bindPopup(popup_f146f537e5b1965cec86acfbd37f332f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_94709542b952e15cd3024798195bbcc0.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_5acfd6fa0a722aefaa45b619cc267494_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5acfd6fa0a722aefaa45b619cc267494_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5acfd6fa0a722aefaa45b619cc267494 = L.geoJson(null, {\n",
" onEachFeature: geo_json_5acfd6fa0a722aefaa45b619cc267494_onEachFeature,\n",
" \n",
" style: geo_json_5acfd6fa0a722aefaa45b619cc267494_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5acfd6fa0a722aefaa45b619cc267494_add (data) {\n",
" geo_json_5acfd6fa0a722aefaa45b619cc267494\n",
" .addData(data);\n",
" }\n",
" geo_json_5acfd6fa0a722aefaa45b619cc267494_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7298992711290624, 52.34523626449231], [-1.7299246307489928, 52.345213660828875], [-1.7299447313710026, 52.3452056658967], [-1.7299621864591472, 52.345215086109626], [-1.7299605274025407, 52.345245280369625], [-1.7298992711290624, 52.34523626449231]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5acfd6fa0a722aefaa45b619cc267494.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_bda92fac2e6f2af1f10d0db5824ea5fc = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_17b3547f205f072a4894cdf8f5c0d6bb = $(`&lt;div id=&quot;html_17b3547f205f072a4894cdf8f5c0d6bb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 4&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 11.7 sqm&lt;/div&gt;`)[0];\n",
" popup_bda92fac2e6f2af1f10d0db5824ea5fc.setContent(html_17b3547f205f072a4894cdf8f5c0d6bb);\n",
" \n",
" \n",
"\n",
" geo_json_5acfd6fa0a722aefaa45b619cc267494.bindPopup(popup_bda92fac2e6f2af1f10d0db5824ea5fc)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5acfd6fa0a722aefaa45b619cc267494.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_e59bdee5a19bf81d747e5d314b7ffc41_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e59bdee5a19bf81d747e5d314b7ffc41_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e59bdee5a19bf81d747e5d314b7ffc41 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e59bdee5a19bf81d747e5d314b7ffc41_onEachFeature,\n",
" \n",
" style: geo_json_e59bdee5a19bf81d747e5d314b7ffc41_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e59bdee5a19bf81d747e5d314b7ffc41_add (data) {\n",
" geo_json_e59bdee5a19bf81d747e5d314b7ffc41\n",
" .addData(data);\n",
" }\n",
" geo_json_e59bdee5a19bf81d747e5d314b7ffc41_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7301636920052734, 52.34526463779944], [-1.7301468334481989, 52.3452256736209], [-1.7301953275162278, 52.34521562623204], [-1.73021294633729, 52.345244720013596], [-1.730209795141197, 52.34526443909957], [-1.7301636920052734, 52.34526463779944]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e59bdee5a19bf81d747e5d314b7ffc41.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_34c3e24686a5b9e41778764cb8abab55 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_78d414163eadd60b7e773a7ef5486764 = $(`&lt;div id=&quot;html_78d414163eadd60b7e773a7ef5486764&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 5&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.0 sqm&lt;/div&gt;`)[0];\n",
" popup_34c3e24686a5b9e41778764cb8abab55.setContent(html_78d414163eadd60b7e773a7ef5486764);\n",
" \n",
" \n",
"\n",
" geo_json_e59bdee5a19bf81d747e5d314b7ffc41.bindPopup(popup_34c3e24686a5b9e41778764cb8abab55)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e59bdee5a19bf81d747e5d314b7ffc41.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_95d8f78db0069064582fb13a60e369f1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_95d8f78db0069064582fb13a60e369f1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_95d8f78db0069064582fb13a60e369f1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_95d8f78db0069064582fb13a60e369f1_onEachFeature,\n",
" \n",
" style: geo_json_95d8f78db0069064582fb13a60e369f1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_95d8f78db0069064582fb13a60e369f1_add (data) {\n",
" geo_json_95d8f78db0069064582fb13a60e369f1\n",
" .addData(data);\n",
" }\n",
" geo_json_95d8f78db0069064582fb13a60e369f1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7309722272820427, 52.34529268053979], [-1.7309678776480306, 52.345264381219806], [-1.7309866035673929, 52.34526156043442], [-1.7310046340022398, 52.34526352893919], [-1.731005164473096, 52.345282323234365], [-1.7309722272820427, 52.34529268053979]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_95d8f78db0069064582fb13a60e369f1.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f357b62acbdda8f1c5b6b623f3ab0d90 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_99deecc9c87b4024edf62532790a4681 = $(`&lt;div id=&quot;html_99deecc9c87b4024edf62532790a4681&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 6&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.7 sqm&lt;/div&gt;`)[0];\n",
" popup_f357b62acbdda8f1c5b6b623f3ab0d90.setContent(html_99deecc9c87b4024edf62532790a4681);\n",
" \n",
" \n",
"\n",
" geo_json_95d8f78db0069064582fb13a60e369f1.bindPopup(popup_f357b62acbdda8f1c5b6b623f3ab0d90)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_95d8f78db0069064582fb13a60e369f1.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_db38de50e706996dd3202d90d7260ae7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_db38de50e706996dd3202d90d7260ae7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_db38de50e706996dd3202d90d7260ae7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_db38de50e706996dd3202d90d7260ae7_onEachFeature,\n",
" \n",
" style: geo_json_db38de50e706996dd3202d90d7260ae7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_db38de50e706996dd3202d90d7260ae7_add (data) {\n",
" geo_json_db38de50e706996dd3202d90d7260ae7\n",
" .addData(data);\n",
" }\n",
" geo_json_db38de50e706996dd3202d90d7260ae7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7295331471172188, 52.345452172341254], [-1.729524731450558, 52.34545213084644], [-1.7295319629400614, 52.34543049090478], [-1.7295530945550321, 52.345388578718776], [-1.7295622292784931, 52.34537523956918], [-1.7295661972018064, 52.34537785499435], [-1.7295653319623936, 52.34543286398274], [-1.7295331471172188, 52.345452172341254]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_db38de50e706996dd3202d90d7260ae7.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a842eed0922029e21ca9489ebfc87555 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_96a021a5e82570b4c33aa5ba1ab86879 = $(`&lt;div id=&quot;html_96a021a5e82570b4c33aa5ba1ab86879&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 7&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 72.0 sqm&lt;br&gt;Intersecting area: 11.9 sqm&lt;/div&gt;`)[0];\n",
" popup_a842eed0922029e21ca9489ebfc87555.setContent(html_96a021a5e82570b4c33aa5ba1ab86879);\n",
" \n",
" \n",
"\n",
" geo_json_db38de50e706996dd3202d90d7260ae7.bindPopup(popup_a842eed0922029e21ca9489ebfc87555)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_db38de50e706996dd3202d90d7260ae7.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_e36be63382f15093b6faac8b64fa71fb_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e36be63382f15093b6faac8b64fa71fb_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e36be63382f15093b6faac8b64fa71fb = L.geoJson(null, {\n",
" onEachFeature: geo_json_e36be63382f15093b6faac8b64fa71fb_onEachFeature,\n",
" \n",
" style: geo_json_e36be63382f15093b6faac8b64fa71fb_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e36be63382f15093b6faac8b64fa71fb_add (data) {\n",
" geo_json_e36be63382f15093b6faac8b64fa71fb\n",
" .addData(data);\n",
" }\n",
" geo_json_e36be63382f15093b6faac8b64fa71fb_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7302025004592816, 52.345576879175084], [-1.73021644605464, 52.345547166045506], [-1.7302679281571791, 52.34553994566195], [-1.7302821470926404, 52.345578747374475], [-1.7302176283973834, 52.345587614701664], [-1.7302025004592816, 52.345576879175084]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e36be63382f15093b6faac8b64fa71fb.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cb257ca5af682ad580b6686d09de0c8f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bc93a85dc6e9e049c04e0d6c3b41f225 = $(`&lt;div id=&quot;html_bc93a85dc6e9e049c04e0d6c3b41f225&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 8&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 20.0 sqm&lt;br&gt;Intersecting area: 20.2 sqm&lt;/div&gt;`)[0];\n",
" popup_cb257ca5af682ad580b6686d09de0c8f.setContent(html_bc93a85dc6e9e049c04e0d6c3b41f225);\n",
" \n",
" \n",
"\n",
" geo_json_e36be63382f15093b6faac8b64fa71fb.bindPopup(popup_cb257ca5af682ad580b6686d09de0c8f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e36be63382f15093b6faac8b64fa71fb.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_02faa5af62ddba3b4434a47bb29e3e76_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_02faa5af62ddba3b4434a47bb29e3e76_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_02faa5af62ddba3b4434a47bb29e3e76 = L.geoJson(null, {\n",
" onEachFeature: geo_json_02faa5af62ddba3b4434a47bb29e3e76_onEachFeature,\n",
" \n",
" style: geo_json_02faa5af62ddba3b4434a47bb29e3e76_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_02faa5af62ddba3b4434a47bb29e3e76_add (data) {\n",
" geo_json_02faa5af62ddba3b4434a47bb29e3e76\n",
" .addData(data);\n",
" }\n",
" geo_json_02faa5af62ddba3b4434a47bb29e3e76_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.730207789605295, 52.345669308579765], [-1.7301745475022283, 52.345669138356534], [-1.7301436463937512, 52.34564996640707], [-1.7301439215368069, 52.34562983170649], [-1.7301709515816268, 52.345619087167194], [-1.7302075449880956, 52.34561080436792], [-1.7302393719968128, 52.345630038647066], [-1.7302390941550665, 52.345650383710556], [-1.730207789605295, 52.345669308579765]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_02faa5af62ddba3b4434a47bb29e3e76.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1ee6d705420508f6ee67bf6f9f2f830e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0667e1f7cc8a836b052b96af9a6f3979 = $(`&lt;div id=&quot;html_0667e1f7cc8a836b052b96af9a6f3979&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 9&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 31.0 sqm&lt;br&gt;Intersecting area: 31.5 sqm&lt;/div&gt;`)[0];\n",
" popup_1ee6d705420508f6ee67bf6f9f2f830e.setContent(html_0667e1f7cc8a836b052b96af9a6f3979);\n",
" \n",
" \n",
"\n",
" geo_json_02faa5af62ddba3b4434a47bb29e3e76.bindPopup(popup_1ee6d705420508f6ee67bf6f9f2f830e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_02faa5af62ddba3b4434a47bb29e3e76.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_64ef99da56b0e96ac163bf6a68049e8c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_64ef99da56b0e96ac163bf6a68049e8c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_64ef99da56b0e96ac163bf6a68049e8c = L.geoJson(null, {\n",
" onEachFeature: geo_json_64ef99da56b0e96ac163bf6a68049e8c_onEachFeature,\n",
" \n",
" style: geo_json_64ef99da56b0e96ac163bf6a68049e8c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_64ef99da56b0e96ac163bf6a68049e8c_add (data) {\n",
" geo_json_64ef99da56b0e96ac163bf6a68049e8c\n",
" .addData(data);\n",
" }\n",
" geo_json_64ef99da56b0e96ac163bf6a68049e8c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7337162222593014, 52.34528204661779], [-1.7336694326264925, 52.34525379659078], [-1.733669328533116, 52.34521513854377], [-1.7337414681854357, 52.34515943771892], [-1.7337575745128069, 52.34515340497106], [-1.7337409178379348, 52.3452846133876], [-1.7337162222593014, 52.34528204661779]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_64ef99da56b0e96ac163bf6a68049e8c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4cca7116125121fd67fab6e46d20a502 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8b81c4ea104d06189a2fb99340d54006 = $(`&lt;div id=&quot;html_8b81c4ea104d06189a2fb99340d54006&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 10&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 183.0 sqm&lt;br&gt;Intersecting area: 54.4 sqm&lt;/div&gt;`)[0];\n",
" popup_4cca7116125121fd67fab6e46d20a502.setContent(html_8b81c4ea104d06189a2fb99340d54006);\n",
" \n",
" \n",
"\n",
" geo_json_64ef99da56b0e96ac163bf6a68049e8c.bindPopup(popup_4cca7116125121fd67fab6e46d20a502)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_64ef99da56b0e96ac163bf6a68049e8c.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_98f154022fc361c63ba1d18c0efade89_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_98f154022fc361c63ba1d18c0efade89_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_98f154022fc361c63ba1d18c0efade89 = L.geoJson(null, {\n",
" onEachFeature: geo_json_98f154022fc361c63ba1d18c0efade89_onEachFeature,\n",
" \n",
" style: geo_json_98f154022fc361c63ba1d18c0efade89_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_98f154022fc361c63ba1d18c0efade89_add (data) {\n",
" geo_json_98f154022fc361c63ba1d18c0efade89\n",
" .addData(data);\n",
" }\n",
" geo_json_98f154022fc361c63ba1d18c0efade89_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7316701532895975, 52.34576922292523], [-1.731669838380911, 52.34575891316297], [-1.7317142560907424, 52.345731646883074], [-1.7317755010214326, 52.34573081663768], [-1.7318236318502467, 52.34575029243499], [-1.7318224907033206, 52.34576956840826], [-1.7316701532895975, 52.34576922292523]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_98f154022fc361c63ba1d18c0efade89.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4567a639b186ecf3520fb1b2c93af8c8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3c5f18a4501831268e1336ee93c5ca4c = $(`&lt;div id=&quot;html_3c5f18a4501831268e1336ee93c5ca4c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 11&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 36.0 sqm&lt;br&gt;Intersecting area: 36.3 sqm&lt;/div&gt;`)[0];\n",
" popup_4567a639b186ecf3520fb1b2c93af8c8.setContent(html_3c5f18a4501831268e1336ee93c5ca4c);\n",
" \n",
" \n",
"\n",
" geo_json_98f154022fc361c63ba1d18c0efade89.bindPopup(popup_4567a639b186ecf3520fb1b2c93af8c8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_98f154022fc361c63ba1d18c0efade89.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_a69367a96a02ea6afdc0c000586f2d29_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a69367a96a02ea6afdc0c000586f2d29_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a69367a96a02ea6afdc0c000586f2d29 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a69367a96a02ea6afdc0c000586f2d29_onEachFeature,\n",
" \n",
" style: geo_json_a69367a96a02ea6afdc0c000586f2d29_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a69367a96a02ea6afdc0c000586f2d29_add (data) {\n",
" geo_json_a69367a96a02ea6afdc0c000586f2d29\n",
" .addData(data);\n",
" }\n",
" geo_json_a69367a96a02ea6afdc0c000586f2d29_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.733057585462242, 52.345772362204315], [-1.73306354561995, 52.34574596607778], [-1.7330819840568448, 52.345725062345984], [-1.7331570639305163, 52.34572503755972], [-1.7331890562979135, 52.34573530819652], [-1.7332040377894722, 52.345764422551454], [-1.7331961463753305, 52.34577267482504], [-1.733057585462242, 52.345772362204315]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a69367a96a02ea6afdc0c000586f2d29.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0b3b68b9adb64fbd31b4fff0b970e860 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e77429c94d0f536d60eaf77be83cfe30 = $(`&lt;div id=&quot;html_e77429c94d0f536d60eaf77be83cfe30&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 12&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 45.0 sqm&lt;br&gt;Intersecting area: 45.4 sqm&lt;/div&gt;`)[0];\n",
" popup_0b3b68b9adb64fbd31b4fff0b970e860.setContent(html_e77429c94d0f536d60eaf77be83cfe30);\n",
" \n",
" \n",
"\n",
" geo_json_a69367a96a02ea6afdc0c000586f2d29.bindPopup(popup_0b3b68b9adb64fbd31b4fff0b970e860)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a69367a96a02ea6afdc0c000586f2d29.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_d64e1b388e7073737c858d66413affd0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d64e1b388e7073737c858d66413affd0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d64e1b388e7073737c858d66413affd0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d64e1b388e7073737c858d66413affd0_onEachFeature,\n",
" \n",
" style: geo_json_d64e1b388e7073737c858d66413affd0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d64e1b388e7073737c858d66413affd0_add (data) {\n",
" geo_json_d64e1b388e7073737c858d66413affd0\n",
" .addData(data);\n",
" }\n",
" geo_json_d64e1b388e7073737c858d66413affd0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7304550962238494, 52.34568814226307], [-1.7304264423984057, 52.34567114574253], [-1.7304248877245796, 52.34567044096401], [-1.7304228955647047, 52.34566998331593], [-1.7304397457158576, 52.345629462483025], [-1.730536178921619, 52.34562907357426], [-1.730537618630695, 52.345628888956895], [-1.7305389683721153, 52.34562853152861], [-1.7305610979847739, 52.34562098522828], [-1.7306057623460689, 52.345648437814006], [-1.7305889521911184, 52.345687955457066], [-1.7304550962238494, 52.34568814226307]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d64e1b388e7073737c858d66413affd0.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c152879933177f8cfa24919a16bf5f93 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1958fe5bd2cc594caa9b6d47434f03e4 = $(`&lt;div id=&quot;html_1958fe5bd2cc594caa9b6d47434f03e4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 13&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 73.0 sqm&lt;br&gt;Intersecting area: 72.9 sqm&lt;/div&gt;`)[0];\n",
" popup_c152879933177f8cfa24919a16bf5f93.setContent(html_1958fe5bd2cc594caa9b6d47434f03e4);\n",
" \n",
" \n",
"\n",
" geo_json_d64e1b388e7073737c858d66413affd0.bindPopup(popup_c152879933177f8cfa24919a16bf5f93)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d64e1b388e7073737c858d66413affd0.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_92c58591f526e8836948743aa7889572_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_92c58591f526e8836948743aa7889572_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_92c58591f526e8836948743aa7889572 = L.geoJson(null, {\n",
" onEachFeature: geo_json_92c58591f526e8836948743aa7889572_onEachFeature,\n",
" \n",
" style: geo_json_92c58591f526e8836948743aa7889572_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_92c58591f526e8836948743aa7889572_add (data) {\n",
" geo_json_92c58591f526e8836948743aa7889572\n",
" .addData(data);\n",
" }\n",
" geo_json_92c58591f526e8836948743aa7889572_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.730294197065198, 52.3457058233], [-1.730276656379038, 52.34569619256881], [-1.7302919961773233, 52.34566532737105], [-1.7303524812353004, 52.34566464177225], [-1.7304139850411953, 52.34567482849925], [-1.7304133099266175, 52.345705001629334], [-1.730294197065198, 52.3457058233]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_92c58591f526e8836948743aa7889572.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1d6164891f3b174336c61655cbcb3ce2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_57dea7c025a43e875d33ce9125f9edcc = $(`&lt;div id=&quot;html_57dea7c025a43e875d33ce9125f9edcc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 14&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 37.0 sqm&lt;br&gt;Intersecting area: 37.4 sqm&lt;/div&gt;`)[0];\n",
" popup_1d6164891f3b174336c61655cbcb3ce2.setContent(html_57dea7c025a43e875d33ce9125f9edcc);\n",
" \n",
" \n",
"\n",
" geo_json_92c58591f526e8836948743aa7889572.bindPopup(popup_1d6164891f3b174336c61655cbcb3ce2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_92c58591f526e8836948743aa7889572.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_77182cde8d5b83f7d8904ac5cd4a980c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_77182cde8d5b83f7d8904ac5cd4a980c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_77182cde8d5b83f7d8904ac5cd4a980c = L.geoJson(null, {\n",
" onEachFeature: geo_json_77182cde8d5b83f7d8904ac5cd4a980c_onEachFeature,\n",
" \n",
" style: geo_json_77182cde8d5b83f7d8904ac5cd4a980c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_77182cde8d5b83f7d8904ac5cd4a980c_add (data) {\n",
" geo_json_77182cde8d5b83f7d8904ac5cd4a980c\n",
" .addData(data);\n",
" }\n",
" geo_json_77182cde8d5b83f7d8904ac5cd4a980c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7305710962542056, 52.34576672457587], [-1.7305692974624962, 52.34572016478641], [-1.730657665663831, 52.34565743921994], [-1.7306840177045966, 52.34565631970757], [-1.730735285866252, 52.345647834615335], [-1.7307676099094622, 52.345667209231834], [-1.7307666920870104, 52.34576716994722], [-1.7305710962542056, 52.34576672457587]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_77182cde8d5b83f7d8904ac5cd4a980c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_564d58bb57a4fae0e848859ed81ff7c1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_254b720f35a04982f027dabcbecc3438 = $(`&lt;div id=&quot;html_254b720f35a04982f027dabcbecc3438&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 15&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 145.0 sqm&lt;br&gt;Intersecting area: 145.1 sqm&lt;/div&gt;`)[0];\n",
" popup_564d58bb57a4fae0e848859ed81ff7c1.setContent(html_254b720f35a04982f027dabcbecc3438);\n",
" \n",
" \n",
"\n",
" geo_json_77182cde8d5b83f7d8904ac5cd4a980c.bindPopup(popup_564d58bb57a4fae0e848859ed81ff7c1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_77182cde8d5b83f7d8904ac5cd4a980c.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_5ef6b54942e3278de2eb2b11f52c2f3a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5ef6b54942e3278de2eb2b11f52c2f3a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5ef6b54942e3278de2eb2b11f52c2f3a = L.geoJson(null, {\n",
" onEachFeature: geo_json_5ef6b54942e3278de2eb2b11f52c2f3a_onEachFeature,\n",
" \n",
" style: geo_json_5ef6b54942e3278de2eb2b11f52c2f3a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5ef6b54942e3278de2eb2b11f52c2f3a_add (data) {\n",
" geo_json_5ef6b54942e3278de2eb2b11f52c2f3a\n",
" .addData(data);\n",
" }\n",
" geo_json_5ef6b54942e3278de2eb2b11f52c2f3a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.73050848178488, 52.34529267042786], [-1.7305068679319562, 52.34529373478683], [-1.730506005502495, 52.34529482513], [-1.730488187396478, 52.34532822264065], [-1.7304558888520114, 52.34532814904282], [-1.7304392526357575, 52.345312461010636], [-1.7304373217943003, 52.34531133642908], [-1.7304348624189112, 52.345310707806824], [-1.7304333422539246, 52.345310606349145], [-1.7303113204865843, 52.34531030482215], [-1.730292559841869, 52.34529975071716], [-1.7302779142192568, 52.34523214885768], [-1.7302772749452966, 52.345230819550494], [-1.7302762562412604, 52.345229847184825], [-1.7302745516341262, 52.345228937086326], [-1.730219184912304, 52.34520756790183], [-1.7302218800668345, 52.3451793178829], [-1.7303281482102342, 52.34515368464748], [-1.7303295248648485, 52.345153244572295], [-1.7303307190444477, 52.34515263775964], [-1.7303316777440272, 52.34515189016132], [-1.7303323581847232, 52.345151035846044], [-1.7303327733194067, 52.34514987616043], [-1.7303325984508728, 52.34514845800835], [-1.7303317080606513, 52.345147144311795], [-1.7303304820585845, 52.345146224515226], [-1.7302791629796008, 52.34511970511483], [-1.730293155032582, 52.3450832835999], [-1.730298787316271, 52.34507123610505], [-1.7304027169695044, 52.34507237924546], [-1.7304188919181767, 52.34511878660797], [-1.730392876638403, 52.34513024554296], [-1.7303917293139464, 52.345130872242606], [-1.7303908204569833, 52.34513163074074], [-1.7303900799124832, 52.34513271416756], [-1.7303898218217344, 52.345133878708275], [-1.7303897525575647, 52.34514696736876], [-1.7303903740303948, 52.345148569038784], [-1.730391895357599, 52.34514992732451], [-1.7303937648679688, 52.34515075688707], [-1.7303963470785562, 52.34515121947301], [-1.7303990268863247, 52.34515108173996], [-1.730475259620383, 52.34513558647224], [-1.7304916223644342, 52.345167528139775], [-1.730492449560622, 52.345168612442905], [-1.7304934314772644, 52.345169359067086], [-1.7304946491412907, 52.34516996058674], [-1.7304971760342895, 52.34517058936587], [-1.7305205035794007, 52.34517193170943], [-1.7305358493559406, 52.34520431247127], [-1.730536654381961, 52.34520542279624], [-1.7305376317594052, 52.34520619098544], [-1.730538856652905, 52.34520681140044], [-1.7305644166965566, 52.34521713732433], [-1.7305501726061663, 52.345272849440825], [-1.73050848178488, 52.34529267042786]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5ef6b54942e3278de2eb2b11f52c2f3a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_399094522ac0c555bf5354b541d0f98c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_eb55c2f87d0685aa46c9875c5b48451c = $(`&lt;div id=&quot;html_eb55c2f87d0685aa46c9875c5b48451c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 16&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 394.0 sqm&lt;br&gt;Intersecting area: 394.4 sqm&lt;/div&gt;`)[0];\n",
" popup_399094522ac0c555bf5354b541d0f98c.setContent(html_eb55c2f87d0685aa46c9875c5b48451c);\n",
" \n",
" \n",
"\n",
" geo_json_5ef6b54942e3278de2eb2b11f52c2f3a.bindPopup(popup_399094522ac0c555bf5354b541d0f98c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5ef6b54942e3278de2eb2b11f52c2f3a.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_69e581f7aabc11ec6955ee66f1bf65a7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_69e581f7aabc11ec6955ee66f1bf65a7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_69e581f7aabc11ec6955ee66f1bf65a7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_69e581f7aabc11ec6955ee66f1bf65a7_onEachFeature,\n",
" \n",
" style: geo_json_69e581f7aabc11ec6955ee66f1bf65a7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_69e581f7aabc11ec6955ee66f1bf65a7_add (data) {\n",
" geo_json_69e581f7aabc11ec6955ee66f1bf65a7\n",
" .addData(data);\n",
" }\n",
" geo_json_69e581f7aabc11ec6955ee66f1bf65a7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.73362310933027, 52.34572096899653], [-1.7336246945455842, 52.34569923789114], [-1.733655823684767, 52.34569021890807], [-1.7336886866587646, 52.345696045122914], [-1.7336842437860414, 52.3457310418445], [-1.73362310933027, 52.34572096899653]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_69e581f7aabc11ec6955ee66f1bf65a7.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d5291ccb3f76b2a18e1b63adbd7add70 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_876309de7bda7cdfd1047fd541424ea5 = $(`&lt;div id=&quot;html_876309de7bda7cdfd1047fd541424ea5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 17&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 126.0 sqm&lt;br&gt;Intersecting area: 15.3 sqm&lt;/div&gt;`)[0];\n",
" popup_d5291ccb3f76b2a18e1b63adbd7add70.setContent(html_876309de7bda7cdfd1047fd541424ea5);\n",
" \n",
" \n",
"\n",
" geo_json_69e581f7aabc11ec6955ee66f1bf65a7.bindPopup(popup_d5291ccb3f76b2a18e1b63adbd7add70)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_69e581f7aabc11ec6955ee66f1bf65a7.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_d486d6812153e9260d2bcf47d66e295d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d486d6812153e9260d2bcf47d66e295d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d486d6812153e9260d2bcf47d66e295d = L.geoJson(null, {\n",
" onEachFeature: geo_json_d486d6812153e9260d2bcf47d66e295d_onEachFeature,\n",
" \n",
" style: geo_json_d486d6812153e9260d2bcf47d66e295d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d486d6812153e9260d2bcf47d66e295d_add (data) {\n",
" geo_json_d486d6812153e9260d2bcf47d66e295d\n",
" .addData(data);\n",
" }\n",
" geo_json_d486d6812153e9260d2bcf47d66e295d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7306202367095513, 52.346766263065795], [-1.730536518806031, 52.34675808909191], [-1.7305186423276164, 52.346701920828735], [-1.7306100181512005, 52.34666350712725], [-1.7306142810638454, 52.34666497414803], [-1.7306202367095513, 52.346766263065795]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d486d6812153e9260d2bcf47d66e295d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f629f04e242904c5e1864a7be47579b0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_92534a3ebabecb68c0d7279d4dc73bfb = $(`&lt;div id=&quot;html_92534a3ebabecb68c0d7279d4dc73bfb&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 18&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 56.0 sqm&lt;br&gt;Intersecting area: 55.9 sqm&lt;/div&gt;`)[0];\n",
" popup_f629f04e242904c5e1864a7be47579b0.setContent(html_92534a3ebabecb68c0d7279d4dc73bfb);\n",
" \n",
" \n",
"\n",
" geo_json_d486d6812153e9260d2bcf47d66e295d.bindPopup(popup_f629f04e242904c5e1864a7be47579b0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d486d6812153e9260d2bcf47d66e295d.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_e414c0a30594c940f1186b71278825e2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e414c0a30594c940f1186b71278825e2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e414c0a30594c940f1186b71278825e2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e414c0a30594c940f1186b71278825e2_onEachFeature,\n",
" \n",
" style: geo_json_e414c0a30594c940f1186b71278825e2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e414c0a30594c940f1186b71278825e2_add (data) {\n",
" geo_json_e414c0a30594c940f1186b71278825e2\n",
" .addData(data);\n",
" }\n",
" geo_json_e414c0a30594c940f1186b71278825e2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.731523697890174, 52.34604517974822], [-1.731583331752536, 52.34604502560484], [-1.73167539223573, 52.34605637781565], [-1.7316898074794753, 52.3461826156658], [-1.7316433806586056, 52.34621190016803], [-1.7315979919506392, 52.34621225658059], [-1.7315343478364378, 52.34617716189445], [-1.7315327235653546, 52.34617655047325], [-1.731530517956948, 52.34617618495981], [-1.731521717777683, 52.34617614071357], [-1.731423908165027, 52.346119989808464], [-1.731418207788413, 52.346116884241724], [-1.7314122538000725, 52.3461139641955], [-1.7314060578894894, 52.34611123778565], [-1.731399640571169, 52.34610871225199], [-1.7313930164852858, 52.346106393925176], [-1.7313867087102925, 52.34610444491299], [-1.7313902222030348, 52.34609027356836], [-1.731487588490774, 52.34607194608086], [-1.7314895796775749, 52.346071357248725], [-1.7314911956248256, 52.346070432229745], [-1.731523697890174, 52.34604517974822]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e414c0a30594c940f1186b71278825e2.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_792d38b30f76cb66cc8f790b25989193 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c07d3eb26eec58cb4b60e1cd66597bc9 = $(`&lt;div id=&quot;html_c07d3eb26eec58cb4b60e1cd66597bc9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 19&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 247.0 sqm&lt;br&gt;Intersecting area: 246.8 sqm&lt;/div&gt;`)[0];\n",
" popup_792d38b30f76cb66cc8f790b25989193.setContent(html_c07d3eb26eec58cb4b60e1cd66597bc9);\n",
" \n",
" \n",
"\n",
" geo_json_e414c0a30594c940f1186b71278825e2.bindPopup(popup_792d38b30f76cb66cc8f790b25989193)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e414c0a30594c940f1186b71278825e2.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_dd11ebbed5466eed766ca232517ed312_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_dd11ebbed5466eed766ca232517ed312_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_dd11ebbed5466eed766ca232517ed312 = L.geoJson(null, {\n",
" onEachFeature: geo_json_dd11ebbed5466eed766ca232517ed312_onEachFeature,\n",
" \n",
" style: geo_json_dd11ebbed5466eed766ca232517ed312_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_dd11ebbed5466eed766ca232517ed312_add (data) {\n",
" geo_json_dd11ebbed5466eed766ca232517ed312\n",
" .addData(data);\n",
" }\n",
" geo_json_dd11ebbed5466eed766ca232517ed312_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7318554258407426, 52.34635146194597], [-1.7319955643601332, 52.346361383768325], [-1.7320116393323646, 52.34637293302354], [-1.7319997897481543, 52.34644949987369], [-1.7319272850351168, 52.34640893816828], [-1.7317572424681014, 52.34631134986983], [-1.7318167052636628, 52.34630652661632], [-1.7318496412062776, 52.346348927985694], [-1.7318509670121256, 52.34635010510949], [-1.731852829049678, 52.34635096789349], [-1.7318554258407426, 52.34635146194597]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_dd11ebbed5466eed766ca232517ed312.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7b719cd4758e3504c1d81b1393759417 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1a6b144e7380bfcba185a7fadd2cc41b = $(`&lt;div id=&quot;html_1a6b144e7380bfcba185a7fadd2cc41b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 20&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 77.0 sqm&lt;br&gt;Intersecting area: 77.2 sqm&lt;/div&gt;`)[0];\n",
" popup_7b719cd4758e3504c1d81b1393759417.setContent(html_1a6b144e7380bfcba185a7fadd2cc41b);\n",
" \n",
" \n",
"\n",
" geo_json_dd11ebbed5466eed766ca232517ed312.bindPopup(popup_7b719cd4758e3504c1d81b1393759417)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_dd11ebbed5466eed766ca232517ed312.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_4c9f4137ff69d557226dbb9879306fad_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4c9f4137ff69d557226dbb9879306fad_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4c9f4137ff69d557226dbb9879306fad = L.geoJson(null, {\n",
" onEachFeature: geo_json_4c9f4137ff69d557226dbb9879306fad_onEachFeature,\n",
" \n",
" style: geo_json_4c9f4137ff69d557226dbb9879306fad_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4c9f4137ff69d557226dbb9879306fad_add (data) {\n",
" geo_json_4c9f4137ff69d557226dbb9879306fad\n",
" .addData(data);\n",
" }\n",
" geo_json_4c9f4137ff69d557226dbb9879306fad_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.731821372624065, 52.34578259984812], [-1.731821313847925, 52.34578358054317], [-1.7318238620700228, 52.34580497487563], [-1.7317024251180275, 52.34580775165695], [-1.7316825774255262, 52.34578121435166], [-1.7316806540649679, 52.34578005834628], [-1.731678552616242, 52.34577946382366], [-1.7316770283774945, 52.345779304834565], [-1.7316704595976626, 52.34577925577139], [-1.7316701532895975, 52.34576922292523], [-1.7318224907033206, 52.34576956840826], [-1.7318217761623875, 52.34578165319644], [-1.731821372624065, 52.34578259984812]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4c9f4137ff69d557226dbb9879306fad.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_985c8400166e0b31fcd2f004c9dcad5e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_552a1c3fb0b1935eef17617fd870108f = $(`&lt;div id=&quot;html_552a1c3fb0b1935eef17617fd870108f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 21&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 38.0 sqm&lt;br&gt;Intersecting area: 38.3 sqm&lt;/div&gt;`)[0];\n",
" popup_985c8400166e0b31fcd2f004c9dcad5e.setContent(html_552a1c3fb0b1935eef17617fd870108f);\n",
" \n",
" \n",
"\n",
" geo_json_4c9f4137ff69d557226dbb9879306fad.bindPopup(popup_985c8400166e0b31fcd2f004c9dcad5e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4c9f4137ff69d557226dbb9879306fad.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_95673bff43975495e7109b22361704a6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_95673bff43975495e7109b22361704a6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_95673bff43975495e7109b22361704a6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_95673bff43975495e7109b22361704a6_onEachFeature,\n",
" \n",
" style: geo_json_95673bff43975495e7109b22361704a6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_95673bff43975495e7109b22361704a6_add (data) {\n",
" geo_json_95673bff43975495e7109b22361704a6\n",
" .addData(data);\n",
" }\n",
" geo_json_95673bff43975495e7109b22361704a6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7318461589726835, 52.34587003167834], [-1.731817319747354, 52.34583940235177], [-1.7318347567364245, 52.34583006601716], [-1.7318793014164808, 52.345839110437204], [-1.7318755439758118, 52.34586282792571], [-1.7318461589726835, 52.34587003167834]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_95673bff43975495e7109b22361704a6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d478bca5fb6a50ce915bc416b9b3335b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_50d87f764a60f61a1ee546f4418ba0c4 = $(`&lt;div id=&quot;html_50d87f764a60f61a1ee546f4418ba0c4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 22&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 12.0 sqm&lt;br&gt;Intersecting area: 11.9 sqm&lt;/div&gt;`)[0];\n",
" popup_d478bca5fb6a50ce915bc416b9b3335b.setContent(html_50d87f764a60f61a1ee546f4418ba0c4);\n",
" \n",
" \n",
"\n",
" geo_json_95673bff43975495e7109b22361704a6.bindPopup(popup_d478bca5fb6a50ce915bc416b9b3335b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_95673bff43975495e7109b22361704a6.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770_onEachFeature,\n",
" \n",
" style: geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770_add (data) {\n",
" geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770\n",
" .addData(data);\n",
" }\n",
" geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7320980750549864, 52.34591662058683], [-1.7321080360693257, 52.34589312751056], [-1.7321726603433203, 52.34588550543386], [-1.7321749267052997, 52.34591568433611], [-1.7321564244843037, 52.345925671891244], [-1.7320980750549864, 52.34591662058683]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b8a2693a38ae50b92c8fee2e170578f3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7f4d417b1c90db83690e4290c80aca33 = $(`&lt;div id=&quot;html_7f4d417b1c90db83690e4290c80aca33&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 23&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 17.0 sqm&lt;br&gt;Intersecting area: 17.1 sqm&lt;/div&gt;`)[0];\n",
" popup_b8a2693a38ae50b92c8fee2e170578f3.setContent(html_7f4d417b1c90db83690e4290c80aca33);\n",
" \n",
" \n",
"\n",
" geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770.bindPopup(popup_b8a2693a38ae50b92c8fee2e170578f3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2f2bc7cd8fc53ec4d6ec110e8fac9770.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_8b68bcf8aee9d38f3fceb440c762d2cf_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8b68bcf8aee9d38f3fceb440c762d2cf_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8b68bcf8aee9d38f3fceb440c762d2cf = L.geoJson(null, {\n",
" onEachFeature: geo_json_8b68bcf8aee9d38f3fceb440c762d2cf_onEachFeature,\n",
" \n",
" style: geo_json_8b68bcf8aee9d38f3fceb440c762d2cf_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8b68bcf8aee9d38f3fceb440c762d2cf_add (data) {\n",
" geo_json_8b68bcf8aee9d38f3fceb440c762d2cf\n",
" .addData(data);\n",
" }\n",
" geo_json_8b68bcf8aee9d38f3fceb440c762d2cf_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7321086651190023, 52.345982706268224], [-1.7321079582143077, 52.34598162674596], [-1.7321070805644514, 52.3459808659848], [-1.7321059643369219, 52.34598023234587], [-1.7321035906131, 52.34597950865565], [-1.7320808275145871, 52.34597699288522], [-1.7320923315263088, 52.34596514290286], [-1.7322017782856545, 52.34595706942943], [-1.7322325383444255, 52.34600490123525], [-1.7321259706028316, 52.346023838709186], [-1.7321086651190023, 52.345982706268224]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8b68bcf8aee9d38f3fceb440c762d2cf.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_94c77c952556f0f46daf3ba7c109156d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a13c21f5635a69430ed1b25e5ea1b44c = $(`&lt;div id=&quot;html_a13c21f5635a69430ed1b25e5ea1b44c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 24&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 47.0 sqm&lt;br&gt;Intersecting area: 46.7 sqm&lt;/div&gt;`)[0];\n",
" popup_94c77c952556f0f46daf3ba7c109156d.setContent(html_a13c21f5635a69430ed1b25e5ea1b44c);\n",
" \n",
" \n",
"\n",
" geo_json_8b68bcf8aee9d38f3fceb440c762d2cf.bindPopup(popup_94c77c952556f0f46daf3ba7c109156d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8b68bcf8aee9d38f3fceb440c762d2cf.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_cba74f5b7a4afeb117c5bdda72b8af18_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cba74f5b7a4afeb117c5bdda72b8af18_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cba74f5b7a4afeb117c5bdda72b8af18 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cba74f5b7a4afeb117c5bdda72b8af18_onEachFeature,\n",
" \n",
" style: geo_json_cba74f5b7a4afeb117c5bdda72b8af18_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cba74f5b7a4afeb117c5bdda72b8af18_add (data) {\n",
" geo_json_cba74f5b7a4afeb117c5bdda72b8af18\n",
" .addData(data);\n",
" }\n",
" geo_json_cba74f5b7a4afeb117c5bdda72b8af18_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7319278054820062, 52.34607792514442], [-1.7319267327897, 52.346078590682595], [-1.7319259059699568, 52.34607937814743], [-1.7319252768939357, 52.346080480719905], [-1.7319213929041022, 52.34609574714524], [-1.7318602678299222, 52.34609560859606], [-1.7317855452941382, 52.34605827554528], [-1.7318003046419101, 52.34601108895061], [-1.7318490318794284, 52.345991688917], [-1.7319521287414292, 52.34599230107977], [-1.7319838144719828, 52.346029258721025], [-1.7319833602128685, 52.34605002232828], [-1.7319278054820062, 52.34607792514442]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cba74f5b7a4afeb117c5bdda72b8af18.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_60e106223e6995397f5a7c4d21f9a44b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_db48a0697eafacf97c08a05292672e5b = $(`&lt;div id=&quot;html_db48a0697eafacf97c08a05292672e5b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 25&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 118.0 sqm&lt;br&gt;Intersecting area: 118.3 sqm&lt;/div&gt;`)[0];\n",
" popup_60e106223e6995397f5a7c4d21f9a44b.setContent(html_db48a0697eafacf97c08a05292672e5b);\n",
" \n",
" \n",
"\n",
" geo_json_cba74f5b7a4afeb117c5bdda72b8af18.bindPopup(popup_60e106223e6995397f5a7c4d21f9a44b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cba74f5b7a4afeb117c5bdda72b8af18.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_ab6a2649c2d97784b5ad083f6dd7b50d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ab6a2649c2d97784b5ad083f6dd7b50d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ab6a2649c2d97784b5ad083f6dd7b50d = L.geoJson(null, {\n",
" onEachFeature: geo_json_ab6a2649c2d97784b5ad083f6dd7b50d_onEachFeature,\n",
" \n",
" style: geo_json_ab6a2649c2d97784b5ad083f6dd7b50d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ab6a2649c2d97784b5ad083f6dd7b50d_add (data) {\n",
" geo_json_ab6a2649c2d97784b5ad083f6dd7b50d\n",
" .addData(data);\n",
" }\n",
" geo_json_ab6a2649c2d97784b5ad083f6dd7b50d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7311241669214223, 52.346118456565655], [-1.7311381854239603, 52.346096987500985], [-1.731155944910287, 52.34608049940692], [-1.7311888229485008, 52.34608048062926], [-1.7312198971982087, 52.34609954751018], [-1.7312199263740902, 52.346119203726566], [-1.731140751024927, 52.34612975267685], [-1.7311241669214223, 52.346118456565655]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ab6a2649c2d97784b5ad083f6dd7b50d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1a4a41391016960392e8026b29791498 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_75581d6f7310c898ddfdbf5e53ef9348 = $(`&lt;div id=&quot;html_75581d6f7310c898ddfdbf5e53ef9348&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 26&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 26.0 sqm&lt;br&gt;Intersecting area: 25.6 sqm&lt;/div&gt;`)[0];\n",
" popup_1a4a41391016960392e8026b29791498.setContent(html_75581d6f7310c898ddfdbf5e53ef9348);\n",
" \n",
" \n",
"\n",
" geo_json_ab6a2649c2d97784b5ad083f6dd7b50d.bindPopup(popup_1a4a41391016960392e8026b29791498)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ab6a2649c2d97784b5ad083f6dd7b50d.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a = L.geoJson(null, {\n",
" onEachFeature: geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a_onEachFeature,\n",
" \n",
" style: geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a_add (data) {\n",
" geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a\n",
" .addData(data);\n",
" }\n",
" geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7299348139567978, 52.34619933457591], [-1.7299330365375245, 52.34619661631496], [-1.7299319224211873, 52.346194190692536], [-1.7299276411396263, 52.34619024430148], [-1.7299157646069465, 52.34617640634881], [-1.72996908238207, 52.34616828749708], [-1.7299712707801214, 52.34618908409853], [-1.7299379390420422, 52.346199475276386], [-1.7299348139567978, 52.34619933457591]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ffeec15e491c63eee3377fea933ac29f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_bf8c210e9d53a247eefb1d701b4c6135 = $(`&lt;div id=&quot;html_bf8c210e9d53a247eefb1d701b4c6135&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 27&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 11.0 sqm&lt;br&gt;Intersecting area: 8.2 sqm&lt;/div&gt;`)[0];\n",
" popup_ffeec15e491c63eee3377fea933ac29f.setContent(html_bf8c210e9d53a247eefb1d701b4c6135);\n",
" \n",
" \n",
"\n",
" geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a.bindPopup(popup_ffeec15e491c63eee3377fea933ac29f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4731ca6001c7bb7c58b1765a5c7b3e1a.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083 = L.geoJson(null, {\n",
" onEachFeature: geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083_onEachFeature,\n",
" \n",
" style: geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083_add (data) {\n",
" geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083\n",
" .addData(data);\n",
" }\n",
" geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7301722612932362, 52.346442549120695], [-1.7301103541165719, 52.3464368468391], [-1.7300230913097565, 52.34632161280412], [-1.730023384624938, 52.346312408186336], [-1.7301283033966979, 52.34630249499163], [-1.7301900529057044, 52.34632117542627], [-1.730235412363508, 52.34635896395341], [-1.7302347249572858, 52.34639644787145], [-1.7301722612932362, 52.346442549120695]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_dd3f2da1306b588f502ff0e199d4fb15 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a0ec35a7e4b6c722dcb67e846e796ad2 = $(`&lt;div id=&quot;html_a0ec35a7e4b6c722dcb67e846e796ad2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 28&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 177.0 sqm&lt;br&gt;Intersecting area: 149.6 sqm&lt;/div&gt;`)[0];\n",
" popup_dd3f2da1306b588f502ff0e199d4fb15.setContent(html_a0ec35a7e4b6c722dcb67e846e796ad2);\n",
" \n",
" \n",
"\n",
" geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083.bindPopup(popup_dd3f2da1306b588f502ff0e199d4fb15)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_74fd7c13b9f2ee6fe4e844bfc6d77083.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_2b482c0e645d007f91c2648a81bee3d3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_2b482c0e645d007f91c2648a81bee3d3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_2b482c0e645d007f91c2648a81bee3d3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_2b482c0e645d007f91c2648a81bee3d3_onEachFeature,\n",
" \n",
" style: geo_json_2b482c0e645d007f91c2648a81bee3d3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_2b482c0e645d007f91c2648a81bee3d3_add (data) {\n",
" geo_json_2b482c0e645d007f91c2648a81bee3d3\n",
" .addData(data);\n",
" }\n",
" geo_json_2b482c0e645d007f91c2648a81bee3d3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7303333444574327, 52.34654163682177], [-1.7303429196286106, 52.34650934611895], [-1.7303921742596173, 52.34650167289275], [-1.7303953100330984, 52.3465226577453], [-1.7303642880360894, 52.34654161926011], [-1.7303333444574327, 52.34654163682177]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_2b482c0e645d007f91c2648a81bee3d3.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6eeaa744d37768bf1c3ae735d8b03157 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c9d497259bce781071637ad58025627f = $(`&lt;div id=&quot;html_c9d497259bce781071637ad58025627f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 29&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 13.0 sqm&lt;br&gt;Intersecting area: 13.1 sqm&lt;/div&gt;`)[0];\n",
" popup_6eeaa744d37768bf1c3ae735d8b03157.setContent(html_c9d497259bce781071637ad58025627f);\n",
" \n",
" \n",
"\n",
" geo_json_2b482c0e645d007f91c2648a81bee3d3.bindPopup(popup_6eeaa744d37768bf1c3ae735d8b03157)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_2b482c0e645d007f91c2648a81bee3d3.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_1980fff4e1022b75aa728d490bb46e1f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1980fff4e1022b75aa728d490bb46e1f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1980fff4e1022b75aa728d490bb46e1f = L.geoJson(null, {\n",
" onEachFeature: geo_json_1980fff4e1022b75aa728d490bb46e1f_onEachFeature,\n",
" \n",
" style: geo_json_1980fff4e1022b75aa728d490bb46e1f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1980fff4e1022b75aa728d490bb46e1f_add (data) {\n",
" geo_json_1980fff4e1022b75aa728d490bb46e1f\n",
" .addData(data);\n",
" }\n",
" geo_json_1980fff4e1022b75aa728d490bb46e1f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7333701246474273, 52.34606949518292], [-1.733374166703817, 52.3460583771394], [-1.7334193497302135, 52.34605875138167], [-1.7334215774890445, 52.34608841233209], [-1.7333869870532044, 52.346089779096694], [-1.7333701246474273, 52.34606949518292]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1980fff4e1022b75aa728d490bb46e1f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c119233094a7cad6acc0cb441c780e63 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_886c12c68649bff0099ea8b80c9be441 = $(`&lt;div id=&quot;html_886c12c68649bff0099ea8b80c9be441&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 30&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 10.3 sqm&lt;/div&gt;`)[0];\n",
" popup_c119233094a7cad6acc0cb441c780e63.setContent(html_886c12c68649bff0099ea8b80c9be441);\n",
" \n",
" \n",
"\n",
" geo_json_1980fff4e1022b75aa728d490bb46e1f.bindPopup(popup_c119233094a7cad6acc0cb441c780e63)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1980fff4e1022b75aa728d490bb46e1f.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_4889b92964a8f14ae0db5268597f6c65_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4889b92964a8f14ae0db5268597f6c65_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4889b92964a8f14ae0db5268597f6c65 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4889b92964a8f14ae0db5268597f6c65_onEachFeature,\n",
" \n",
" style: geo_json_4889b92964a8f14ae0db5268597f6c65_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4889b92964a8f14ae0db5268597f6c65_add (data) {\n",
" geo_json_4889b92964a8f14ae0db5268597f6c65\n",
" .addData(data);\n",
" }\n",
" geo_json_4889b92964a8f14ae0db5268597f6c65_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7301898070983117, 52.34652065633483], [-1.7301882169770912, 52.34653966730743], [-1.730172118359986, 52.34651840859742], [-1.7301898070983117, 52.34652065633483]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4889b92964a8f14ae0db5268597f6c65.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9e7a9a84c6ff85c63b6bc3ecc6f50d4d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cc402bd673caa7f9bf94252fa619cbb6 = $(`&lt;div id=&quot;html_cc402bd673caa7f9bf94252fa619cbb6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 31&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 1.3 sqm&lt;/div&gt;`)[0];\n",
" popup_9e7a9a84c6ff85c63b6bc3ecc6f50d4d.setContent(html_cc402bd673caa7f9bf94252fa619cbb6);\n",
" \n",
" \n",
"\n",
" geo_json_4889b92964a8f14ae0db5268597f6c65.bindPopup(popup_9e7a9a84c6ff85c63b6bc3ecc6f50d4d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4889b92964a8f14ae0db5268597f6c65.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_26af55cbf513a58b9f33a795d7c054e6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_26af55cbf513a58b9f33a795d7c054e6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_26af55cbf513a58b9f33a795d7c054e6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_26af55cbf513a58b9f33a795d7c054e6_onEachFeature,\n",
" \n",
" style: geo_json_26af55cbf513a58b9f33a795d7c054e6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_26af55cbf513a58b9f33a795d7c054e6_add (data) {\n",
" geo_json_26af55cbf513a58b9f33a795d7c054e6\n",
" .addData(data);\n",
" }\n",
" geo_json_26af55cbf513a58b9f33a795d7c054e6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.7327905353835134, 52.34583703248703], [-1.7327553939651672, 52.3458346120483], [-1.7327563197005313, 52.345814962490614], [-1.7328017753301788, 52.34579635660161], [-1.7328619585395437, 52.345796577043785], [-1.7328593699500192, 52.345811302518285], [-1.7327905353835134, 52.34583703248703]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_26af55cbf513a58b9f33a795d7c054e6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_693b6c26a3274a1b677c43cedab0cfde = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d5609262b649269858381a4119992f2a = $(`&lt;div id=&quot;html_d5609262b649269858381a4119992f2a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 32&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 21.7 sqm&lt;/div&gt;`)[0];\n",
" popup_693b6c26a3274a1b677c43cedab0cfde.setContent(html_d5609262b649269858381a4119992f2a);\n",
" \n",
" \n",
"\n",
" geo_json_26af55cbf513a58b9f33a795d7c054e6.bindPopup(popup_693b6c26a3274a1b677c43cedab0cfde)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_26af55cbf513a58b9f33a795d7c054e6.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" function geo_json_08473c7ad013c3ca63f7f532abac9878_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_08473c7ad013c3ca63f7f532abac9878_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_08473c7ad013c3ca63f7f532abac9878 = L.geoJson(null, {\n",
" onEachFeature: geo_json_08473c7ad013c3ca63f7f532abac9878_onEachFeature,\n",
" \n",
" style: geo_json_08473c7ad013c3ca63f7f532abac9878_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_08473c7ad013c3ca63f7f532abac9878_add (data) {\n",
" geo_json_08473c7ad013c3ca63f7f532abac9878\n",
" .addData(data);\n",
" }\n",
" geo_json_08473c7ad013c3ca63f7f532abac9878_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-1.731915740692348, 52.345952268017754], [-1.7319130802617706, 52.34595259282609], [-1.7319117050119532, 52.34595304102071], [-1.7318492881332272, 52.34597892343061], [-1.7316832826141388, 52.3459743242888], [-1.7316813912978495, 52.34597442158841], [-1.7316799465324366, 52.345974713191005], [-1.7316786313540364, 52.34597517949396], [-1.7316772539821879, 52.345975979194634], [-1.7316764228060975, 52.34597675855427], [-1.7316758714758995, 52.3459776266565], [-1.7316562403874094, 52.346032490590765], [-1.7316109663773924, 52.34603211726833], [-1.7315225058878163, 52.34599545590948], [-1.731538221293896, 52.34594702997055], [-1.7316713498534355, 52.345954864028776], [-1.7316728751041057, 52.345954856703074], [-1.731674363354655, 52.34595465599911], [-1.7316766933409773, 52.34595387194591], [-1.7316777689575567, 52.345953209113055], [-1.731678595763033, 52.345952424346336], [-1.7316793509278796, 52.34595086266886], [-1.7316793521689748, 52.345949929487496], [-1.7316790391524048, 52.34594901537711], [-1.7316557078778068, 52.345920549860054], [-1.7317393748036338, 52.34590148175637], [-1.7318216191112181, 52.34589335772421], [-1.7318379409127176, 52.34590459290432], [-1.7318276225542033, 52.34592039584052], [-1.731827151877516, 52.34592152124331], [-1.7318271257075073, 52.3459224507672], [-1.7318274108387097, 52.34592336391802], [-1.7318279987062453, 52.345924222017516], [-1.7318288601748082, 52.34592498723669], [-1.7318299616806465, 52.345925627137966], [-1.731831254929695, 52.345926115539235], [-1.7318338080504239, 52.345926543870036], [-1.7318357020216348, 52.345926493322175], [-1.731837162709865, 52.34592623861646], [-1.731935829076402, 52.34590207817333], [-1.7320092365288937, 52.345902172591344], [-1.7320282403391938, 52.345922885886274], [-1.7319681283123955, 52.3459519174533], [-1.731915740692348, 52.345952268017754]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_08473c7ad013c3ca63f7f532abac9878.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_324ca5b636d107568daba3c7aa5bde01 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1b092093a667fbdeb93ff38d4fca805c = $(`&lt;div id=&quot;html_1b092093a667fbdeb93ff38d4fca805c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 33&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 232.0 sqm&lt;br&gt;Intersecting area: 231.8 sqm&lt;/div&gt;`)[0];\n",
" popup_324ca5b636d107568daba3c7aa5bde01.setContent(html_1b092093a667fbdeb93ff38d4fca805c);\n",
" \n",
" \n",
"\n",
" geo_json_08473c7ad013c3ca63f7f532abac9878.bindPopup(popup_324ca5b636d107568daba3c7aa5bde01)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_08473c7ad013c3ca63f7f532abac9878.addTo(feature_group_3ef3da6d976955e9e97ee65bee804c6a);\n",
" \n",
" \n",
" feature_group_3ef3da6d976955e9e97ee65bee804c6a.addTo(map_b4a48d5a921e6663ace479ace1cb7741);\n",
" \n",
" \n",
" var layer_control_a5a91079d7cbda9a455b7cad9a5de36c_layers = {\n",
" base_layers : {\n",
" &quot;cartodbpositron&quot; : tile_layer_a4a64da2cef1ae0900fb4a0ffd0850f7,\n",
" },\n",
" overlays : {\n",
" &quot;expanded postcode boundary (+50m)&quot; : geo_json_0b1e35f6485e6d1f56aa64ac197f26d2,\n",
" &quot;original postcode boundary&quot; : geo_json_2e55dbb26d079cd30718ebf0346389b9,\n",
" &quot;foliage boundary&quot; : feature_group_6dac4e9dbc25e13614e66583a03a7074,\n",
" &quot;intersection area&quot; : feature_group_3ef3da6d976955e9e97ee65bee804c6a,\n",
" },\n",
" };\n",
" let layer_control_a5a91079d7cbda9a455b7cad9a5de36c = L.control.layers(\n",
" layer_control_a5a91079d7cbda9a455b7cad9a5de36c_layers.base_layers,\n",
" layer_control_a5a91079d7cbda9a455b7cad9a5de36c_layers.overlays,\n",
" {\n",
" &quot;position&quot;: &quot;topright&quot;,\n",
" &quot;collapsed&quot;: true,\n",
" &quot;autoZIndex&quot;: true,\n",
"}\n",
" ).addTo(map_b4a48d5a921e6663ace479ace1cb7741);\n",
"\n",
" \n",
"&lt;/script&gt;\n",
"&lt;/html&gt;\" title=\"B94 6HR polygon intersection map\"></iframe>\n",
" </section>\n",
" \n",
" <section class='map-card'>\n",
" <h2>BB1 9JJ: 11.5% | intersection 2888 sqm | +50m</h2>\n",
" <iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
" \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_76253cc6ae48304226a3719f9ccd084b {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 430.0px;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" .leaflet-container { font-size: 1rem; }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;style&gt;html, body {\n",
" width: 100%;\n",
" height: 100%;\n",
" margin: 0;\n",
" padding: 0;\n",
" }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;style&gt;#map {\n",
" position:absolute;\n",
" top:0;\n",
" bottom:0;\n",
" right:0;\n",
" left:0;\n",
" }\n",
" &lt;/style&gt;\n",
"\n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
"\n",
" \n",
"&lt;/head&gt;\n",
"&lt;body&gt;\n",
" \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_76253cc6ae48304226a3719f9ccd084b&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt;\n",
" \n",
" \n",
" var map_76253cc6ae48304226a3719f9ccd084b = L.map(\n",
" &quot;map_76253cc6ae48304226a3719f9ccd084b&quot;,\n",
" {\n",
" center: [53.78705694345027, -2.477611737566692],\n",
" crs: L.CRS.EPSG3857,\n",
" ...{\n",
" &quot;zoom&quot;: 18,\n",
" &quot;zoomControl&quot;: true,\n",
" &quot;preferCanvas&quot;: false,\n",
"}\n",
"\n",
" }\n",
" );\n",
" L.control.scale().addTo(map_76253cc6ae48304226a3719f9ccd084b);\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_02206ace0bf1204210266c89aff8033e = L.tileLayer(\n",
" &quot;https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png&quot;,\n",
" {\n",
" &quot;minZoom&quot;: 0,\n",
" &quot;maxZoom&quot;: 20,\n",
" &quot;maxNativeZoom&quot;: 20,\n",
" &quot;noWrap&quot;: false,\n",
" &quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;https://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\&quot;https://carto.com/attributions\\&quot;\\u003eCARTO\\u003c/a\\u003e&quot;,\n",
" &quot;subdomains&quot;: &quot;abcd&quot;,\n",
" &quot;detectRetina&quot;: false,\n",
" &quot;tms&quot;: false,\n",
" &quot;opacity&quot;: 1,\n",
"}\n",
"\n",
" );\n",
" \n",
" \n",
" tile_layer_02206ace0bf1204210266c89aff8033e.addTo(map_76253cc6ae48304226a3719f9ccd084b);\n",
" \n",
" \n",
" function geo_json_f9c881a1fb02189a51300b8582d73270_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#f97316&quot;, &quot;fillColor&quot;: &quot;#fed7aa&quot;, &quot;fillOpacity&quot;: 0.18, &quot;weight&quot;: 3};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f9c881a1fb02189a51300b8582d73270_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f9c881a1fb02189a51300b8582d73270 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f9c881a1fb02189a51300b8582d73270_onEachFeature,\n",
" \n",
" style: geo_json_f9c881a1fb02189a51300b8582d73270_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f9c881a1fb02189a51300b8582d73270_add (data) {\n",
" geo_json_f9c881a1fb02189a51300b8582d73270\n",
" .addData(data);\n",
" }\n",
" geo_json_f9c881a1fb02189a51300b8582d73270_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4788990553283945, 53.787462182527065], [-2.478888452155318, 53.78749702337107], [-2.478858453439494, 53.78757402355207], [-2.4788386953792685, 53.78761553276383], [-2.478812309063383, 53.78765572930311], [-2.4787795374822656, 53.787694242973444], [-2.4787406824348315, 53.787730719075945], [-2.478696101749543, 53.787764821676255], [-2.478646205989294, 53.78779623669845], [-2.478591454670516, 53.787824674817806], [-2.4785323520312827, 53.787849874125655], [-2.4784694423874045, 53.78787160254155], [-2.4784033051192678, 53.7878896599509], [-2.4783345493356244, 53.78790388004818], [-2.478263808263452, 53.78791413186863], [-2.4781917334156036, 53.787920320994566], [-2.478118988589967, 53.7879223904251], [-2.477948986773071, 53.78792239042898], [-2.477879321675112, 53.78792049287708], [-2.477810244900568, 53.78791481634159], [-2.4777423397968676, 53.78790540876033], [-2.4776761798158606, 53.7878923495795], [-2.477612323670644, 53.7878757490826], [-2.4775513106169123, 53.78785574745909], [-2.477483242722922, 53.78783094754171], [-2.477477200311539, 53.78783017728882], [-2.4774065265326706, 53.78781677804101], [-2.4773384006421266, 53.78779935539155], [-2.4772734740525144, 53.78777807593483], [-2.477243473883203, 53.787767075835916], [-2.4771841247807678, 53.78774293541322], [-2.4771289062706225, 53.78771557296586], [-2.4770783154098748, 53.787685234804805], [-2.477032807595605, 53.787652194027295], [-2.4769927924655843, 53.78761674805823], [-2.476988357922469, 53.787611876087574], [-2.476743086399939, 53.78752119595816], [-2.4766804284521187, 53.787495348230344], [-2.4766224743849974, 53.78746590247717], [-2.4765698109998078, 53.787433156850355], [-2.4765229715235377, 53.78739744291369], [-2.4764824302099364, 53.78735912228547], [-2.476448597537841, 53.7873185829769], [-2.476421816055415, 53.78727623546297], [-2.476402356912384, 53.787232508526145], [-2.4763904171153324, 53.787187844914726], [-2.476386117533833, 53.787142696859654], [-2.476389501677565, 53.787097521495575], [-2.4763974438178535, 53.787065313175255], [-2.47636727406849, 53.78704051402569], [-2.47632993993165, 53.787002461620304], [-2.476299070103933, 53.78696242920132], [-2.4762749606165544, 53.78692080069041], [-2.476257842665027, 53.78687797531511], [-2.4762478803926515, 53.78683436377988], [-2.476245169317133, 53.786790384327425], [-2.476249735415391, 53.786746458727485], [-2.4762615348753028, 53.786703008232074], [-2.4762715353483133, 53.78667500829251], [-2.4762903555497955, 53.7866326358291], [-2.4763160540309657, 53.78659155003515], [-2.4763483865027793, 53.786552141439486], [-2.4763870456212245, 53.78651478462777], [-2.476431663909243, 53.78647983468213], [-2.476481817250101, 53.786447623806175], [-2.4765370289189916, 53.786418458167596], [-2.4765967741145145, 53.7863926149882], [-2.4768507728403857, 53.78629361586835], [-2.4769117176098407, 53.786272207193974], [-2.476975768677274, 53.78625425818033], [-2.477042367581797, 53.78623992532376], [-2.477110933650068, 53.78622933359138], [-2.47718086905878, 53.786222575331635], [-2.4772515640465853, 53.78621970946919], [-2.477563560715526, 53.786215709518764], [-2.477635878498644, 53.786216824703175], [-2.4777076883794216, 53.786222012695475], [-2.477778337792848, 53.786231226350296], [-2.47784718471856, 53.78624438193941], [-2.4780491829786877, 53.78628938149627], [-2.478115691840291, 53.786306385422556], [-2.4781791598019693, 53.78632706736186], [-2.4782390085027814, 53.78635123884857], [-2.4782946925598925, 53.78637867961802], [-2.478345704538263, 53.78640913961332], [-2.478391579574682, 53.7864423412642], [-2.4784318996139754, 53.78647798201597], [-2.4784662972188274, 53.78651573708654], [-2.4784944589184534, 53.786555262425836], [-2.4785161280656243, 53.78659619785089], [-2.4785311071759875, 53.786638170328054], [-2.4785392597283167, 53.7866807973721], [-2.478547475386496, 53.7867555087198], [-2.478564054017607, 53.7867873059666], [-2.478571329528184, 53.786808249824375], [-2.4785750254861565, 53.78681023638266], [-2.4786286058233484, 53.78684207098349], [-2.4786765482976696, 53.78687691580168], [-2.4787183733262883, 53.78691442228467], [-2.4787536625157593, 53.78695421525422], [-2.478782062847686, 53.78699589665936], [-2.4788032902105592, 53.78703904955771], [-2.4788171322424937, 53.78708324228623], [-2.4788201851393614, 53.78710488461046], [-2.47882747841768, 53.78711156073816], [-2.4788613879295425, 53.78715043421041], [-2.4788887530643557, 53.78719107616871], [-2.478909314405493, 53.78723310136299], [-2.4789228770283858, 53.787276111430295], [-2.4789293123489635, 53.78731969867063], [-2.4789285593433283, 53.7873634499116], [-2.4789206251270417, 53.78740695042499], [-2.478905584888519, 53.78744978785798], [-2.4788990553283945, 53.787462182527065]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f9c881a1fb02189a51300b8582d73270.addTo(map_76253cc6ae48304226a3719f9ccd084b);\n",
" \n",
" \n",
" function geo_json_7e29f0307fcca316b419bf2aeccc93dd_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#2563eb&quot;, &quot;fillColor&quot;: &quot;#93c5fd&quot;, &quot;fillOpacity&quot;: 0.12, &quot;weight&quot;: 3};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7e29f0307fcca316b419bf2aeccc93dd_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7e29f0307fcca316b419bf2aeccc93dd = L.geoJson(null, {\n",
" onEachFeature: geo_json_7e29f0307fcca316b419bf2aeccc93dd_onEachFeature,\n",
" \n",
" style: geo_json_7e29f0307fcca316b419bf2aeccc93dd_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7e29f0307fcca316b419bf2aeccc93dd_add (data) {\n",
" geo_json_7e29f0307fcca316b419bf2aeccc93dd\n",
" .addData(data);\n",
" }\n",
" geo_json_7e29f0307fcca316b419bf2aeccc93dd_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4775939876667614, 53.787305997376066], [-2.4771449876665264, 53.78713999737588], [-2.477166987666552, 53.78711599737585], [-2.477135987666624, 53.78689399737565], [-2.4770039876665764, 53.78679599737555], [-2.4770139876665955, 53.78676799737552], [-2.47726798766681, 53.78666899737544], [-2.4775799876670237, 53.78666499737545], [-2.4777819876671434, 53.78670999737552], [-2.4778029876670766, 53.78690099737569], [-2.4778289876670945, 53.78689899737568], [-2.4778339876670765, 53.78694999737573], [-2.4779049876670785, 53.78705699737584], [-2.4780649876671514, 53.78714299737593], [-2.4779739876670788, 53.78716599737594], [-2.478088987667079, 53.78735299737613], [-2.478170987667142, 53.787336997376116], [-2.4781189876671004, 53.78734799737614], [-2.4781489876671015, 53.787395997376166], [-2.4781189876670484, 53.787472997376234], [-2.4779489876669327, 53.78747299737623], [-2.477690987666797, 53.78737899737614], [-2.4776729876667773, 53.78739599737614], [-2.477642987666761, 53.7873849973761], [-2.4775939876667614, 53.787305997376066]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7e29f0307fcca316b419bf2aeccc93dd.addTo(map_76253cc6ae48304226a3719f9ccd084b);\n",
" \n",
" \n",
" var feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3 = L.featureGroup(\n",
" {\n",
"}\n",
" );\n",
" \n",
" \n",
" function geo_json_3ad693c53de01d2d02d48eb687861823_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3ad693c53de01d2d02d48eb687861823_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3ad693c53de01d2d02d48eb687861823 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3ad693c53de01d2d02d48eb687861823_onEachFeature,\n",
" \n",
" style: geo_json_3ad693c53de01d2d02d48eb687861823_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3ad693c53de01d2d02d48eb687861823_add (data) {\n",
" geo_json_3ad693c53de01d2d02d48eb687861823\n",
" .addData(data);\n",
" }\n",
" geo_json_3ad693c53de01d2d02d48eb687861823_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4770347735262095, 53.78762019414713], [-2.4770329032142673, 53.78761936030601], [-2.47703030520076, 53.78761886911289], [-2.476929087775749, 53.78761109908591], [-2.4769061490034994, 53.78746062140601], [-2.476905213647929, 53.78745590639301], [-2.4769038597956836, 53.78745122809918], [-2.4769022892715653, 53.78744711781743], [-2.476965429007931, 53.787452889461356], [-2.476997614633247, 53.787480875139366], [-2.4769983095401717, 53.78751107676414], [-2.4769987052203963, 53.78751223914296], [-2.4769993843538214, 53.78751310019609], [-2.477000353719247, 53.78751385672812], [-2.4770015704527735, 53.78751447655584], [-2.4770033539327003, 53.78751501593274], [-2.4770049137027894, 53.78751523532315], [-2.477117476576256, 53.787523806798305], [-2.4771496100286567, 53.787533813817824], [-2.4771652850586205, 53.78756541187051], [-2.4771663150209813, 53.787566693060036], [-2.47716796744844, 53.78756772011091], [-2.477169337547696, 53.7875682116939], [-2.4771708497854803, 53.78756852295416], [-2.477239445321908, 53.78757795155047], [-2.477226007742634, 53.78761735390225], [-2.4771460713220743, 53.78766356971912], [-2.4770547856168053, 53.787663354275175], [-2.4770366737482017, 53.78762219271845], [-2.4770359421233294, 53.78762111975956], [-2.4770347735262095, 53.78762019414713]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3ad693c53de01d2d02d48eb687861823.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f7a230b5e8462a9d4ff8fcddafd4af51 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5a998ac3802feee9420fd4d8acc1a7d9 = $(`&lt;div id=&quot;html_5a998ac3802feee9420fd4d8acc1a7d9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 1&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 278.0 sqm&lt;br&gt;Intersecting area: 272.3 sqm&lt;/div&gt;`)[0];\n",
" popup_f7a230b5e8462a9d4ff8fcddafd4af51.setContent(html_5a998ac3802feee9420fd4d8acc1a7d9);\n",
" \n",
" \n",
"\n",
" geo_json_3ad693c53de01d2d02d48eb687861823.bindPopup(popup_f7a230b5e8462a9d4ff8fcddafd4af51)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3ad693c53de01d2d02d48eb687861823.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_330b95182955d04ad8b1b181f0766f66_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_330b95182955d04ad8b1b181f0766f66_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_330b95182955d04ad8b1b181f0766f66 = L.geoJson(null, {\n",
" onEachFeature: geo_json_330b95182955d04ad8b1b181f0766f66_onEachFeature,\n",
" \n",
" style: geo_json_330b95182955d04ad8b1b181f0766f66_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_330b95182955d04ad8b1b181f0766f66_add (data) {\n",
" geo_json_330b95182955d04ad8b1b181f0766f66\n",
" .addData(data);\n",
" }\n",
" geo_json_330b95182955d04ad8b1b181f0766f66_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477012518434407, 53.78638712372794], [-2.476918400098169, 53.78636990324833], [-2.4769006662559594, 53.78635076002888], [-2.4769004454079506, 53.78630387465627], [-2.4769500388842847, 53.78629279905021], [-2.476983017183962, 53.786293882993704], [-2.4769997677996156, 53.7863264241358], [-2.477000783652001, 53.786327668533424], [-2.4770023917285897, 53.78632867149246], [-2.477044552479869, 53.786347933191585], [-2.477012518434407, 53.78638712372794]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_330b95182955d04ad8b1b181f0766f66.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_15371e312a1cc2b7a7890b3b09cf2c09 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0ab4b0b4471cea7a64fa1e8611539f00 = $(`&lt;div id=&quot;html_0ab4b0b4471cea7a64fa1e8611539f00&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 2&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 67.0 sqm&lt;br&gt;Intersecting area: 66.5 sqm&lt;/div&gt;`)[0];\n",
" popup_15371e312a1cc2b7a7890b3b09cf2c09.setContent(html_0ab4b0b4471cea7a64fa1e8611539f00);\n",
" \n",
" \n",
"\n",
" geo_json_330b95182955d04ad8b1b181f0766f66.bindPopup(popup_15371e312a1cc2b7a7890b3b09cf2c09)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_330b95182955d04ad8b1b181f0766f66.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_c7bc28aafb24938e0f7a2a10a6dbad47_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c7bc28aafb24938e0f7a2a10a6dbad47_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c7bc28aafb24938e0f7a2a10a6dbad47 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c7bc28aafb24938e0f7a2a10a6dbad47_onEachFeature,\n",
" \n",
" style: geo_json_c7bc28aafb24938e0f7a2a10a6dbad47_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c7bc28aafb24938e0f7a2a10a6dbad47_add (data) {\n",
" geo_json_c7bc28aafb24938e0f7a2a10a6dbad47\n",
" .addData(data);\n",
" }\n",
" geo_json_c7bc28aafb24938e0f7a2a10a6dbad47_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477178542128444, 53.78639544640268], [-2.4771586608608818, 53.786365505413784], [-2.477173731431272, 53.78632972953202], [-2.477201338577458, 53.7863276242615], [-2.4772380528618263, 53.78631888009074], [-2.4772566716314413, 53.78632839262078], [-2.4772584305922223, 53.78637489526693], [-2.477178542128444, 53.78639544640268]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c7bc28aafb24938e0f7a2a10a6dbad47.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_984b17e4d8106e26b2ac2ff167ff06b8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_1a8369e171e6828f6842552ee3000b9a = $(`&lt;div id=&quot;html_1a8369e171e6828f6842552ee3000b9a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 3&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 40.0 sqm&lt;br&gt;Intersecting area: 40.4 sqm&lt;/div&gt;`)[0];\n",
" popup_984b17e4d8106e26b2ac2ff167ff06b8.setContent(html_1a8369e171e6828f6842552ee3000b9a);\n",
" \n",
" \n",
"\n",
" geo_json_c7bc28aafb24938e0f7a2a10a6dbad47.bindPopup(popup_984b17e4d8106e26b2ac2ff167ff06b8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c7bc28aafb24938e0f7a2a10a6dbad47.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_4511a3e14e03ec9df408bc3df66f7f72_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4511a3e14e03ec9df408bc3df66f7f72_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4511a3e14e03ec9df408bc3df66f7f72 = L.geoJson(null, {\n",
" onEachFeature: geo_json_4511a3e14e03ec9df408bc3df66f7f72_onEachFeature,\n",
" \n",
" style: geo_json_4511a3e14e03ec9df408bc3df66f7f72_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4511a3e14e03ec9df408bc3df66f7f72_add (data) {\n",
" geo_json_4511a3e14e03ec9df408bc3df66f7f72\n",
" .addData(data);\n",
" }\n",
" geo_json_4511a3e14e03ec9df408bc3df66f7f72_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.476979906833106, 53.78652267581877], [-2.4769344303251053, 53.78652153554847], [-2.476934591827693, 53.786492297628286], [-2.476984586451076, 53.786500367686074], [-2.476979906833106, 53.78652267581877]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4511a3e14e03ec9df408bc3df66f7f72.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6a97500b4ac1d44e63c9633b1594e781 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4fb278735436205228221a0aa37a6712 = $(`&lt;div id=&quot;html_4fb278735436205228221a0aa37a6712&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 4&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 9.1 sqm&lt;/div&gt;`)[0];\n",
" popup_6a97500b4ac1d44e63c9633b1594e781.setContent(html_4fb278735436205228221a0aa37a6712);\n",
" \n",
" \n",
"\n",
" geo_json_4511a3e14e03ec9df408bc3df66f7f72.bindPopup(popup_6a97500b4ac1d44e63c9633b1594e781)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4511a3e14e03ec9df408bc3df66f7f72.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_5b821df41380f7d7e65c288494b197f7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5b821df41380f7d7e65c288494b197f7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5b821df41380f7d7e65c288494b197f7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_5b821df41380f7d7e65c288494b197f7_onEachFeature,\n",
" \n",
" style: geo_json_5b821df41380f7d7e65c288494b197f7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5b821df41380f7d7e65c288494b197f7_add (data) {\n",
" geo_json_5b821df41380f7d7e65c288494b197f7\n",
" .addData(data);\n",
" }\n",
" geo_json_5b821df41380f7d7e65c288494b197f7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4769859044636515, 53.78672911232115], [-2.4768446962334085, 53.78670923266348], [-2.4768612947366537, 53.786680203477324], [-2.4769271558122483, 53.78667938505347], [-2.476929079237798, 53.78667915179697], [-2.476931157260085, 53.78667849818681], [-2.47693279879505, 53.78667749937023], [-2.4769337160058513, 53.78667647108218], [-2.476934192667094, 53.7866748729014], [-2.476934002461283, 53.786661588399525], [-2.4769336719624957, 53.78666068551738], [-2.476933038573503, 53.786659841360866], [-2.4769321269825895, 53.78665909178994], [-2.4769309755078392, 53.78665846900171], [-2.4769292737624697, 53.78665790683208], [-2.476927386946097, 53.78665762043007], [-2.476889577460009, 53.78665601910668], [-2.4768883513374327, 53.78663798224146], [-2.4769387627657187, 53.78662538889381], [-2.476985343685988, 53.78662566910285], [-2.4770031996498707, 53.78664486036031], [-2.476989808114787, 53.78667494009109], [-2.476989557277969, 53.786676108638964], [-2.476989733348055, 53.786677045393716], [-2.4769908114706625, 53.78667856008744], [-2.4769927373076834, 53.78667974333882], [-2.4770183793919713, 53.78668942659356], [-2.477019445867894, 53.78670863703401], [-2.4769859044636515, 53.78672911232115]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5b821df41380f7d7e65c288494b197f7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0325f76411f38a4f94d0cbdac46187b6 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e7334b6d51a6737ac12d4dc1d1be6631 = $(`&lt;div id=&quot;html_e7334b6d51a6737ac12d4dc1d1be6631&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 5&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 80.0 sqm&lt;br&gt;Intersecting area: 80.1 sqm&lt;/div&gt;`)[0];\n",
" popup_0325f76411f38a4f94d0cbdac46187b6.setContent(html_e7334b6d51a6737ac12d4dc1d1be6631);\n",
" \n",
" \n",
"\n",
" geo_json_5b821df41380f7d7e65c288494b197f7.bindPopup(popup_0325f76411f38a4f94d0cbdac46187b6)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5b821df41380f7d7e65c288494b197f7.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_cd38dfdf648852a5267578542f992b16_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cd38dfdf648852a5267578542f992b16_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cd38dfdf648852a5267578542f992b16 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cd38dfdf648852a5267578542f992b16_onEachFeature,\n",
" \n",
" style: geo_json_cd38dfdf648852a5267578542f992b16_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cd38dfdf648852a5267578542f992b16_add (data) {\n",
" geo_json_cd38dfdf648852a5267578542f992b16\n",
" .addData(data);\n",
" }\n",
" geo_json_cd38dfdf648852a5267578542f992b16_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4776992131099242, 53.78677107326838], [-2.477678182582402, 53.78676319006568], [-2.4776657784428298, 53.78674963336713], [-2.477700624746898, 53.786740368000416], [-2.4777167116182324, 53.78676158582568], [-2.4776992131099242, 53.78677107326838]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cd38dfdf648852a5267578542f992b16.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_218fdcde3979a34ca1dc52e1e18e3599 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_977855c8c06063ef6004229e825a0121 = $(`&lt;div id=&quot;html_977855c8c06063ef6004229e825a0121&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 6&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 6.5 sqm&lt;/div&gt;`)[0];\n",
" popup_218fdcde3979a34ca1dc52e1e18e3599.setContent(html_977855c8c06063ef6004229e825a0121);\n",
" \n",
" \n",
"\n",
" geo_json_cd38dfdf648852a5267578542f992b16.bindPopup(popup_218fdcde3979a34ca1dc52e1e18e3599)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cd38dfdf648852a5267578542f992b16.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_7f2bf897da30d605645db57464d08e57_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7f2bf897da30d605645db57464d08e57_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7f2bf897da30d605645db57464d08e57 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7f2bf897da30d605645db57464d08e57_onEachFeature,\n",
" \n",
" style: geo_json_7f2bf897da30d605645db57464d08e57_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7f2bf897da30d605645db57464d08e57_add (data) {\n",
" geo_json_7f2bf897da30d605645db57464d08e57\n",
" .addData(data);\n",
" }\n",
" geo_json_7f2bf897da30d605645db57464d08e57_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.476816345243437, 53.786800719935044], [-2.4768143422939217, 53.78676330608894], [-2.4768395740287725, 53.78676076634358], [-2.4768410874536633, 53.786760515849174], [-2.476842803765534, 53.78675995355811], [-2.4768446799959136, 53.78675877135205], [-2.4768617878131964, 53.786743058656434], [-2.476896729515702, 53.786743656649215], [-2.47691165813063, 53.786800340703266], [-2.476816345243437, 53.786800719935044]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7f2bf897da30d605645db57464d08e57.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_01cf38019bbea2d68b1e31f2f4828476 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6a97c14779a4976362f3fa577cc23d54 = $(`&lt;div id=&quot;html_6a97c14779a4976362f3fa577cc23d54&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 7&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 32.0 sqm&lt;br&gt;Intersecting area: 32.4 sqm&lt;/div&gt;`)[0];\n",
" popup_01cf38019bbea2d68b1e31f2f4828476.setContent(html_6a97c14779a4976362f3fa577cc23d54);\n",
" \n",
" \n",
"\n",
" geo_json_7f2bf897da30d605645db57464d08e57.bindPopup(popup_01cf38019bbea2d68b1e31f2f4828476)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7f2bf897da30d605645db57464d08e57.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_83e949f4dcc10df53ba0729589f3aa77_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_83e949f4dcc10df53ba0729589f3aa77_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_83e949f4dcc10df53ba0729589f3aa77 = L.geoJson(null, {\n",
" onEachFeature: geo_json_83e949f4dcc10df53ba0729589f3aa77_onEachFeature,\n",
" \n",
" style: geo_json_83e949f4dcc10df53ba0729589f3aa77_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_83e949f4dcc10df53ba0729589f3aa77_add (data) {\n",
" geo_json_83e949f4dcc10df53ba0729589f3aa77\n",
" .addData(data);\n",
" }\n",
" geo_json_83e949f4dcc10df53ba0729589f3aa77_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477182499050015, 53.786808670473995], [-2.4771481736890086, 53.7867976601346], [-2.477147826648197, 53.78675332069048], [-2.47716636928926, 53.786750498317254], [-2.477201901943294, 53.78677065908835], [-2.477182499050015, 53.786808670473995]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_83e949f4dcc10df53ba0729589f3aa77.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_067b87b5ed0867bedee75d038ead61c1 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_fbd3ebaea840b858bb564c82785403b9 = $(`&lt;div id=&quot;html_fbd3ebaea840b858bb564c82785403b9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 8&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 16.0 sqm&lt;br&gt;Intersecting area: 16.1 sqm&lt;/div&gt;`)[0];\n",
" popup_067b87b5ed0867bedee75d038ead61c1.setContent(html_fbd3ebaea840b858bb564c82785403b9);\n",
" \n",
" \n",
"\n",
" geo_json_83e949f4dcc10df53ba0729589f3aa77.bindPopup(popup_067b87b5ed0867bedee75d038ead61c1)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_83e949f4dcc10df53ba0729589f3aa77.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_4287a4bad3e5068f0e4fdee40d460adf_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_4287a4bad3e5068f0e4fdee40d460adf_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_4287a4bad3e5068f0e4fdee40d460adf = L.geoJson(null, {\n",
" onEachFeature: geo_json_4287a4bad3e5068f0e4fdee40d460adf_onEachFeature,\n",
" \n",
" style: geo_json_4287a4bad3e5068f0e4fdee40d460adf_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_4287a4bad3e5068f0e4fdee40d460adf_add (data) {\n",
" geo_json_4287a4bad3e5068f0e4fdee40d460adf\n",
" .addData(data);\n",
" }\n",
" geo_json_4287a4bad3e5068f0e4fdee40d460adf_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.478673522825842, 53.78677509093377], [-2.4785763035962174, 53.78679399189894], [-2.4785293048362007, 53.78675756307399], [-2.478528399000679, 53.78672106165789], [-2.4785473374840374, 53.78670009238362], [-2.4786412274774943, 53.78670020371276], [-2.478674016375283, 53.786737266276866], [-2.478673522825842, 53.78677509093377]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_4287a4bad3e5068f0e4fdee40d460adf.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8baadbc614041986b0b38744230f1aa7 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2c391c3a7a4b545276d3996357ccf370 = $(`&lt;div id=&quot;html_2c391c3a7a4b545276d3996357ccf370&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 9&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 81.0 sqm&lt;br&gt;Intersecting area: 7.1 sqm&lt;/div&gt;`)[0];\n",
" popup_8baadbc614041986b0b38744230f1aa7.setContent(html_2c391c3a7a4b545276d3996357ccf370);\n",
" \n",
" \n",
"\n",
" geo_json_4287a4bad3e5068f0e4fdee40d460adf.bindPopup(popup_8baadbc614041986b0b38744230f1aa7)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_4287a4bad3e5068f0e4fdee40d460adf.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_fb2f61ca6d5aae47792aa82947d9da86_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_fb2f61ca6d5aae47792aa82947d9da86_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_fb2f61ca6d5aae47792aa82947d9da86 = L.geoJson(null, {\n",
" onEachFeature: geo_json_fb2f61ca6d5aae47792aa82947d9da86_onEachFeature,\n",
" \n",
" style: geo_json_fb2f61ca6d5aae47792aa82947d9da86_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_fb2f61ca6d5aae47792aa82947d9da86_add (data) {\n",
" geo_json_fb2f61ca6d5aae47792aa82947d9da86\n",
" .addData(data);\n",
" }\n",
" geo_json_fb2f61ca6d5aae47792aa82947d9da86_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.478428645410185, 53.78684918931331], [-2.4783955900788968, 53.78684857974555], [-2.4783930602420754, 53.78682540602475], [-2.4783925521566075, 53.786824238707425], [-2.4783912798778647, 53.78682300612831], [-2.478390090003569, 53.78682234576189], [-2.4782867122751124, 53.78677624151236], [-2.478287490158489, 53.78674683395217], [-2.478350772348015, 53.786727857456476], [-2.4784297278270504, 53.78675480849964], [-2.478461521780803, 53.78678248166708], [-2.478428645410185, 53.78684918931331]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_fb2f61ca6d5aae47792aa82947d9da86.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3d2a22742b9a3dfe58bbaba12d59fe3a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d61ed4fed75841921e70944862d83bd4 = $(`&lt;div id=&quot;html_d61ed4fed75841921e70944862d83bd4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 10&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 87.0 sqm&lt;br&gt;Intersecting area: 86.9 sqm&lt;/div&gt;`)[0];\n",
" popup_3d2a22742b9a3dfe58bbaba12d59fe3a.setContent(html_d61ed4fed75841921e70944862d83bd4);\n",
" \n",
" \n",
"\n",
" geo_json_fb2f61ca6d5aae47792aa82947d9da86.bindPopup(popup_3d2a22742b9a3dfe58bbaba12d59fe3a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_fb2f61ca6d5aae47792aa82947d9da86.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_286eb666eda003e7d4f51b4f2b44c0e7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_286eb666eda003e7d4f51b4f2b44c0e7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_286eb666eda003e7d4f51b4f2b44c0e7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_286eb666eda003e7d4f51b4f2b44c0e7_onEachFeature,\n",
" \n",
" style: geo_json_286eb666eda003e7d4f51b4f2b44c0e7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_286eb666eda003e7d4f51b4f2b44c0e7_add (data) {\n",
" geo_json_286eb666eda003e7d4f51b4f2b44c0e7\n",
" .addData(data);\n",
" }\n",
" geo_json_286eb666eda003e7d4f51b4f2b44c0e7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477912468478207, 53.78692337344531], [-2.477865746584759, 53.786922871255456], [-2.4778626576465768, 53.78690309454469], [-2.4778678350037477, 53.78688295141911], [-2.477931211553111, 53.78689399491185], [-2.477912468478207, 53.78692337344531]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_286eb666eda003e7d4f51b4f2b44c0e7.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7c4876360fd4e3bd42136113ac278299 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ca712d98ba0312d6bfd9fd5f6e3670b5 = $(`&lt;div id=&quot;html_ca712d98ba0312d6bfd9fd5f6e3670b5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 11&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 15.0 sqm&lt;br&gt;Intersecting area: 15.0 sqm&lt;/div&gt;`)[0];\n",
" popup_7c4876360fd4e3bd42136113ac278299.setContent(html_ca712d98ba0312d6bfd9fd5f6e3670b5);\n",
" \n",
" \n",
"\n",
" geo_json_286eb666eda003e7d4f51b4f2b44c0e7.bindPopup(popup_7c4876360fd4e3bd42136113ac278299)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_286eb666eda003e7d4f51b4f2b44c0e7.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_e6e030b34c706c9e142d51dab4dda7f9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e6e030b34c706c9e142d51dab4dda7f9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e6e030b34c706c9e142d51dab4dda7f9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e6e030b34c706c9e142d51dab4dda7f9_onEachFeature,\n",
" \n",
" style: geo_json_e6e030b34c706c9e142d51dab4dda7f9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e6e030b34c706c9e142d51dab4dda7f9_add (data) {\n",
" geo_json_e6e030b34c706c9e142d51dab4dda7f9\n",
" .addData(data);\n",
" }\n",
" geo_json_e6e030b34c706c9e142d51dab4dda7f9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4785394560545897, 53.78693714635444], [-2.4784916564582136, 53.786965836555815], [-2.4783991552320304, 53.78696644310552], [-2.478379787645423, 53.78695573023821], [-2.4783786175118627, 53.786873994740176], [-2.478421738655498, 53.78686205274234], [-2.4784759057756016, 53.786853534230374], [-2.478538924661504, 53.78689047524528], [-2.4785394560545897, 53.78693714635444]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e6e030b34c706c9e142d51dab4dda7f9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_aba3956dce1a8b4fb3af3d2029d5a9d0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ef46a082943561c5080e76ab083ad2c0 = $(`&lt;div id=&quot;html_ef46a082943561c5080e76ab083ad2c0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 12&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 111.0 sqm&lt;br&gt;Intersecting area: 111.4 sqm&lt;/div&gt;`)[0];\n",
" popup_aba3956dce1a8b4fb3af3d2029d5a9d0.setContent(html_ef46a082943561c5080e76ab083ad2c0);\n",
" \n",
" \n",
"\n",
" geo_json_e6e030b34c706c9e142d51dab4dda7f9.bindPopup(popup_aba3956dce1a8b4fb3af3d2029d5a9d0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e6e030b34c706c9e142d51dab4dda7f9.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_78e253e3df3f982fcb698b9942fb1d23_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_78e253e3df3f982fcb698b9942fb1d23_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_78e253e3df3f982fcb698b9942fb1d23 = L.geoJson(null, {\n",
" onEachFeature: geo_json_78e253e3df3f982fcb698b9942fb1d23_onEachFeature,\n",
" \n",
" style: geo_json_78e253e3df3f982fcb698b9942fb1d23_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_78e253e3df3f982fcb698b9942fb1d23_add (data) {\n",
" geo_json_78e253e3df3f982fcb698b9942fb1d23\n",
" .addData(data);\n",
" }\n",
" geo_json_78e253e3df3f982fcb698b9942fb1d23_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4785245464163608, 53.78707309106402], [-2.4784415377273015, 53.78706320392348], [-2.4784258241969033, 53.78703549172902], [-2.4784403081025976, 53.78699105353893], [-2.4784466401454286, 53.78697890246058], [-2.478535883046198, 53.7869785938069], [-2.478554718576249, 53.78698869668642], [-2.4785562856416004, 53.78705327507533], [-2.4785245464163608, 53.78707309106402]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_78e253e3df3f982fcb698b9942fb1d23.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_1cfd9ccbafec6bcbb35aa0649d99394c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4a66b47b21f7fc5e0d5a98cf0433c3a0 = $(`&lt;div id=&quot;html_4a66b47b21f7fc5e0d5a98cf0433c3a0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 13&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 77.0 sqm&lt;br&gt;Intersecting area: 77.1 sqm&lt;/div&gt;`)[0];\n",
" popup_1cfd9ccbafec6bcbb35aa0649d99394c.setContent(html_4a66b47b21f7fc5e0d5a98cf0433c3a0);\n",
" \n",
" \n",
"\n",
" geo_json_78e253e3df3f982fcb698b9942fb1d23.bindPopup(popup_1cfd9ccbafec6bcbb35aa0649d99394c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_78e253e3df3f982fcb698b9942fb1d23.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_77d892c2b3fe277ba191ae1d5764a554_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_77d892c2b3fe277ba191ae1d5764a554_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_77d892c2b3fe277ba191ae1d5764a554 = L.geoJson(null, {\n",
" onEachFeature: geo_json_77d892c2b3fe277ba191ae1d5764a554_onEachFeature,\n",
" \n",
" style: geo_json_77d892c2b3fe277ba191ae1d5764a554_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_77d892c2b3fe277ba191ae1d5764a554_add (data) {\n",
" geo_json_77d892c2b3fe277ba191ae1d5764a554\n",
" .addData(data);\n",
" }\n",
" geo_json_77d892c2b3fe277ba191ae1d5764a554_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.478096967469352, 53.787227631439784], [-2.4780643115278322, 53.78721759170382], [-2.4780674148472444, 53.787188183859215], [-2.4781163362803436, 53.787197887264654], [-2.478096967469352, 53.787227631439784]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_77d892c2b3fe277ba191ae1d5764a554.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b058218ab54d86a8771c2e219b59f480 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7110c7c4739e88b5ee84c3bba6c77c89 = $(`&lt;div id=&quot;html_7110c7c4739e88b5ee84c3bba6c77c89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 14&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.7 sqm&lt;/div&gt;`)[0];\n",
" popup_b058218ab54d86a8771c2e219b59f480.setContent(html_7110c7c4739e88b5ee84c3bba6c77c89);\n",
" \n",
" \n",
"\n",
" geo_json_77d892c2b3fe277ba191ae1d5764a554.bindPopup(popup_b058218ab54d86a8771c2e219b59f480)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_77d892c2b3fe277ba191ae1d5764a554.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_86fa4719e9164a25223dcd86c39bc08e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_86fa4719e9164a25223dcd86c39bc08e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_86fa4719e9164a25223dcd86c39bc08e = L.geoJson(null, {\n",
" onEachFeature: geo_json_86fa4719e9164a25223dcd86c39bc08e_onEachFeature,\n",
" \n",
" style: geo_json_86fa4719e9164a25223dcd86c39bc08e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_86fa4719e9164a25223dcd86c39bc08e_add (data) {\n",
" geo_json_86fa4719e9164a25223dcd86c39bc08e\n",
" .addData(data);\n",
" }\n",
" geo_json_86fa4719e9164a25223dcd86c39bc08e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4781637292675445, 53.78730777683071], [-2.4781168947112704, 53.78733556781968], [-2.4780656388976814, 53.787325078281796], [-2.4780790088052633, 53.78727660174991], [-2.4781300680675376, 53.787268084105335], [-2.47816397459345, 53.787287449342806], [-2.4781637292675445, 53.78730777683071]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_86fa4719e9164a25223dcd86c39bc08e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_75bafc8f3c07245a7e62eacdb5ec539d = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_7b9210336fa40ce180937fc4b7fdc7e5 = $(`&lt;div id=&quot;html_7b9210336fa40ce180937fc4b7fdc7e5&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 15&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 35.0 sqm&lt;br&gt;Intersecting area: 34.6 sqm&lt;/div&gt;`)[0];\n",
" popup_75bafc8f3c07245a7e62eacdb5ec539d.setContent(html_7b9210336fa40ce180937fc4b7fdc7e5);\n",
" \n",
" \n",
"\n",
" geo_json_86fa4719e9164a25223dcd86c39bc08e.bindPopup(popup_75bafc8f3c07245a7e62eacdb5ec539d)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_86fa4719e9164a25223dcd86c39bc08e.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_8ec3e269f170a2c9cac536d92515e969_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8ec3e269f170a2c9cac536d92515e969_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8ec3e269f170a2c9cac536d92515e969 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8ec3e269f170a2c9cac536d92515e969_onEachFeature,\n",
" \n",
" style: geo_json_8ec3e269f170a2c9cac536d92515e969_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8ec3e269f170a2c9cac536d92515e969_add (data) {\n",
" geo_json_8ec3e269f170a2c9cac536d92515e969\n",
" .addData(data);\n",
" }\n",
" geo_json_8ec3e269f170a2c9cac536d92515e969_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4782858336007174, 53.78732402360016], [-2.4782203306042234, 53.78733505537922], [-2.4782016658949075, 53.78730662330437], [-2.4782535521515583, 53.78727727786048], [-2.478285514139445, 53.787295951549126], [-2.4782858336007174, 53.78732402360016]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8ec3e269f170a2c9cac536d92515e969.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_06418a11886f730db291e75e5b41fa65 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f39fddcb74d11f5a2a90d34cbd33cf6c = $(`&lt;div id=&quot;html_f39fddcb74d11f5a2a90d34cbd33cf6c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 16&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 23.0 sqm&lt;br&gt;Intersecting area: 23.2 sqm&lt;/div&gt;`)[0];\n",
" popup_06418a11886f730db291e75e5b41fa65.setContent(html_f39fddcb74d11f5a2a90d34cbd33cf6c);\n",
" \n",
" \n",
"\n",
" geo_json_8ec3e269f170a2c9cac536d92515e969.bindPopup(popup_06418a11886f730db291e75e5b41fa65)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8ec3e269f170a2c9cac536d92515e969.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_1284321177dbb8f3cf3bfdc076657c5d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1284321177dbb8f3cf3bfdc076657c5d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1284321177dbb8f3cf3bfdc076657c5d = L.geoJson(null, {\n",
" onEachFeature: geo_json_1284321177dbb8f3cf3bfdc076657c5d_onEachFeature,\n",
" \n",
" style: geo_json_1284321177dbb8f3cf3bfdc076657c5d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1284321177dbb8f3cf3bfdc076657c5d_add (data) {\n",
" geo_json_1284321177dbb8f3cf3bfdc076657c5d\n",
" .addData(data);\n",
" }\n",
" geo_json_1284321177dbb8f3cf3bfdc076657c5d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477921812762498, 53.787497385956485], [-2.4778851500854224, 53.78749753214697], [-2.477870046952969, 53.78748731001964], [-2.477883216199522, 53.78747522338968], [-2.477921481768445, 53.787468278526234], [-2.477921812762498, 53.787497385956485]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1284321177dbb8f3cf3bfdc076657c5d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9471aa1b0ec8136b57d808c87c2ce9e3 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b3fbb0a9bbc514ca11aaf8808c4680a8 = $(`&lt;div id=&quot;html_b3fbb0a9bbc514ca11aaf8808c4680a8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 17&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.3 sqm&lt;/div&gt;`)[0];\n",
" popup_9471aa1b0ec8136b57d808c87c2ce9e3.setContent(html_b3fbb0a9bbc514ca11aaf8808c4680a8);\n",
" \n",
" \n",
"\n",
" geo_json_1284321177dbb8f3cf3bfdc076657c5d.bindPopup(popup_9471aa1b0ec8136b57d808c87c2ce9e3)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1284321177dbb8f3cf3bfdc076657c5d.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_71b444dee60190706635297c50e507af_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_71b444dee60190706635297c50e507af_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_71b444dee60190706635297c50e507af = L.geoJson(null, {\n",
" onEachFeature: geo_json_71b444dee60190706635297c50e507af_onEachFeature,\n",
" \n",
" style: geo_json_71b444dee60190706635297c50e507af_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_71b444dee60190706635297c50e507af_add (data) {\n",
" geo_json_71b444dee60190706635297c50e507af\n",
" .addData(data);\n",
" }\n",
" geo_json_71b444dee60190706635297c50e507af_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4779784780067837, 53.78750652015544], [-2.4779772806309013, 53.787485715759225], [-2.4780128014738594, 53.78748499886155], [-2.4780219682540796, 53.787507212252834], [-2.4779784780067837, 53.78750652015544]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_71b444dee60190706635297c50e507af.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a8ea5fa022af874ac753a9230dad908e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c5becd264a2c9f3e8f8a860e8de58c96 = $(`&lt;div id=&quot;html_c5becd264a2c9f3e8f8a860e8de58c96&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 18&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 6.2 sqm&lt;/div&gt;`)[0];\n",
" popup_a8ea5fa022af874ac753a9230dad908e.setContent(html_c5becd264a2c9f3e8f8a860e8de58c96);\n",
" \n",
" \n",
"\n",
" geo_json_71b444dee60190706635297c50e507af.bindPopup(popup_a8ea5fa022af874ac753a9230dad908e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_71b444dee60190706635297c50e507af.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_1c92df75e41711839d8dc7a014cd9e0e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1c92df75e41711839d8dc7a014cd9e0e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1c92df75e41711839d8dc7a014cd9e0e = L.geoJson(null, {\n",
" onEachFeature: geo_json_1c92df75e41711839d8dc7a014cd9e0e_onEachFeature,\n",
" \n",
" style: geo_json_1c92df75e41711839d8dc7a014cd9e0e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1c92df75e41711839d8dc7a014cd9e0e_add (data) {\n",
" geo_json_1c92df75e41711839d8dc7a014cd9e0e\n",
" .addData(data);\n",
" }\n",
" geo_json_1c92df75e41711839d8dc7a014cd9e0e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4785439214425575, 53.78780134900632], [-2.4785254264780514, 53.787780930961205], [-2.478528783908194, 53.787769999751696], [-2.478562398115762, 53.787769773863054], [-2.478593889290442, 53.78777957992455], [-2.478594609048344, 53.7877990667731], [-2.4785439214425575, 53.78780134900632]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1c92df75e41711839d8dc7a014cd9e0e.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_bdfa2773b1b9d6fee6920a0a55d2a503 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_66b9529bc7398395d2a37346da8a72f4 = $(`&lt;div id=&quot;html_66b9529bc7398395d2a37346da8a72f4&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 19&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 13.0 sqm&lt;br&gt;Intersecting area: 12.8 sqm&lt;/div&gt;`)[0];\n",
" popup_bdfa2773b1b9d6fee6920a0a55d2a503.setContent(html_66b9529bc7398395d2a37346da8a72f4);\n",
" \n",
" \n",
"\n",
" geo_json_1c92df75e41711839d8dc7a014cd9e0e.bindPopup(popup_bdfa2773b1b9d6fee6920a0a55d2a503)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1c92df75e41711839d8dc7a014cd9e0e.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_9ef133002697ccfe4a54c3991e6bf263_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9ef133002697ccfe4a54c3991e6bf263_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9ef133002697ccfe4a54c3991e6bf263 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9ef133002697ccfe4a54c3991e6bf263_onEachFeature,\n",
" \n",
" style: geo_json_9ef133002697ccfe4a54c3991e6bf263_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9ef133002697ccfe4a54c3991e6bf263_add (data) {\n",
" geo_json_9ef133002697ccfe4a54c3991e6bf263\n",
" .addData(data);\n",
" }\n",
" geo_json_9ef133002697ccfe4a54c3991e6bf263_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.47827581361089, 53.787919068102056], [-2.478213374800612, 53.787937891087125], [-2.47816484900447, 53.787937558891414], [-2.4781019659697963, 53.78789986034798], [-2.4781181188794017, 53.78784450582981], [-2.4781887559747493, 53.78785174883126], [-2.4782154326131267, 53.787852754218456], [-2.4782775468978975, 53.7878989216266], [-2.47827581361089, 53.787919068102056]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9ef133002697ccfe4a54c3991e6bf263.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4e692a589540cb4a073cb970b3095638 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cfc9673b8f388671df38b8381afe1c27 = $(`&lt;div id=&quot;html_cfc9673b8f388671df38b8381afe1c27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 20&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 86.0 sqm&lt;br&gt;Intersecting area: 72.0 sqm&lt;/div&gt;`)[0];\n",
" popup_4e692a589540cb4a073cb970b3095638.setContent(html_cfc9673b8f388671df38b8381afe1c27);\n",
" \n",
" \n",
"\n",
" geo_json_9ef133002697ccfe4a54c3991e6bf263.bindPopup(popup_4e692a589540cb4a073cb970b3095638)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9ef133002697ccfe4a54c3991e6bf263.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_85ba2d7dadeb0a3cea35720a1aa3a094_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_85ba2d7dadeb0a3cea35720a1aa3a094_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_85ba2d7dadeb0a3cea35720a1aa3a094 = L.geoJson(null, {\n",
" onEachFeature: geo_json_85ba2d7dadeb0a3cea35720a1aa3a094_onEachFeature,\n",
" \n",
" style: geo_json_85ba2d7dadeb0a3cea35720a1aa3a094_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_85ba2d7dadeb0a3cea35720a1aa3a094_add (data) {\n",
" geo_json_85ba2d7dadeb0a3cea35720a1aa3a094\n",
" .addData(data);\n",
" }\n",
" geo_json_85ba2d7dadeb0a3cea35720a1aa3a094_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4769126444893295, 53.7868815142885], [-2.476882953784321, 53.78687418851567], [-2.4768814466255025, 53.786873921277184], [-2.4768798778670384, 53.78687384392809], [-2.4768779340309672, 53.78687401794036], [-2.4768327367029794, 53.786881732465964], [-2.476816736645272, 53.78685194315911], [-2.4768657000786414, 53.786841597232964], [-2.476928478819449, 53.786860578294736], [-2.4769126444893295, 53.7868815142885]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_85ba2d7dadeb0a3cea35720a1aa3a094.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_8df8ecf8eb7ca9d69cff9aa66e569cfe = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ce108f0bd6416c1f2722055490072dd6 = $(`&lt;div id=&quot;html_ce108f0bd6416c1f2722055490072dd6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 21&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 21.3 sqm&lt;/div&gt;`)[0];\n",
" popup_8df8ecf8eb7ca9d69cff9aa66e569cfe.setContent(html_ce108f0bd6416c1f2722055490072dd6);\n",
" \n",
" \n",
"\n",
" geo_json_85ba2d7dadeb0a3cea35720a1aa3a094.bindPopup(popup_8df8ecf8eb7ca9d69cff9aa66e569cfe)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_85ba2d7dadeb0a3cea35720a1aa3a094.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_c545a674775a544a277f13ddda9081c9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c545a674775a544a277f13ddda9081c9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c545a674775a544a277f13ddda9081c9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c545a674775a544a277f13ddda9081c9_onEachFeature,\n",
" \n",
" style: geo_json_c545a674775a544a277f13ddda9081c9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c545a674775a544a277f13ddda9081c9_add (data) {\n",
" geo_json_c545a674775a544a277f13ddda9081c9\n",
" .addData(data);\n",
" }\n",
" geo_json_c545a674775a544a277f13ddda9081c9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477676207996218, 53.78691543689982], [-2.4776750165583423, 53.78691664155607], [-2.477674505374147, 53.786918004383125], [-2.477671084201299, 53.78695045055844], [-2.477606514775091, 53.78694075360103], [-2.477619068818077, 53.78691060074007], [-2.4776192717028778, 53.78690922116276], [-2.477618890004718, 53.786908088392444], [-2.4776178105493614, 53.78690685952833], [-2.4776164608554914, 53.786906025421615], [-2.4775745276454706, 53.78688602330194], [-2.477588633020279, 53.78685548227358], [-2.477608959118698, 53.78683863853011], [-2.4777033656104583, 53.78684917829123], [-2.4777045189229447, 53.78689496339285], [-2.477676207996218, 53.78691543689982]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c545a674775a544a277f13ddda9081c9.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_46bdf7d75f124980dfe3de04e28d4486 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_194866c9076db6cb7a46694b5271e836 = $(`&lt;div id=&quot;html_194866c9076db6cb7a46694b5271e836&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 22&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 70.0 sqm&lt;br&gt;Intersecting area: 70.2 sqm&lt;/div&gt;`)[0];\n",
" popup_46bdf7d75f124980dfe3de04e28d4486.setContent(html_194866c9076db6cb7a46694b5271e836);\n",
" \n",
" \n",
"\n",
" geo_json_c545a674775a544a277f13ddda9081c9.bindPopup(popup_46bdf7d75f124980dfe3de04e28d4486)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c545a674775a544a277f13ddda9081c9.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_a80de7cd9e08fb5920e2c57fd5372614_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_a80de7cd9e08fb5920e2c57fd5372614_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_a80de7cd9e08fb5920e2c57fd5372614 = L.geoJson(null, {\n",
" onEachFeature: geo_json_a80de7cd9e08fb5920e2c57fd5372614_onEachFeature,\n",
" \n",
" style: geo_json_a80de7cd9e08fb5920e2c57fd5372614_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_a80de7cd9e08fb5920e2c57fd5372614_add (data) {\n",
" geo_json_a80de7cd9e08fb5920e2c57fd5372614\n",
" .addData(data);\n",
" }\n",
" geo_json_a80de7cd9e08fb5920e2c57fd5372614_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4771813646097653, 53.78698815048276], [-2.477150391013882, 53.786969440207116], [-2.477149621223801, 53.78693331933542], [-2.477170011961998, 53.78691252515603], [-2.477246968802537, 53.786930182286994], [-2.477248584616004, 53.786978779720464], [-2.4771813646097653, 53.78698815048276]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_a80de7cd9e08fb5920e2c57fd5372614.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b916d75466e881cdac5c794485b10424 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f3f7fea1bbcd9f90c82eea56f19ad3ee = $(`&lt;div id=&quot;html_f3f7fea1bbcd9f90c82eea56f19ad3ee&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 23&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 43.0 sqm&lt;br&gt;Intersecting area: 43.2 sqm&lt;/div&gt;`)[0];\n",
" popup_b916d75466e881cdac5c794485b10424.setContent(html_f3f7fea1bbcd9f90c82eea56f19ad3ee);\n",
" \n",
" \n",
"\n",
" geo_json_a80de7cd9e08fb5920e2c57fd5372614.bindPopup(popup_b916d75466e881cdac5c794485b10424)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_a80de7cd9e08fb5920e2c57fd5372614.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_8c4625bda0e6a26f6a7ee6fefe407808_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_8c4625bda0e6a26f6a7ee6fefe407808_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_8c4625bda0e6a26f6a7ee6fefe407808 = L.geoJson(null, {\n",
" onEachFeature: geo_json_8c4625bda0e6a26f6a7ee6fefe407808_onEachFeature,\n",
" \n",
" style: geo_json_8c4625bda0e6a26f6a7ee6fefe407808_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_8c4625bda0e6a26f6a7ee6fefe407808_add (data) {\n",
" geo_json_8c4625bda0e6a26f6a7ee6fefe407808\n",
" .addData(data);\n",
" }\n",
" geo_json_8c4625bda0e6a26f6a7ee6fefe407808_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4763777407647445, 53.78678494364321], [-2.476330778520693, 53.7867747356008], [-2.476363869257377, 53.78675370323492], [-2.4763821428427177, 53.78675633061555], [-2.4763777407647445, 53.78678494364321]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_8c4625bda0e6a26f6a7ee6fefe407808.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_10181a969adbc91b8df489539fdfdf47 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e18e193aba8cbc4fce787abd0d1e8750 = $(`&lt;div id=&quot;html_e18e193aba8cbc4fce787abd0d1e8750&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 24&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.8 sqm&lt;/div&gt;`)[0];\n",
" popup_10181a969adbc91b8df489539fdfdf47.setContent(html_e18e193aba8cbc4fce787abd0d1e8750);\n",
" \n",
" \n",
"\n",
" geo_json_8c4625bda0e6a26f6a7ee6fefe407808.bindPopup(popup_10181a969adbc91b8df489539fdfdf47)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_8c4625bda0e6a26f6a7ee6fefe407808.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_5b7892ea52c5b072a4a00b7f4962427d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5b7892ea52c5b072a4a00b7f4962427d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5b7892ea52c5b072a4a00b7f4962427d = L.geoJson(null, {\n",
" onEachFeature: geo_json_5b7892ea52c5b072a4a00b7f4962427d_onEachFeature,\n",
" \n",
" style: geo_json_5b7892ea52c5b072a4a00b7f4962427d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5b7892ea52c5b072a4a00b7f4962427d_add (data) {\n",
" geo_json_5b7892ea52c5b072a4a00b7f4962427d\n",
" .addData(data);\n",
" }\n",
" geo_json_5b7892ea52c5b072a4a00b7f4962427d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4766233890230187, 53.787071778339985], [-2.476606234340188, 53.78705125490278], [-2.476655178605512, 53.7870407994821], [-2.4766662409598306, 53.78706387458597], [-2.4766233890230187, 53.787071778339985]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5b7892ea52c5b072a4a00b7f4962427d.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_22b7099a446352d3ee6309e2e7c057bf = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_14573051b25344190d5fc0a7b262becd = $(`&lt;div id=&quot;html_14573051b25344190d5fc0a7b262becd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 25&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.3 sqm&lt;/div&gt;`)[0];\n",
" popup_22b7099a446352d3ee6309e2e7c057bf.setContent(html_14573051b25344190d5fc0a7b262becd);\n",
" \n",
" \n",
"\n",
" geo_json_5b7892ea52c5b072a4a00b7f4962427d.bindPopup(popup_22b7099a446352d3ee6309e2e7c057bf)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5b7892ea52c5b072a4a00b7f4962427d.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_99578f0e53b96407574d73d305c9806a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_99578f0e53b96407574d73d305c9806a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_99578f0e53b96407574d73d305c9806a = L.geoJson(null, {\n",
" onEachFeature: geo_json_99578f0e53b96407574d73d305c9806a_onEachFeature,\n",
" \n",
" style: geo_json_99578f0e53b96407574d73d305c9806a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_99578f0e53b96407574d73d305c9806a_add (data) {\n",
" geo_json_99578f0e53b96407574d73d305c9806a\n",
" .addData(data);\n",
" }\n",
" geo_json_99578f0e53b96407574d73d305c9806a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4777467047916613, 53.78716564790873], [-2.477728851234238, 53.78712855791702], [-2.477759788827249, 53.78709960537517], [-2.4777799387493618, 53.7870991700198], [-2.477797100231794, 53.78715615425079], [-2.4777467047916613, 53.78716564790873]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_99578f0e53b96407574d73d305c9806a.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_aae69da1d6e965ca810faf9cfd40f175 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_fb5ac92d32fe6ef1dd31e59b6f7b9888 = $(`&lt;div id=&quot;html_fb5ac92d32fe6ef1dd31e59b6f7b9888&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 26&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 22.1 sqm&lt;/div&gt;`)[0];\n",
" popup_aae69da1d6e965ca810faf9cfd40f175.setContent(html_fb5ac92d32fe6ef1dd31e59b6f7b9888);\n",
" \n",
" \n",
"\n",
" geo_json_99578f0e53b96407574d73d305c9806a.bindPopup(popup_aae69da1d6e965ca810faf9cfd40f175)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_99578f0e53b96407574d73d305c9806a.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_64246e0cabd46b811409262413e58d09_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_64246e0cabd46b811409262413e58d09_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_64246e0cabd46b811409262413e58d09 = L.geoJson(null, {\n",
" onEachFeature: geo_json_64246e0cabd46b811409262413e58d09_onEachFeature,\n",
" \n",
" style: geo_json_64246e0cabd46b811409262413e58d09_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_64246e0cabd46b811409262413e58d09_add (data) {\n",
" geo_json_64246e0cabd46b811409262413e58d09\n",
" .addData(data);\n",
" }\n",
" geo_json_64246e0cabd46b811409262413e58d09_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477097002445538, 53.78717801407576], [-2.477049333026739, 53.78717790003217], [-2.4770459750636133, 53.78715819178473], [-2.4770640448570838, 53.787129073129755], [-2.4771142362162126, 53.787139028949284], [-2.477097002445538, 53.78717801407576]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_64246e0cabd46b811409262413e58d09.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9531b235042681e63573d69d4b38228c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_9aacca18c348aa25e609cc20eb972f69 = $(`&lt;div id=&quot;html_9aacca18c348aa25e609cc20eb972f69&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 27&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.0 sqm&lt;/div&gt;`)[0];\n",
" popup_9531b235042681e63573d69d4b38228c.setContent(html_9aacca18c348aa25e609cc20eb972f69);\n",
" \n",
" \n",
"\n",
" geo_json_64246e0cabd46b811409262413e58d09.bindPopup(popup_9531b235042681e63573d69d4b38228c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_64246e0cabd46b811409262413e58d09.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_70c67315cd3907b0ce73c7eff856cde3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_70c67315cd3907b0ce73c7eff856cde3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_70c67315cd3907b0ce73c7eff856cde3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_70c67315cd3907b0ce73c7eff856cde3_onEachFeature,\n",
" \n",
" style: geo_json_70c67315cd3907b0ce73c7eff856cde3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_70c67315cd3907b0ce73c7eff856cde3_add (data) {\n",
" geo_json_70c67315cd3907b0ce73c7eff856cde3\n",
" .addData(data);\n",
" }\n",
" geo_json_70c67315cd3907b0ce73c7eff856cde3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4776180013424107, 53.787336486509], [-2.477584644967408, 53.7873557658077], [-2.477549010487404, 53.78734433566537], [-2.4775486630159262, 53.78729999622736], [-2.4775678816485844, 53.78729707132908], [-2.4776182137703535, 53.787308966899865], [-2.4776180013424107, 53.787336486509]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_70c67315cd3907b0ce73c7eff856cde3.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9fddc08d0eec3e27ed7bc76e5a63985e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_a5fc09a2d896659e8af25f66ae4605f0 = $(`&lt;div id=&quot;html_a5fc09a2d896659e8af25f66ae4605f0&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 28&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 23.5 sqm&lt;/div&gt;`)[0];\n",
" popup_9fddc08d0eec3e27ed7bc76e5a63985e.setContent(html_a5fc09a2d896659e8af25f66ae4605f0);\n",
" \n",
" \n",
"\n",
" geo_json_70c67315cd3907b0ce73c7eff856cde3.bindPopup(popup_9fddc08d0eec3e27ed7bc76e5a63985e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_70c67315cd3907b0ce73c7eff856cde3.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_11da5517b2c7ea00666e8a94d11cdc84_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_11da5517b2c7ea00666e8a94d11cdc84_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_11da5517b2c7ea00666e8a94d11cdc84 = L.geoJson(null, {\n",
" onEachFeature: geo_json_11da5517b2c7ea00666e8a94d11cdc84_onEachFeature,\n",
" \n",
" style: geo_json_11da5517b2c7ea00666e8a94d11cdc84_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_11da5517b2c7ea00666e8a94d11cdc84_add (data) {\n",
" geo_json_11da5517b2c7ea00666e8a94d11cdc84\n",
" .addData(data);\n",
" }\n",
" geo_json_11da5517b2c7ea00666e8a94d11cdc84_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4774960478260084, 53.78765305302433], [-2.4774485131511716, 53.78764373751764], [-2.477445545118044, 53.787596913431734], [-2.4774490184556583, 53.787585606993886], [-2.4774834173291853, 53.78758605777203], [-2.4775281707097627, 53.78764354509599], [-2.4774960478260084, 53.78765305302433]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_11da5517b2c7ea00666e8a94d11cdc84.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_681f9db646baaabd7a43cd0666fc3c5b = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e5df8ba108bcfb8fcd0dc00e8a3655ae = $(`&lt;div id=&quot;html_e5df8ba108bcfb8fcd0dc00e8a3655ae&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 29&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 28.0 sqm&lt;br&gt;Intersecting area: 27.6 sqm&lt;/div&gt;`)[0];\n",
" popup_681f9db646baaabd7a43cd0666fc3c5b.setContent(html_e5df8ba108bcfb8fcd0dc00e8a3655ae);\n",
" \n",
" \n",
"\n",
" geo_json_11da5517b2c7ea00666e8a94d11cdc84.bindPopup(popup_681f9db646baaabd7a43cd0666fc3c5b)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_11da5517b2c7ea00666e8a94d11cdc84.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b = L.geoJson(null, {\n",
" onEachFeature: geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b_onEachFeature,\n",
" \n",
" style: geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b_add (data) {\n",
" geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b\n",
" .addData(data);\n",
" }\n",
" geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4772535694812996, 53.78614368402521], [-2.477219834589507, 53.78614399452108], [-2.477127998119509, 53.78607638700489], [-2.4771258853444924, 53.78607531325308], [-2.4771236545437265, 53.78607480621685], [-2.4771208720374704, 53.78607476696105], [-2.477118603461163, 53.786075210118234], [-2.4771166793564494, 53.78607604917179], [-2.4771156845039717, 53.78607678835596], [-2.477101180471732, 53.78609026797478], [-2.4770701581687375, 53.7860908723281], [-2.4770643563688632, 53.786067659473254], [-2.4770635140644393, 53.786066327198384], [-2.4770622997509117, 53.78606538199315], [-2.4770610529414707, 53.78606478295629], [-2.4770596228654385, 53.78606435183115], [-2.4770568678144596, 53.786064057203966], [-2.4770319594905326, 53.78606416263933], [-2.4770296407278094, 53.786064463978846], [-2.477027906289685, 53.78606503084071], [-2.476999278079768, 53.786082134924605], [-2.4769983117480705, 53.78608284613202], [-2.476997609132171, 53.7860836578558], [-2.476997143578624, 53.78608476344216], [-2.476990204876985, 53.786119580266984], [-2.4769903807101894, 53.78612089812003], [-2.477012957839318, 53.786178837017054], [-2.476972757464644, 53.78619802564922], [-2.4769710856891853, 53.78619930051802], [-2.476970511117976, 53.78620016116497], [-2.4769702467526655, 53.786201073606115], [-2.4769705548524232, 53.786202677651474], [-2.476971800536528, 53.78620411347909], [-2.4769985111242754, 53.78622264842434], [-2.4769991218048797, 53.78625920585605], [-2.4769642616456458, 53.78627084032848], [-2.4769150224954193, 53.78625174428795], [-2.476913816464309, 53.78621260515665], [-2.476913409311386, 53.78621123340375], [-2.4769120712812125, 53.78620981861363], [-2.4769099710156754, 53.786208777162116], [-2.476907383255779, 53.78620824548007], [-2.4768683423665787, 53.786205895852056], [-2.476836412051122, 53.78606292657934], [-2.476992511494174, 53.78600506671211], [-2.4770999958045254, 53.78601384895487], [-2.477225698454193, 53.78607535177482], [-2.477227470310165, 53.78607580760358], [-2.4772293786248207, 53.78607598426192], [-2.477267871659095, 53.786076610245836], [-2.47728583826743, 53.786123062729246], [-2.4772535694812996, 53.78614368402521]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_845ddd50ef78b02e030cc7862fba1ae2 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_0fd54e110c28cbdd6834fc1236bd56f7 = $(`&lt;div id=&quot;html_0fd54e110c28cbdd6834fc1236bd56f7&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 30&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 350.0 sqm&lt;br&gt;Intersecting area: 4.0 sqm&lt;/div&gt;`)[0];\n",
" popup_845ddd50ef78b02e030cc7862fba1ae2.setContent(html_0fd54e110c28cbdd6834fc1236bd56f7);\n",
" \n",
" \n",
"\n",
" geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b.bindPopup(popup_845ddd50ef78b02e030cc7862fba1ae2)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e4a6a3b009ccca39dd6fabfb84c5d87b.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_573a20e4ff401a553f107256b2467831_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_573a20e4ff401a553f107256b2467831_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_573a20e4ff401a553f107256b2467831 = L.geoJson(null, {\n",
" onEachFeature: geo_json_573a20e4ff401a553f107256b2467831_onEachFeature,\n",
" \n",
" style: geo_json_573a20e4ff401a553f107256b2467831_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_573a20e4ff401a553f107256b2467831_add (data) {\n",
" geo_json_573a20e4ff401a553f107256b2467831\n",
" .addData(data);\n",
" }\n",
" geo_json_573a20e4ff401a553f107256b2467831_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4778141619456044, 53.78624951571052], [-2.477749968907825, 53.78623772311278], [-2.477778104255406, 53.78619904316119], [-2.4777786869767957, 53.78619769891889], [-2.477777247990959, 53.78606750621013], [-2.4777786857654767, 53.78603029437711], [-2.4778289817661014, 53.7860297963568], [-2.4778328589811247, 53.78615723259026], [-2.4778048302651667, 53.786194872212725], [-2.477804345591065, 53.78619576216333], [-2.4778041846646857, 53.78619669307313], [-2.477804443703033, 53.78619785060273], [-2.4778050106642455, 53.786198724677604], [-2.477805869532654, 53.78619950950606], [-2.477806985033652, 53.78620017197485], [-2.477832875443999, 53.7862102126883], [-2.47783379318919, 53.78623753634855], [-2.4778141619456044, 53.78624951571052]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_573a20e4ff401a553f107256b2467831.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_7e0726fcee0e993b1b8ce079945d0f85 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_697df333b6c2bed21afc21bfbab5623e = $(`&lt;div id=&quot;html_697df333b6c2bed21afc21bfbab5623e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 31&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 84.0 sqm&lt;br&gt;Intersecting area: 5.7 sqm&lt;/div&gt;`)[0];\n",
" popup_7e0726fcee0e993b1b8ce079945d0f85.setContent(html_697df333b6c2bed21afc21bfbab5623e);\n",
" \n",
" \n",
"\n",
" geo_json_573a20e4ff401a553f107256b2467831.bindPopup(popup_7e0726fcee0e993b1b8ce079945d0f85)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_573a20e4ff401a553f107256b2467831.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_3bb0227c0801bdb6102649c359bbfe11_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3bb0227c0801bdb6102649c359bbfe11_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3bb0227c0801bdb6102649c359bbfe11 = L.geoJson(null, {\n",
" onEachFeature: geo_json_3bb0227c0801bdb6102649c359bbfe11_onEachFeature,\n",
" \n",
" style: geo_json_3bb0227c0801bdb6102649c359bbfe11_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3bb0227c0801bdb6102649c359bbfe11_add (data) {\n",
" geo_json_3bb0227c0801bdb6102649c359bbfe11\n",
" .addData(data);\n",
" }\n",
" geo_json_3bb0227c0801bdb6102649c359bbfe11_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.476490857469635, 53.786944698157654], [-2.476447685178816, 53.78697414212243], [-2.476446395411865, 53.78697537861538], [-2.4764458268374008, 53.78697703827134], [-2.4764452239986583, 53.787009013913384], [-2.476412256290216, 53.787028193371356], [-2.476331314385459, 53.78702865980219], [-2.476329368887717, 53.78702882212893], [-2.47632756024793, 53.78702927422617], [-2.4763254807208783, 53.787030333195396], [-2.476324304457891, 53.78703154136936], [-2.476311112038002, 53.787055672829275], [-2.476311053919942, 53.78705683880967], [-2.476311506943757, 53.78705797400068], [-2.476312435346332, 53.787059002140694], [-2.4763137806535283, 53.787059853358556], [-2.4763401774131473, 53.7870702285324], [-2.4763409934143303, 53.78710057708391], [-2.4763415434802174, 53.78710197164551], [-2.4763428064809596, 53.7871031934956], [-2.4763443135695655, 53.78710398924134], [-2.4763465090740078, 53.78710459260238], [-2.4763998740833757, 53.787113488098214], [-2.476431838716794, 53.78714118179665], [-2.4764184290463187, 53.787180958754305], [-2.476418296432928, 53.78718211424768], [-2.4764185526784113, 53.787183028213775], [-2.476419514128536, 53.78718429350733], [-2.4764210815634136, 53.78718532449785], [-2.4764632899986725, 53.78720566028107], [-2.476443308084191, 53.78726175873204], [-2.476411430789026, 53.78726065857489], [-2.476409466732697, 53.78723829598988], [-2.476409092156564, 53.78723711914193], [-2.476408208733603, 53.78723604229098], [-2.476406875005356, 53.787235142491], [-2.4764055467702524, 53.78723459320828], [-2.4763502658987013, 53.78721656986153], [-2.4763483246817914, 53.78719447861996], [-2.4763480820738666, 53.78719356280373], [-2.4763475273619475, 53.787192695860824], [-2.476346685229863, 53.78719191455137], [-2.476345589453787, 53.78719125199072], [-2.476343935631348, 53.787190633893516], [-2.476342455400549, 53.7871903332831], [-2.476319740465177, 53.787189307243686], [-2.476317849345644, 53.78717632161241], [-2.476316998698998, 53.78717478892969], [-2.47631557618051, 53.78717368815404], [-2.4763136578203317, 53.78717289673825], [-2.4763110331541562, 53.787172461364314], [-2.476257778486961, 53.78717116479504], [-2.4762258324328976, 53.787107729940054], [-2.476224981075415, 53.787008483513524], [-2.476280291534444, 53.78700128718738], [-2.476282486587702, 53.78700077962647], [-2.476284569136575, 53.78699971975024], [-2.4762857469021275, 53.78699851066638], [-2.476292217815062, 53.78698677260211], [-2.476292575527639, 53.78698565845987], [-2.4762846539870433, 53.78693300729296], [-2.4762843444934566, 53.78693208185494], [-2.4762837154006982, 53.78693121431155], [-2.4762825238677637, 53.786930270803765], [-2.4762809598781637, 53.786929542695404], [-2.476223657298805, 53.7869094699523], [-2.476222465473035, 53.786810580801784], [-2.4762693511882157, 53.78677278034037], [-2.476308107708313, 53.786780395604545], [-2.4763372715052947, 53.78680592894317], [-2.476338310335377, 53.78680665734226], [-2.476339584282972, 53.786807239199625], [-2.4763414202200935, 53.786807722649], [-2.476397151016399, 53.78681741587031], [-2.47641323017871, 53.78684898905072], [-2.476414051359152, 53.78685006525334], [-2.4764150327202445, 53.786850810955016], [-2.4764172989999493, 53.786851767264075], [-2.4764199946701426, 53.78685217539546], [-2.476457193049696, 53.78685247422717], [-2.476490110949865, 53.78687255931615], [-2.476490857469635, 53.786944698157654]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3bb0227c0801bdb6102649c359bbfe11.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_87336abd2aff8bcd55957afab3d3593f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_cde6bc921efad9c6ebb0aa8b2c0d5613 = $(`&lt;div id=&quot;html_cde6bc921efad9c6ebb0aa8b2c0d5613&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 32&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 548.0 sqm&lt;br&gt;Intersecting area: 339.3 sqm&lt;/div&gt;`)[0];\n",
" popup_87336abd2aff8bcd55957afab3d3593f.setContent(html_cde6bc921efad9c6ebb0aa8b2c0d5613);\n",
" \n",
" \n",
"\n",
" geo_json_3bb0227c0801bdb6102649c359bbfe11.bindPopup(popup_87336abd2aff8bcd55957afab3d3593f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3bb0227c0801bdb6102649c359bbfe11.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_94988a3616f6a275c872fd4bc9d6c31b_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_94988a3616f6a275c872fd4bc9d6c31b_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_94988a3616f6a275c872fd4bc9d6c31b = L.geoJson(null, {\n",
" onEachFeature: geo_json_94988a3616f6a275c872fd4bc9d6c31b_onEachFeature,\n",
" \n",
" style: geo_json_94988a3616f6a275c872fd4bc9d6c31b_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_94988a3616f6a275c872fd4bc9d6c31b_add (data) {\n",
" geo_json_94988a3616f6a275c872fd4bc9d6c31b\n",
" .addData(data);\n",
" }\n",
" geo_json_94988a3616f6a275c872fd4bc9d6c31b_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4777751648839814, 53.78787593584127], [-2.47772496435728, 53.78787648198709], [-2.477692025587597, 53.787834784619825], [-2.4776909778201275, 53.78783380909927], [-2.4776895451897505, 53.787833024756914], [-2.477687451147768, 53.78783240663275], [-2.477685140123343, 53.787832194736964], [-2.477618326051011, 53.78783225338986], [-2.4775540074708418, 53.78780654766364], [-2.4775513558264213, 53.78780587963016], [-2.4775497108841438, 53.787805779226915], [-2.4775231987661415, 53.78780589115268], [-2.4775208511770277, 53.78780620070366], [-2.477518784590438, 53.78780692978195], [-2.477517667652152, 53.787807613731104], [-2.4775168192696593, 53.78780842244257], [-2.4774968151669383, 53.787832944283366], [-2.4774213779440735, 53.78783310368892], [-2.4773733368464557, 53.787814364387756], [-2.477356551796229, 53.787749603925604], [-2.477402803523888, 53.78772092843646], [-2.477453459151252, 53.78772037701635], [-2.4774855806697658, 53.78774467681336], [-2.4774867201405377, 53.78774530862717], [-2.4774880521718226, 53.78774578867501], [-2.4774895218877657, 53.78774609650484], [-2.4774910669227137, 53.78774622067764], [-2.477493756838475, 53.787745982562726], [-2.477581358932824, 53.787728296442246], [-2.47758278362447, 53.78772784765615], [-2.477603516816593, 53.78771954275445], [-2.4776357840068575, 53.7877284732357], [-2.4776842830290846, 53.78777160871226], [-2.477685546555068, 53.78777247102385], [-2.4778048352282727, 53.78781837933364], [-2.4778063025649844, 53.78785666084108], [-2.4777751648839814, 53.78787593584127]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_94988a3616f6a275c872fd4bc9d6c31b.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_09bce24de9c55dde1afccf7d05c267d4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_99603a1175e3bc843d5e1283635cb9b3 = $(`&lt;div id=&quot;html_99603a1175e3bc843d5e1283635cb9b3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 33&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 275.0 sqm&lt;br&gt;Intersecting area: 268.3 sqm&lt;/div&gt;`)[0];\n",
" popup_09bce24de9c55dde1afccf7d05c267d4.setContent(html_99603a1175e3bc843d5e1283635cb9b3);\n",
" \n",
" \n",
"\n",
" geo_json_94988a3616f6a275c872fd4bc9d6c31b.bindPopup(popup_09bce24de9c55dde1afccf7d05c267d4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_94988a3616f6a275c872fd4bc9d6c31b.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_d7b0fb0d220372d6700075f148afe775_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d7b0fb0d220372d6700075f148afe775_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d7b0fb0d220372d6700075f148afe775 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d7b0fb0d220372d6700075f148afe775_onEachFeature,\n",
" \n",
" style: geo_json_d7b0fb0d220372d6700075f148afe775_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d7b0fb0d220372d6700075f148afe775_add (data) {\n",
" geo_json_d7b0fb0d220372d6700075f148afe775\n",
" .addData(data);\n",
" }\n",
" geo_json_d7b0fb0d220372d6700075f148afe775_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4785834137855374, 53.78815977015606], [-2.478520489523381, 53.788197164579145], [-2.478392842837354, 53.788197887163385], [-2.4783905080098556, 53.788198119385214], [-2.478388096053304, 53.78819891007735], [-2.478386524874724, 53.78819995806563], [-2.4783409127945473, 53.788242145833706], [-2.478287325102914, 53.78825172345897], [-2.4782849061600567, 53.78825256720135], [-2.478283365902947, 53.7882536653978], [-2.47828240923976, 53.78825522864513], [-2.47828240423355, 53.78825665597081], [-2.4782931159393202, 53.78829655977517], [-2.478187417773803, 53.78829708579579], [-2.4782257941711006, 53.78822939007148], [-2.478226175599323, 53.78822822908757], [-2.478226102614141, 53.78822728383611], [-2.478225375383116, 53.78822593403579], [-2.478224248660435, 53.78822495793066], [-2.4781521012636287, 53.78817734299795], [-2.4781777030544085, 53.78816670505069], [-2.478179073411072, 53.78816588256454], [-2.47818004557194, 53.7881648810145], [-2.4781806180668684, 53.78816330402168], [-2.478182323630605, 53.788130977931836], [-2.478261732939567, 53.78810208623128], [-2.478263677856001, 53.788100936087346], [-2.47826469869717, 53.78809967727748], [-2.478265018382767, 53.78809829274165], [-2.478264464449489, 53.78809669866841], [-2.478262990180406, 53.7880953257828], [-2.4782611346693604, 53.78809446224372], [-2.478258922229941, 53.78809397852601], [-2.4782565643576637, 53.788093919627045], [-2.4782148646781104, 53.78809937459277], [-2.4781955988789113, 53.788075371538504], [-2.4781945297837216, 53.78807439071157], [-2.4781930682952704, 53.788073606494656], [-2.478191315180743, 53.78807307151014], [-2.478189389239499, 53.7880728221337], [-2.4781503903879147, 53.7880720582447], [-2.478026800270941, 53.7879848870555], [-2.4780247965303412, 53.78798406814533], [-2.478022052029182, 53.78798364496994], [-2.477983548693219, 53.7879833356428], [-2.4779369970899965, 53.787956402497926], [-2.4779358452441222, 53.787926521778445], [-2.4780147751263835, 53.78790647550494], [-2.478107849804354, 53.78791540150768], [-2.4781412799247, 53.7879750297886], [-2.478141950099976, 53.78797590165415], [-2.4781429181097114, 53.78797666986556], [-2.478144826956577, 53.78797755206853], [-2.4781471076661505, 53.78797803372023], [-2.4782312681321748, 53.78798721180076], [-2.4782639328347655, 53.788029710049166], [-2.4782652362932533, 53.7880308786888], [-2.478324774683842, 53.78806567117555], [-2.4783260275609322, 53.78806626298334], [-2.4783278409811857, 53.78806676177126], [-2.4783298119105006, 53.788066963328795], [-2.478368428084611, 53.78806784463173], [-2.4783702984382874, 53.78807947940652], [-2.478370734781263, 53.78808061016042], [-2.4783718778609054, 53.78808182348033], [-2.4783735931939015, 53.788082772064016], [-2.4783753416157146, 53.788083294485645], [-2.478377650067796, 53.7880835459239], [-2.4783792141463374, 53.78808347496483], [-2.4783807199122867, 53.788083214594224], [-2.478447877104401, 53.78806699540464], [-2.4784498876593375, 53.78806627822154], [-2.478451631121711, 53.78806503180867], [-2.478452252829394, 53.7880641790541], [-2.478452564243951, 53.78806326821789], [-2.4784523389921644, 53.78804814849963], [-2.4784517569598057, 53.788047020123386], [-2.478450435177122, 53.788045842571506], [-2.4784489057039183, 53.788045086487074], [-2.478446710634964, 53.78804452900409], [-2.478362372264764, 53.78803467048557], [-2.4783461731554195, 53.787960322054396], [-2.4783795259502517, 53.78794098323996], [-2.4784935236286585, 53.787940404139185], [-2.478495927681146, 53.78793998738197], [-2.4785202823453165, 53.787933016074184], [-2.4785662849546988, 53.78797768733337], [-2.4785105038890407, 53.78804201203233], [-2.478509769086055, 53.78804332991839], [-2.4785097469408806, 53.78804471776284], [-2.4785102772092653, 53.78804583196218], [-2.478511521573571, 53.78804700892674], [-2.4785129813907134, 53.78804777876747], [-2.478515099463212, 53.788048373410575], [-2.478536205532266, 53.788049489949806], [-2.4785526516272594, 53.788081779515814], [-2.47855348667645, 53.78808286733584], [-2.4785544848723156, 53.78808361924434], [-2.4785557303659234, 53.788084229054036], [-2.4785829909396964, 53.78809491307063], [-2.4785834137855374, 53.78815977015606]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d7b0fb0d220372d6700075f148afe775.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_64b5dee09976edaa578e69340a764174 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_b6af10c51b10b54bde2a46f706746cc6 = $(`&lt;div id=&quot;html_b6af10c51b10b54bde2a46f706746cc6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 34&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 798.0 sqm&lt;br&gt;Intersecting area: 11.6 sqm&lt;/div&gt;`)[0];\n",
" popup_64b5dee09976edaa578e69340a764174.setContent(html_b6af10c51b10b54bde2a46f706746cc6);\n",
" \n",
" \n",
"\n",
" geo_json_d7b0fb0d220372d6700075f148afe775.bindPopup(popup_64b5dee09976edaa578e69340a764174)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d7b0fb0d220372d6700075f148afe775.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_fc08405963f511a94a428202d4db8ed4_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_fc08405963f511a94a428202d4db8ed4_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_fc08405963f511a94a428202d4db8ed4 = L.geoJson(null, {\n",
" onEachFeature: geo_json_fc08405963f511a94a428202d4db8ed4_onEachFeature,\n",
" \n",
" style: geo_json_fc08405963f511a94a428202d4db8ed4_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_fc08405963f511a94a428202d4db8ed4_add (data) {\n",
" geo_json_fc08405963f511a94a428202d4db8ed4\n",
" .addData(data);\n",
" }\n",
" geo_json_fc08405963f511a94a428202d4db8ed4_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4779911828989816, 53.78639235376314], [-2.477989608036734, 53.78639307280136], [-2.4779884029526777, 53.78639400966718], [-2.477987648880123, 53.786395100233264], [-2.4779874011122014, 53.7863962687711], [-2.477988599866106, 53.78651595627402], [-2.4779315607076513, 53.78653655609701], [-2.4779300570924434, 53.78653726765866], [-2.4779289063766905, 53.786538180940624], [-2.4779280188696546, 53.78653968368944], [-2.4779137597457503, 53.786592712618436], [-2.47791396721418, 53.786603750034], [-2.477914390381131, 53.786604658839885], [-2.4779151238718273, 53.78660549450043], [-2.4779170512235247, 53.786606675935225], [-2.4779195664721243, 53.786607367875234], [-2.47792233313603, 53.78660747907935], [-2.4779572325518013, 53.786603966687096], [-2.4780050861241194, 53.78663260685947], [-2.4780047829409466, 53.786660932162064], [-2.477963125359509, 53.78668024378146], [-2.4779613946456522, 53.78668153956967], [-2.477960571742144, 53.786683118460495], [-2.4779605582448676, 53.786684066757324], [-2.477975938352718, 53.78677765747693], [-2.477957306786247, 53.786788406004106], [-2.4778748258302334, 53.78678883017811], [-2.477872104971511, 53.78678914392453], [-2.477870695347804, 53.786789580075165], [-2.4778043410916037, 53.786815654752616], [-2.4777553903230305, 53.78679598087418], [-2.4777391621978624, 53.786705589667314], [-2.4777854772465813, 53.786667787284365], [-2.4778256161661467, 53.78665813856377], [-2.477827303607797, 53.78665757457361], [-2.4778289286219115, 53.78665659378972], [-2.4778299771290238, 53.78665536723531], [-2.477857782174774, 53.78660483871472], [-2.477858145393347, 53.78660367870431], [-2.477857986321469, 53.7866025028015], [-2.4778573164883158, 53.78660139185133], [-2.4778564423660767, 53.78660060168822], [-2.477855308624876, 53.78659993749687], [-2.4778539641448454, 53.78659942784041], [-2.4777852388221273, 53.78658165829299], [-2.4777900681126956, 53.78654985633981], [-2.477789887992152, 53.786548698495636], [-2.4777890218039804, 53.786547404070845], [-2.47778808896261, 53.78654665548685], [-2.4777865884597823, 53.78654590557433], [-2.47769334528788, 53.78651039689091], [-2.4776912454377853, 53.786491099791284], [-2.477727132956389, 53.786487863954534], [-2.4777456536098943, 53.786503950676114], [-2.4777469938959213, 53.786504759652445], [-2.477748286536775, 53.78650524884185], [-2.477836081343183, 53.786522238621934], [-2.4778384067774772, 53.78652238933685], [-2.4778403290388025, 53.78652218842845], [-2.477842099318719, 53.786521703207335], [-2.4778436041787613, 53.786520967375374], [-2.477844547439226, 53.78652022929092], [-2.47790194066483, 53.78646415848978], [-2.477902926202583, 53.78646260052143], [-2.4779030067572334, 53.78646140928413], [-2.4778870952464005, 53.78636096996189], [-2.4778863740664163, 53.78635961384344], [-2.4778849752190104, 53.78635845995883], [-2.4778830366001046, 53.786357621911655], [-2.477880753442766, 53.78635718431037], [-2.477737404819612, 53.78634855291794], [-2.477690044941418, 53.78632097305849], [-2.477688920478222, 53.786301761053316], [-2.477722835862979, 53.78628086433766], [-2.4778142092142597, 53.78628037515252], [-2.477877611542952, 53.78631365684332], [-2.477879660794416, 53.7863143470464], [-2.477881573194214, 53.78631461445655], [-2.4778839263938606, 53.78631453856156], [-2.47788612756579, 53.78631403993415], [-2.47788740387071, 53.78631349376579], [-2.477888686977489, 53.786312611414395], [-2.477915094204387, 53.78628880907424], [-2.477915829806032, 53.786287962163925], [-2.4779162473485714, 53.78628704191821], [-2.4779159682915486, 53.78621071007337], [-2.4779490821204497, 53.78620810001289], [-2.4780006084887147, 53.786294682397184], [-2.4780017595706147, 53.7862959370345], [-2.478002875373696, 53.78629662556677], [-2.4780042094906762, 53.78629715952937], [-2.478006890935554, 53.78629765306442], [-2.4780617450958617, 53.786299687581945], [-2.4780777298922603, 53.78636263556339], [-2.4779911828989816, 53.78639235376314]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_fc08405963f511a94a428202d4db8ed4.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_151c3489445dc32a098a90a9fdb3ecf8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6a97f5ae4fab85db398c8133317856ff = $(`&lt;div id=&quot;html_6a97f5ae4fab85db398c8133317856ff&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 35&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 714.0 sqm&lt;br&gt;Intersecting area: 692.5 sqm&lt;/div&gt;`)[0];\n",
" popup_151c3489445dc32a098a90a9fdb3ecf8.setContent(html_6a97f5ae4fab85db398c8133317856ff);\n",
" \n",
" \n",
"\n",
" geo_json_fc08405963f511a94a428202d4db8ed4.bindPopup(popup_151c3489445dc32a098a90a9fdb3ecf8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_fc08405963f511a94a428202d4db8ed4.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_751300bef7daf58e26ed16efe3ceace1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_751300bef7daf58e26ed16efe3ceace1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_751300bef7daf58e26ed16efe3ceace1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_751300bef7daf58e26ed16efe3ceace1_onEachFeature,\n",
" \n",
" style: geo_json_751300bef7daf58e26ed16efe3ceace1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_751300bef7daf58e26ed16efe3ceace1_add (data) {\n",
" geo_json_751300bef7daf58e26ed16efe3ceace1\n",
" .addData(data);\n",
" }\n",
" geo_json_751300bef7daf58e26ed16efe3ceace1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4769820192380703, 53.78658563690388], [-2.4768468721294856, 53.786586103678715], [-2.4768271666109336, 53.78656562097861], [-2.4768471587626912, 53.78654487967157], [-2.476982713531255, 53.78654436992822], [-2.47700208950871, 53.78655587034418], [-2.4769820192380703, 53.78658563690388]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_751300bef7daf58e26ed16efe3ceace1.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_21681ea7e8e79bed7cf17652cb134f74 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d0d14883e74130a06c981e5d818d398e = $(`&lt;div id=&quot;html_d0d14883e74130a06c981e5d818d398e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 36&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 47.0 sqm&lt;br&gt;Intersecting area: 46.9 sqm&lt;/div&gt;`)[0];\n",
" popup_21681ea7e8e79bed7cf17652cb134f74.setContent(html_d0d14883e74130a06c981e5d818d398e);\n",
" \n",
" \n",
"\n",
" geo_json_751300bef7daf58e26ed16efe3ceace1.bindPopup(popup_21681ea7e8e79bed7cf17652cb134f74)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_751300bef7daf58e26ed16efe3ceace1.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_c5565e6ae3c42a175a8b1755684dd874_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c5565e6ae3c42a175a8b1755684dd874_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c5565e6ae3c42a175a8b1755684dd874 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c5565e6ae3c42a175a8b1755684dd874_onEachFeature,\n",
" \n",
" style: geo_json_c5565e6ae3c42a175a8b1755684dd874_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c5565e6ae3c42a175a8b1755684dd874_add (data) {\n",
" geo_json_c5565e6ae3c42a175a8b1755684dd874\n",
" .addData(data);\n",
" }\n",
" geo_json_c5565e6ae3c42a175a8b1755684dd874_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.4781790611312284, 53.787397333863744], [-2.4781133645811626, 53.787397901556325], [-2.4781111308101216, 53.7873840652511], [-2.4781104127499667, 53.78738271900488], [-2.4781090260573144, 53.78738156957037], [-2.478106746248473, 53.78738063042627], [-2.478065555127334, 53.787369620771045], [-2.4780660068800704, 53.78735089053987], [-2.478084956350774, 53.7873488555506], [-2.4781325862907004, 53.787349751305364], [-2.4781348234162337, 53.78736361545915], [-2.478135687615615, 53.787365132795976], [-2.4781371069951312, 53.78736622007934], [-2.4781393678999226, 53.78736709818213], [-2.478179811708073, 53.78737725782506], [-2.4781790611312284, 53.787397333863744]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c5565e6ae3c42a175a8b1755684dd874.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_79693e835db6ef7e30df28402a252f58 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_242503b9b8ebc0518bce11dc26136536 = $(`&lt;div id=&quot;html_242503b9b8ebc0518bce11dc26136536&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 37&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 25.4 sqm&lt;/div&gt;`)[0];\n",
" popup_79693e835db6ef7e30df28402a252f58.setContent(html_242503b9b8ebc0518bce11dc26136536);\n",
" \n",
" \n",
"\n",
" geo_json_c5565e6ae3c42a175a8b1755684dd874.bindPopup(popup_79693e835db6ef7e30df28402a252f58)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c5565e6ae3c42a175a8b1755684dd874.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_aa5a82330dbb9e65950384328dfde4be_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_aa5a82330dbb9e65950384328dfde4be_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_aa5a82330dbb9e65950384328dfde4be = L.geoJson(null, {\n",
" onEachFeature: geo_json_aa5a82330dbb9e65950384328dfde4be_onEachFeature,\n",
" \n",
" style: geo_json_aa5a82330dbb9e65950384328dfde4be_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_aa5a82330dbb9e65950384328dfde4be_add (data) {\n",
" geo_json_aa5a82330dbb9e65950384328dfde4be\n",
" .addData(data);\n",
" }\n",
" geo_json_aa5a82330dbb9e65950384328dfde4be_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.477380388750799, 53.787554334057354], [-2.477379572182077, 53.78755513724962], [-2.4773789777319584, 53.787556253238016], [-2.477378865410919, 53.78755718844496], [-2.4773791881607057, 53.787558343025644], [-2.4773926112461053, 53.787580348066605], [-2.4773597148752633, 53.78759952929911], [-2.477295924692274, 53.78759063529726], [-2.477231689388413, 53.787555905947826], [-2.477172905775358, 53.78752729011224], [-2.477189688900477, 53.78750582360454], [-2.4772683856508237, 53.787514071382965], [-2.477302018280808, 53.787530720861895], [-2.4773033767467867, 53.78753125743105], [-2.4773048955329395, 53.787531610004784], [-2.477306507660615, 53.78753176177505], [-2.477405384074421, 53.7875346845578], [-2.477380388750799, 53.787554334057354]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_aa5a82330dbb9e65950384328dfde4be.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_c77f1c9acaadc0bab794e5a4b1e4dc23 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_10673f2e105295c4257163aa91bed1ac = $(`&lt;div id=&quot;html_10673f2e105295c4257163aa91bed1ac&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 38&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 82.0 sqm&lt;br&gt;Intersecting area: 82.0 sqm&lt;/div&gt;`)[0];\n",
" popup_c77f1c9acaadc0bab794e5a4b1e4dc23.setContent(html_10673f2e105295c4257163aa91bed1ac);\n",
" \n",
" \n",
"\n",
" geo_json_aa5a82330dbb9e65950384328dfde4be.bindPopup(popup_c77f1c9acaadc0bab794e5a4b1e4dc23)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_aa5a82330dbb9e65950384328dfde4be.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" function geo_json_41c54dc19f2ed166631fa05c8333cd16_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#166534&quot;, &quot;fillColor&quot;: &quot;#22c55e&quot;, &quot;fillOpacity&quot;: 0.16, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_41c54dc19f2ed166631fa05c8333cd16_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_41c54dc19f2ed166631fa05c8333cd16 = L.geoJson(null, {\n",
" onEachFeature: geo_json_41c54dc19f2ed166631fa05c8333cd16_onEachFeature,\n",
" \n",
" style: geo_json_41c54dc19f2ed166631fa05c8333cd16_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_41c54dc19f2ed166631fa05c8333cd16_add (data) {\n",
" geo_json_41c54dc19f2ed166631fa05c8333cd16\n",
" .addData(data);\n",
" }\n",
" geo_json_41c54dc19f2ed166631fa05c8333cd16_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.478019571969437, 53.787740910604285], [-2.4780182633689893, 53.78774235750833], [-2.478017905835425, 53.78774375118622], [-2.478018289207825, 53.78777745759592], [-2.4780184652749195, 53.78777839165325], [-2.478018967193985, 53.78777928396116], [-2.478019770241671, 53.787780095077075], [-2.4780211443752567, 53.78778093986921], [-2.478063784598442, 53.7878010855146], [-2.4780491198375776, 53.78786464378989], [-2.4779365290078457, 53.78788440996995], [-2.4779042581396817, 53.78786489433588], [-2.4779180700026124, 53.78779852442215], [-2.4779181004499033, 53.78779759763286], [-2.4779175463047642, 53.78779625073198], [-2.4779165710938145, 53.78779524885755], [-2.4778880002348433, 53.7877752870391], [-2.477888116213223, 53.78773823328027], [-2.4779741064076193, 53.78772697168], [-2.4779766974578337, 53.78772631510593], [-2.4779787043522368, 53.78772514314441], [-2.4780714043891923, 53.78764592921086], [-2.4781059623032435, 53.78764647895058], [-2.478115469416158, 53.787670049074684], [-2.478019571969437, 53.787740910604285]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_41c54dc19f2ed166631fa05c8333cd16.bindTooltip(\n",
" `&lt;div&gt;\n",
" foliage boundary\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_81e35802e047622020bff30ad36d8206 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_975ac2f0ecc1a542e3af3e5cea17a138 = $(`&lt;div id=&quot;html_975ac2f0ecc1a542e3af3e5cea17a138&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 39&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 184.0 sqm&lt;br&gt;Intersecting area: 184.2 sqm&lt;/div&gt;`)[0];\n",
" popup_81e35802e047622020bff30ad36d8206.setContent(html_975ac2f0ecc1a542e3af3e5cea17a138);\n",
" \n",
" \n",
"\n",
" geo_json_41c54dc19f2ed166631fa05c8333cd16.bindPopup(popup_81e35802e047622020bff30ad36d8206)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_41c54dc19f2ed166631fa05c8333cd16.addTo(feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3);\n",
" \n",
" \n",
" feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3.addTo(map_76253cc6ae48304226a3719f9ccd084b);\n",
" \n",
" \n",
" var feature_group_c094e6972de2ee37e3a5124bae5be648 = L.featureGroup(\n",
" {\n",
"}\n",
" );\n",
" \n",
" \n",
" function geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5 = L.geoJson(null, {\n",
" onEachFeature: geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5_onEachFeature,\n",
" \n",
" style: geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5_add (data) {\n",
" geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5\n",
" .addData(data);\n",
" }\n",
" geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4770329032142673, 53.78761936030601], [-2.47703030520076, 53.78761886911289], [-2.476992050078875, 53.78761593244187], [-2.476988357922469, 53.787611876087574], [-2.476925673387816, 53.787588700870316], [-2.4769061490034994, 53.78746062140601], [-2.476905213647929, 53.78745590639301], [-2.4769038597956836, 53.78745122809918], [-2.4769022892715653, 53.78744711781743], [-2.476965429007931, 53.787452889461356], [-2.476997614633247, 53.787480875139366], [-2.4769983095401717, 53.78751107676414], [-2.4769987052203963, 53.78751223914296], [-2.4769993843538214, 53.78751310019609], [-2.477000353719247, 53.78751385672812], [-2.4770015704527735, 53.78751447655584], [-2.4770033539327003, 53.78751501593274], [-2.4770049137027894, 53.78751523532315], [-2.477117476576256, 53.787523806798305], [-2.4771496100286567, 53.787533813817824], [-2.4771652850586205, 53.78756541187051], [-2.4771663150209813, 53.787566693060036], [-2.47716796744844, 53.78756772011091], [-2.477169337547696, 53.7875682116939], [-2.4771708497854803, 53.78756852295416], [-2.477239445321908, 53.78757795155047], [-2.477226007742634, 53.78761735390225], [-2.4771460713220743, 53.78766356971912], [-2.4770547856168053, 53.787663354275175], [-2.4770366737482017, 53.78762219271845], [-2.4770359421233294, 53.78762111975956], [-2.4770347735262095, 53.78762019414713], [-2.4770329032142673, 53.78761936030601]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3b4c1060334f5cb8fab17bc2c9ffcd1e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_ecd90ee2d4ea7f746e93a9b19611615a = $(`&lt;div id=&quot;html_ecd90ee2d4ea7f746e93a9b19611615a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 1&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 278.0 sqm&lt;br&gt;Intersecting area: 272.3 sqm&lt;/div&gt;`)[0];\n",
" popup_3b4c1060334f5cb8fab17bc2c9ffcd1e.setContent(html_ecd90ee2d4ea7f746e93a9b19611615a);\n",
" \n",
" \n",
"\n",
" geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5.bindPopup(popup_3b4c1060334f5cb8fab17bc2c9ffcd1e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_367f89d562eb3ea15dc3df0bd0b0d9c5.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3_onEachFeature,\n",
" \n",
" style: geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3_add (data) {\n",
" geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3\n",
" .addData(data);\n",
" }\n",
" geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.476918400098169, 53.78636990324833], [-2.4769006662559594, 53.78635076002888], [-2.4769004454079506, 53.78630387465627], [-2.4769500388842847, 53.78629279905021], [-2.476983017183962, 53.786293882993704], [-2.4769997677996156, 53.7863264241358], [-2.477000783652001, 53.786327668533424], [-2.4770023917285897, 53.78632867149246], [-2.477044552479869, 53.786347933191585], [-2.477012518434407, 53.78638712372794], [-2.476918400098169, 53.78636990324833]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0c883b9097983759437737ab7e15de66 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_63118fed644b7e9396ee512b2c5859cd = $(`&lt;div id=&quot;html_63118fed644b7e9396ee512b2c5859cd&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 2&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 67.0 sqm&lt;br&gt;Intersecting area: 66.5 sqm&lt;/div&gt;`)[0];\n",
" popup_0c883b9097983759437737ab7e15de66.setContent(html_63118fed644b7e9396ee512b2c5859cd);\n",
" \n",
" \n",
"\n",
" geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3.bindPopup(popup_0c883b9097983759437737ab7e15de66)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0aab829f6aeeeefcc6fdbd33adf3c7f3.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_112b8f67013b290c4829471d0510c922_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_112b8f67013b290c4829471d0510c922_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_112b8f67013b290c4829471d0510c922 = L.geoJson(null, {\n",
" onEachFeature: geo_json_112b8f67013b290c4829471d0510c922_onEachFeature,\n",
" \n",
" style: geo_json_112b8f67013b290c4829471d0510c922_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_112b8f67013b290c4829471d0510c922_add (data) {\n",
" geo_json_112b8f67013b290c4829471d0510c922\n",
" .addData(data);\n",
" }\n",
" geo_json_112b8f67013b290c4829471d0510c922_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4771586608608818, 53.786365505413784], [-2.477173731431272, 53.78632972953202], [-2.477201338577458, 53.7863276242615], [-2.4772380528618263, 53.78631888009074], [-2.4772566716314413, 53.78632839262078], [-2.4772584305922223, 53.78637489526693], [-2.477178542128444, 53.78639544640268], [-2.4771586608608818, 53.786365505413784]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_112b8f67013b290c4829471d0510c922.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_61c6c188d94244ef39a7fe0561842ac8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_22287724e56e41dc2f6e92095747c6a3 = $(`&lt;div id=&quot;html_22287724e56e41dc2f6e92095747c6a3&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 3&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 40.0 sqm&lt;br&gt;Intersecting area: 40.4 sqm&lt;/div&gt;`)[0];\n",
" popup_61c6c188d94244ef39a7fe0561842ac8.setContent(html_22287724e56e41dc2f6e92095747c6a3);\n",
" \n",
" \n",
"\n",
" geo_json_112b8f67013b290c4829471d0510c922.bindPopup(popup_61c6c188d94244ef39a7fe0561842ac8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_112b8f67013b290c4829471d0510c922.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_304dd590e62cc5be44289cfe47cde433_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_304dd590e62cc5be44289cfe47cde433_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_304dd590e62cc5be44289cfe47cde433 = L.geoJson(null, {\n",
" onEachFeature: geo_json_304dd590e62cc5be44289cfe47cde433_onEachFeature,\n",
" \n",
" style: geo_json_304dd590e62cc5be44289cfe47cde433_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_304dd590e62cc5be44289cfe47cde433_add (data) {\n",
" geo_json_304dd590e62cc5be44289cfe47cde433\n",
" .addData(data);\n",
" }\n",
" geo_json_304dd590e62cc5be44289cfe47cde433_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4769344303251053, 53.78652153554847], [-2.476934591827693, 53.786492297628286], [-2.476984586451076, 53.786500367686074], [-2.476979906833106, 53.78652267581877], [-2.4769344303251053, 53.78652153554847]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_304dd590e62cc5be44289cfe47cde433.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4fbd56a0afeb69a10dd28b33bb7a0920 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_dffd522c7350f64da10ad69c30d46d8d = $(`&lt;div id=&quot;html_dffd522c7350f64da10ad69c30d46d8d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 4&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 9.0 sqm&lt;br&gt;Intersecting area: 9.1 sqm&lt;/div&gt;`)[0];\n",
" popup_4fbd56a0afeb69a10dd28b33bb7a0920.setContent(html_dffd522c7350f64da10ad69c30d46d8d);\n",
" \n",
" \n",
"\n",
" geo_json_304dd590e62cc5be44289cfe47cde433.bindPopup(popup_4fbd56a0afeb69a10dd28b33bb7a0920)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_304dd590e62cc5be44289cfe47cde433.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_f08c72dfa6d6e71079a6c24cda163f19_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f08c72dfa6d6e71079a6c24cda163f19_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f08c72dfa6d6e71079a6c24cda163f19 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f08c72dfa6d6e71079a6c24cda163f19_onEachFeature,\n",
" \n",
" style: geo_json_f08c72dfa6d6e71079a6c24cda163f19_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f08c72dfa6d6e71079a6c24cda163f19_add (data) {\n",
" geo_json_f08c72dfa6d6e71079a6c24cda163f19\n",
" .addData(data);\n",
" }\n",
" geo_json_f08c72dfa6d6e71079a6c24cda163f19_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4768446962334085, 53.78670923266348], [-2.4768612947366537, 53.786680203477324], [-2.4769271558122483, 53.78667938505347], [-2.476929079237798, 53.78667915179697], [-2.476931157260085, 53.78667849818681], [-2.47693279879505, 53.78667749937023], [-2.4769337160058513, 53.78667647108218], [-2.476934192667094, 53.7866748729014], [-2.476934002461283, 53.786661588399525], [-2.4769336719624957, 53.78666068551738], [-2.476933038573503, 53.786659841360866], [-2.4769321269825895, 53.78665909178994], [-2.4769309755078392, 53.78665846900171], [-2.4769292737624697, 53.78665790683208], [-2.476927386946097, 53.78665762043007], [-2.476889577460009, 53.78665601910668], [-2.4768883513374327, 53.78663798224146], [-2.4769387627657187, 53.78662538889381], [-2.476985343685988, 53.78662566910285], [-2.4770031996498707, 53.78664486036031], [-2.476989808114787, 53.78667494009109], [-2.476989557277969, 53.786676108638964], [-2.476989733348055, 53.786677045393716], [-2.4769908114706625, 53.78667856008744], [-2.4769927373076834, 53.78667974333882], [-2.4770183793919713, 53.78668942659356], [-2.477019445867894, 53.78670863703401], [-2.4769859044636515, 53.78672911232115], [-2.4768446962334085, 53.78670923266348]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f08c72dfa6d6e71079a6c24cda163f19.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_74ec29e6cbb74b8ba604cbd2131cdbcb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_194831ea6a3464ddd68463849416fa27 = $(`&lt;div id=&quot;html_194831ea6a3464ddd68463849416fa27&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 5&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 80.0 sqm&lt;br&gt;Intersecting area: 80.1 sqm&lt;/div&gt;`)[0];\n",
" popup_74ec29e6cbb74b8ba604cbd2131cdbcb.setContent(html_194831ea6a3464ddd68463849416fa27);\n",
" \n",
" \n",
"\n",
" geo_json_f08c72dfa6d6e71079a6c24cda163f19.bindPopup(popup_74ec29e6cbb74b8ba604cbd2131cdbcb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f08c72dfa6d6e71079a6c24cda163f19.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_e674ccd7c051b1244bdf827f99c10378_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e674ccd7c051b1244bdf827f99c10378_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e674ccd7c051b1244bdf827f99c10378 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e674ccd7c051b1244bdf827f99c10378_onEachFeature,\n",
" \n",
" style: geo_json_e674ccd7c051b1244bdf827f99c10378_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e674ccd7c051b1244bdf827f99c10378_add (data) {\n",
" geo_json_e674ccd7c051b1244bdf827f99c10378\n",
" .addData(data);\n",
" }\n",
" geo_json_e674ccd7c051b1244bdf827f99c10378_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477678182582402, 53.78676319006568], [-2.4776657784428298, 53.78674963336713], [-2.477700624746898, 53.786740368000416], [-2.4777167116182324, 53.78676158582568], [-2.4776992131099242, 53.78677107326838], [-2.477678182582402, 53.78676319006568]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e674ccd7c051b1244bdf827f99c10378.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_255aa40e25d80dfa1c00eec5ce9abf48 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8526c6f5968e026f8f862e660b64ff5d = $(`&lt;div id=&quot;html_8526c6f5968e026f8f862e660b64ff5d&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 6&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 6.5 sqm&lt;/div&gt;`)[0];\n",
" popup_255aa40e25d80dfa1c00eec5ce9abf48.setContent(html_8526c6f5968e026f8f862e660b64ff5d);\n",
" \n",
" \n",
"\n",
" geo_json_e674ccd7c051b1244bdf827f99c10378.bindPopup(popup_255aa40e25d80dfa1c00eec5ce9abf48)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e674ccd7c051b1244bdf827f99c10378.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_883e1648a7dcc762b5ba281144a7e201_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_883e1648a7dcc762b5ba281144a7e201_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_883e1648a7dcc762b5ba281144a7e201 = L.geoJson(null, {\n",
" onEachFeature: geo_json_883e1648a7dcc762b5ba281144a7e201_onEachFeature,\n",
" \n",
" style: geo_json_883e1648a7dcc762b5ba281144a7e201_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_883e1648a7dcc762b5ba281144a7e201_add (data) {\n",
" geo_json_883e1648a7dcc762b5ba281144a7e201\n",
" .addData(data);\n",
" }\n",
" geo_json_883e1648a7dcc762b5ba281144a7e201_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4768143422939217, 53.78676330608894], [-2.4768395740287725, 53.78676076634358], [-2.4768410874536633, 53.786760515849174], [-2.476842803765534, 53.78675995355811], [-2.4768446799959136, 53.78675877135205], [-2.4768617878131964, 53.786743058656434], [-2.476896729515702, 53.786743656649215], [-2.47691165813063, 53.786800340703266], [-2.476816345243437, 53.786800719935044], [-2.4768143422939217, 53.78676330608894]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_883e1648a7dcc762b5ba281144a7e201.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_b9bc9ea3f8c2ae80a4dad1d7166ac739 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_110a16884caf9403b8792d862fb47673 = $(`&lt;div id=&quot;html_110a16884caf9403b8792d862fb47673&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 7&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 32.0 sqm&lt;br&gt;Intersecting area: 32.4 sqm&lt;/div&gt;`)[0];\n",
" popup_b9bc9ea3f8c2ae80a4dad1d7166ac739.setContent(html_110a16884caf9403b8792d862fb47673);\n",
" \n",
" \n",
"\n",
" geo_json_883e1648a7dcc762b5ba281144a7e201.bindPopup(popup_b9bc9ea3f8c2ae80a4dad1d7166ac739)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_883e1648a7dcc762b5ba281144a7e201.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_d687f849ea2cce3cd33baaf160070af0_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d687f849ea2cce3cd33baaf160070af0_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d687f849ea2cce3cd33baaf160070af0 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d687f849ea2cce3cd33baaf160070af0_onEachFeature,\n",
" \n",
" style: geo_json_d687f849ea2cce3cd33baaf160070af0_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d687f849ea2cce3cd33baaf160070af0_add (data) {\n",
" geo_json_d687f849ea2cce3cd33baaf160070af0\n",
" .addData(data);\n",
" }\n",
" geo_json_d687f849ea2cce3cd33baaf160070af0_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4771481736890086, 53.7867976601346], [-2.477147826648197, 53.78675332069048], [-2.47716636928926, 53.786750498317254], [-2.477201901943294, 53.78677065908835], [-2.477182499050015, 53.786808670473995], [-2.4771481736890086, 53.7867976601346]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d687f849ea2cce3cd33baaf160070af0.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_97c565c321bacc776eca07c8385e47ac = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e7ae0549289d66e103152f421458ead6 = $(`&lt;div id=&quot;html_e7ae0549289d66e103152f421458ead6&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 8&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 16.0 sqm&lt;br&gt;Intersecting area: 16.1 sqm&lt;/div&gt;`)[0];\n",
" popup_97c565c321bacc776eca07c8385e47ac.setContent(html_e7ae0549289d66e103152f421458ead6);\n",
" \n",
" \n",
"\n",
" geo_json_d687f849ea2cce3cd33baaf160070af0.bindPopup(popup_97c565c321bacc776eca07c8385e47ac)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d687f849ea2cce3cd33baaf160070af0.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_48f692f1aec6aabdef84de94c67ae041_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_48f692f1aec6aabdef84de94c67ae041_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_48f692f1aec6aabdef84de94c67ae041 = L.geoJson(null, {\n",
" onEachFeature: geo_json_48f692f1aec6aabdef84de94c67ae041_onEachFeature,\n",
" \n",
" style: geo_json_48f692f1aec6aabdef84de94c67ae041_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_48f692f1aec6aabdef84de94c67ae041_add (data) {\n",
" geo_json_48f692f1aec6aabdef84de94c67ae041\n",
" .addData(data);\n",
" }\n",
" geo_json_48f692f1aec6aabdef84de94c67ae041_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4785293048362007, 53.78675756307399], [-2.478528399000679, 53.78672106165789], [-2.478542027977265, 53.78670597123609], [-2.478547475386496, 53.7867555087198], [-2.478561596390939, 53.78678259232601], [-2.4785293048362007, 53.78675756307399]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_48f692f1aec6aabdef84de94c67ae041.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_66fd518d1b6141a92686d3650f10b749 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3a2975dfabe463b76d62ceb5d5402b94 = $(`&lt;div id=&quot;html_3a2975dfabe463b76d62ceb5d5402b94&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 9&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 81.0 sqm&lt;br&gt;Intersecting area: 7.1 sqm&lt;/div&gt;`)[0];\n",
" popup_66fd518d1b6141a92686d3650f10b749.setContent(html_3a2975dfabe463b76d62ceb5d5402b94);\n",
" \n",
" \n",
"\n",
" geo_json_48f692f1aec6aabdef84de94c67ae041.bindPopup(popup_66fd518d1b6141a92686d3650f10b749)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_48f692f1aec6aabdef84de94c67ae041.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_f6ff1eacc2e67f120485ab1ad87333d3_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_f6ff1eacc2e67f120485ab1ad87333d3_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_f6ff1eacc2e67f120485ab1ad87333d3 = L.geoJson(null, {\n",
" onEachFeature: geo_json_f6ff1eacc2e67f120485ab1ad87333d3_onEachFeature,\n",
" \n",
" style: geo_json_f6ff1eacc2e67f120485ab1ad87333d3_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_f6ff1eacc2e67f120485ab1ad87333d3_add (data) {\n",
" geo_json_f6ff1eacc2e67f120485ab1ad87333d3\n",
" .addData(data);\n",
" }\n",
" geo_json_f6ff1eacc2e67f120485ab1ad87333d3_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4783955900788968, 53.78684857974555], [-2.4783930602420754, 53.78682540602475], [-2.4783925521566075, 53.786824238707425], [-2.4783912798778647, 53.78682300612831], [-2.478390090003569, 53.78682234576189], [-2.4782867122751124, 53.78677624151236], [-2.478287490158489, 53.78674683395217], [-2.478350772348015, 53.786727857456476], [-2.4784297278270504, 53.78675480849964], [-2.478461521780803, 53.78678248166708], [-2.478428645410185, 53.78684918931331], [-2.4783955900788968, 53.78684857974555]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_f6ff1eacc2e67f120485ab1ad87333d3.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ace393dc352e2a58b1edbb09c9f23765 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_3f1997ac4f1816ab1fed2b4127a45cc8 = $(`&lt;div id=&quot;html_3f1997ac4f1816ab1fed2b4127a45cc8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 10&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 87.0 sqm&lt;br&gt;Intersecting area: 86.9 sqm&lt;/div&gt;`)[0];\n",
" popup_ace393dc352e2a58b1edbb09c9f23765.setContent(html_3f1997ac4f1816ab1fed2b4127a45cc8);\n",
" \n",
" \n",
"\n",
" geo_json_f6ff1eacc2e67f120485ab1ad87333d3.bindPopup(popup_ace393dc352e2a58b1edbb09c9f23765)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_f6ff1eacc2e67f120485ab1ad87333d3.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_b3c91c9134d206d88eae95629756910c_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b3c91c9134d206d88eae95629756910c_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b3c91c9134d206d88eae95629756910c = L.geoJson(null, {\n",
" onEachFeature: geo_json_b3c91c9134d206d88eae95629756910c_onEachFeature,\n",
" \n",
" style: geo_json_b3c91c9134d206d88eae95629756910c_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b3c91c9134d206d88eae95629756910c_add (data) {\n",
" geo_json_b3c91c9134d206d88eae95629756910c\n",
" .addData(data);\n",
" }\n",
" geo_json_b3c91c9134d206d88eae95629756910c_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477865746584759, 53.786922871255456], [-2.4778626576465768, 53.78690309454469], [-2.4778678350037477, 53.78688295141911], [-2.477931211553111, 53.78689399491185], [-2.477912468478207, 53.78692337344531], [-2.477865746584759, 53.786922871255456]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b3c91c9134d206d88eae95629756910c.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_fea6955b5e25a6552590fde8eae3ee26 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4f07d38bf15c2afb61108661036b7995 = $(`&lt;div id=&quot;html_4f07d38bf15c2afb61108661036b7995&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 11&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 15.0 sqm&lt;br&gt;Intersecting area: 15.0 sqm&lt;/div&gt;`)[0];\n",
" popup_fea6955b5e25a6552590fde8eae3ee26.setContent(html_4f07d38bf15c2afb61108661036b7995);\n",
" \n",
" \n",
"\n",
" geo_json_b3c91c9134d206d88eae95629756910c.bindPopup(popup_fea6955b5e25a6552590fde8eae3ee26)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b3c91c9134d206d88eae95629756910c.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9 = L.geoJson(null, {\n",
" onEachFeature: geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9_onEachFeature,\n",
" \n",
" style: geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9_add (data) {\n",
" geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9\n",
" .addData(data);\n",
" }\n",
" geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4784916564582136, 53.786965836555815], [-2.4783991552320304, 53.78696644310552], [-2.478379787645423, 53.78695573023821], [-2.4783786175118627, 53.786873994740176], [-2.478421738655498, 53.78686205274234], [-2.4784759057756016, 53.786853534230374], [-2.478538924661504, 53.78689047524528], [-2.4785394560545897, 53.78693714635444], [-2.4784916564582136, 53.786965836555815]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_fb8b5f143da04d371d11d21341bd84c8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_76c37410615547d205c463ad76fd85d8 = $(`&lt;div id=&quot;html_76c37410615547d205c463ad76fd85d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 12&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 111.0 sqm&lt;br&gt;Intersecting area: 111.4 sqm&lt;/div&gt;`)[0];\n",
" popup_fb8b5f143da04d371d11d21341bd84c8.setContent(html_76c37410615547d205c463ad76fd85d8);\n",
" \n",
" \n",
"\n",
" geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9.bindPopup(popup_fb8b5f143da04d371d11d21341bd84c8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_c831e8e0dae46c6ea4c8bfe51c218ba9.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_9968c7e35c5854ca82acf93891d91f21_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_9968c7e35c5854ca82acf93891d91f21_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_9968c7e35c5854ca82acf93891d91f21 = L.geoJson(null, {\n",
" onEachFeature: geo_json_9968c7e35c5854ca82acf93891d91f21_onEachFeature,\n",
" \n",
" style: geo_json_9968c7e35c5854ca82acf93891d91f21_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_9968c7e35c5854ca82acf93891d91f21_add (data) {\n",
" geo_json_9968c7e35c5854ca82acf93891d91f21\n",
" .addData(data);\n",
" }\n",
" geo_json_9968c7e35c5854ca82acf93891d91f21_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4784415377273015, 53.78706320392348], [-2.4784258241969033, 53.78703549172902], [-2.4784403081025976, 53.78699105353893], [-2.4784466401454286, 53.78697890246058], [-2.478535883046198, 53.7869785938069], [-2.478554718576249, 53.78698869668642], [-2.4785562856416004, 53.78705327507533], [-2.4785245464163608, 53.78707309106402], [-2.4784415377273015, 53.78706320392348]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_9968c7e35c5854ca82acf93891d91f21.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4239947d3a941c19f8f481c5403b25cb = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8245b6c5e72af875adee2584455772de = $(`&lt;div id=&quot;html_8245b6c5e72af875adee2584455772de&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 13&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 77.0 sqm&lt;br&gt;Intersecting area: 77.1 sqm&lt;/div&gt;`)[0];\n",
" popup_4239947d3a941c19f8f481c5403b25cb.setContent(html_8245b6c5e72af875adee2584455772de);\n",
" \n",
" \n",
"\n",
" geo_json_9968c7e35c5854ca82acf93891d91f21.bindPopup(popup_4239947d3a941c19f8f481c5403b25cb)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_9968c7e35c5854ca82acf93891d91f21.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_00ac751d3011f85bbe525af53f9594a8_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_00ac751d3011f85bbe525af53f9594a8_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_00ac751d3011f85bbe525af53f9594a8 = L.geoJson(null, {\n",
" onEachFeature: geo_json_00ac751d3011f85bbe525af53f9594a8_onEachFeature,\n",
" \n",
" style: geo_json_00ac751d3011f85bbe525af53f9594a8_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_00ac751d3011f85bbe525af53f9594a8_add (data) {\n",
" geo_json_00ac751d3011f85bbe525af53f9594a8\n",
" .addData(data);\n",
" }\n",
" geo_json_00ac751d3011f85bbe525af53f9594a8_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4780643115278322, 53.78721759170382], [-2.4780674148472444, 53.787188183859215], [-2.4781163362803436, 53.787197887264654], [-2.478096967469352, 53.787227631439784], [-2.4780643115278322, 53.78721759170382]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_00ac751d3011f85bbe525af53f9594a8.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9ce353c21c18c11aef29dcb7022b3165 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8b22b71740c73fd566ca51508716cbef = $(`&lt;div id=&quot;html_8b22b71740c73fd566ca51508716cbef&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 14&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 10.0 sqm&lt;br&gt;Intersecting area: 9.7 sqm&lt;/div&gt;`)[0];\n",
" popup_9ce353c21c18c11aef29dcb7022b3165.setContent(html_8b22b71740c73fd566ca51508716cbef);\n",
" \n",
" \n",
"\n",
" geo_json_00ac751d3011f85bbe525af53f9594a8.bindPopup(popup_9ce353c21c18c11aef29dcb7022b3165)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_00ac751d3011f85bbe525af53f9594a8.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_35e71bb1cd195c81412371c3c1799780_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_35e71bb1cd195c81412371c3c1799780_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_35e71bb1cd195c81412371c3c1799780 = L.geoJson(null, {\n",
" onEachFeature: geo_json_35e71bb1cd195c81412371c3c1799780_onEachFeature,\n",
" \n",
" style: geo_json_35e71bb1cd195c81412371c3c1799780_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_35e71bb1cd195c81412371c3c1799780_add (data) {\n",
" geo_json_35e71bb1cd195c81412371c3c1799780\n",
" .addData(data);\n",
" }\n",
" geo_json_35e71bb1cd195c81412371c3c1799780_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4781168947112704, 53.78733556781968], [-2.4780656388976814, 53.787325078281796], [-2.4780790088052633, 53.78727660174991], [-2.4781300680675376, 53.787268084105335], [-2.47816397459345, 53.787287449342806], [-2.4781637292675445, 53.78730777683071], [-2.4781168947112704, 53.78733556781968]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_35e71bb1cd195c81412371c3c1799780.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_64f795e7fc4b39e7262b1647bde6d18a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8c080a27d28a5ecd8edf21110153639e = $(`&lt;div id=&quot;html_8c080a27d28a5ecd8edf21110153639e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 15&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 35.0 sqm&lt;br&gt;Intersecting area: 34.6 sqm&lt;/div&gt;`)[0];\n",
" popup_64f795e7fc4b39e7262b1647bde6d18a.setContent(html_8c080a27d28a5ecd8edf21110153639e);\n",
" \n",
" \n",
"\n",
" geo_json_35e71bb1cd195c81412371c3c1799780.bindPopup(popup_64f795e7fc4b39e7262b1647bde6d18a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_35e71bb1cd195c81412371c3c1799780.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_1bef597b89f621c8aabb34d554f680a6_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_1bef597b89f621c8aabb34d554f680a6_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_1bef597b89f621c8aabb34d554f680a6 = L.geoJson(null, {\n",
" onEachFeature: geo_json_1bef597b89f621c8aabb34d554f680a6_onEachFeature,\n",
" \n",
" style: geo_json_1bef597b89f621c8aabb34d554f680a6_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_1bef597b89f621c8aabb34d554f680a6_add (data) {\n",
" geo_json_1bef597b89f621c8aabb34d554f680a6\n",
" .addData(data);\n",
" }\n",
" geo_json_1bef597b89f621c8aabb34d554f680a6_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4782203306042234, 53.78733505537922], [-2.4782016658949075, 53.78730662330437], [-2.4782535521515583, 53.78727727786048], [-2.478285514139445, 53.787295951549126], [-2.4782858336007174, 53.78732402360016], [-2.4782203306042234, 53.78733505537922]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_1bef597b89f621c8aabb34d554f680a6.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_669e5f5e7d267cf68f0d2e139a951da8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d5a4f1746404350bf508787abd737209 = $(`&lt;div id=&quot;html_d5a4f1746404350bf508787abd737209&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 16&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 23.0 sqm&lt;br&gt;Intersecting area: 23.2 sqm&lt;/div&gt;`)[0];\n",
" popup_669e5f5e7d267cf68f0d2e139a951da8.setContent(html_d5a4f1746404350bf508787abd737209);\n",
" \n",
" \n",
"\n",
" geo_json_1bef597b89f621c8aabb34d554f680a6.bindPopup(popup_669e5f5e7d267cf68f0d2e139a951da8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_1bef597b89f621c8aabb34d554f680a6.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_5dbe27c597d95f583f13328d77d6976a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5dbe27c597d95f583f13328d77d6976a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5dbe27c597d95f583f13328d77d6976a = L.geoJson(null, {\n",
" onEachFeature: geo_json_5dbe27c597d95f583f13328d77d6976a_onEachFeature,\n",
" \n",
" style: geo_json_5dbe27c597d95f583f13328d77d6976a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5dbe27c597d95f583f13328d77d6976a_add (data) {\n",
" geo_json_5dbe27c597d95f583f13328d77d6976a\n",
" .addData(data);\n",
" }\n",
" geo_json_5dbe27c597d95f583f13328d77d6976a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4778851500854224, 53.78749753214697], [-2.477870046952969, 53.78748731001964], [-2.477883216199522, 53.78747522338968], [-2.477921481768445, 53.787468278526234], [-2.477921812762498, 53.787497385956485], [-2.4778851500854224, 53.78749753214697]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5dbe27c597d95f583f13328d77d6976a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_01f991f436bb9ae086f6b16e99de8192 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_096b9146ba7fb3962d7d0802587b9354 = $(`&lt;div id=&quot;html_096b9146ba7fb3962d7d0802587b9354&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 17&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.3 sqm&lt;/div&gt;`)[0];\n",
" popup_01f991f436bb9ae086f6b16e99de8192.setContent(html_096b9146ba7fb3962d7d0802587b9354);\n",
" \n",
" \n",
"\n",
" geo_json_5dbe27c597d95f583f13328d77d6976a.bindPopup(popup_01f991f436bb9ae086f6b16e99de8192)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5dbe27c597d95f583f13328d77d6976a.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_15e73762bcb05103bfb1cfccb95598a7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_15e73762bcb05103bfb1cfccb95598a7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_15e73762bcb05103bfb1cfccb95598a7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_15e73762bcb05103bfb1cfccb95598a7_onEachFeature,\n",
" \n",
" style: geo_json_15e73762bcb05103bfb1cfccb95598a7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_15e73762bcb05103bfb1cfccb95598a7_add (data) {\n",
" geo_json_15e73762bcb05103bfb1cfccb95598a7\n",
" .addData(data);\n",
" }\n",
" geo_json_15e73762bcb05103bfb1cfccb95598a7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4779772806309013, 53.787485715759225], [-2.4780128014738594, 53.78748499886155], [-2.4780219682540796, 53.787507212252834], [-2.4779784780067837, 53.78750652015544], [-2.4779772806309013, 53.787485715759225]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_15e73762bcb05103bfb1cfccb95598a7.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_57b036fc0fa63017586c612241b10a37 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c61d6429aa687663f8458ca5b5f5da11 = $(`&lt;div id=&quot;html_c61d6429aa687663f8458ca5b5f5da11&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 18&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 6.0 sqm&lt;br&gt;Intersecting area: 6.2 sqm&lt;/div&gt;`)[0];\n",
" popup_57b036fc0fa63017586c612241b10a37.setContent(html_c61d6429aa687663f8458ca5b5f5da11);\n",
" \n",
" \n",
"\n",
" geo_json_15e73762bcb05103bfb1cfccb95598a7.bindPopup(popup_57b036fc0fa63017586c612241b10a37)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_15e73762bcb05103bfb1cfccb95598a7.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_29808b4fc3f7d6437bc1e9db594dea74_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_29808b4fc3f7d6437bc1e9db594dea74_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_29808b4fc3f7d6437bc1e9db594dea74 = L.geoJson(null, {\n",
" onEachFeature: geo_json_29808b4fc3f7d6437bc1e9db594dea74_onEachFeature,\n",
" \n",
" style: geo_json_29808b4fc3f7d6437bc1e9db594dea74_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_29808b4fc3f7d6437bc1e9db594dea74_add (data) {\n",
" geo_json_29808b4fc3f7d6437bc1e9db594dea74\n",
" .addData(data);\n",
" }\n",
" geo_json_29808b4fc3f7d6437bc1e9db594dea74_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4785254264780514, 53.787780930961205], [-2.478528783908194, 53.787769999751696], [-2.478562398115762, 53.787769773863054], [-2.478593889290442, 53.78777957992455], [-2.478594609048344, 53.7877990667731], [-2.4785439214425575, 53.78780134900632], [-2.4785254264780514, 53.787780930961205]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_29808b4fc3f7d6437bc1e9db594dea74.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5836c3d719c830beed5f579cf7a87994 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d588bac4b18d2c228a5f51706089d66f = $(`&lt;div id=&quot;html_d588bac4b18d2c228a5f51706089d66f&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 19&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 13.0 sqm&lt;br&gt;Intersecting area: 12.8 sqm&lt;/div&gt;`)[0];\n",
" popup_5836c3d719c830beed5f579cf7a87994.setContent(html_d588bac4b18d2c228a5f51706089d66f);\n",
" \n",
" \n",
"\n",
" geo_json_29808b4fc3f7d6437bc1e9db594dea74.bindPopup(popup_5836c3d719c830beed5f579cf7a87994)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_29808b4fc3f7d6437bc1e9db594dea74.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_27fd151326cea54e91d634942ac8c754_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_27fd151326cea54e91d634942ac8c754_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_27fd151326cea54e91d634942ac8c754 = L.geoJson(null, {\n",
" onEachFeature: geo_json_27fd151326cea54e91d634942ac8c754_onEachFeature,\n",
" \n",
" style: geo_json_27fd151326cea54e91d634942ac8c754_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_27fd151326cea54e91d634942ac8c754_add (data) {\n",
" geo_json_27fd151326cea54e91d634942ac8c754\n",
" .addData(data);\n",
" }\n",
" geo_json_27fd151326cea54e91d634942ac8c754_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4781019659697963, 53.78789986034798], [-2.4781181188794017, 53.78784450582981], [-2.4781887559747493, 53.78785174883126], [-2.4782154326131267, 53.787852754218456], [-2.4782775468978975, 53.7878989216266], [-2.478276395231693, 53.78791230776428], [-2.478263808263452, 53.78791413186863], [-2.4781917334156036, 53.787920320994566], [-2.478138615878522, 53.78792183207622], [-2.4781019659697963, 53.78789986034798]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_27fd151326cea54e91d634942ac8c754.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_522a4b0611b9f4b614da64bd6e58a2d8 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_eafccdcca1ab60c94d2eff731fae9029 = $(`&lt;div id=&quot;html_eafccdcca1ab60c94d2eff731fae9029&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 20&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 86.0 sqm&lt;br&gt;Intersecting area: 72.0 sqm&lt;/div&gt;`)[0];\n",
" popup_522a4b0611b9f4b614da64bd6e58a2d8.setContent(html_eafccdcca1ab60c94d2eff731fae9029);\n",
" \n",
" \n",
"\n",
" geo_json_27fd151326cea54e91d634942ac8c754.bindPopup(popup_522a4b0611b9f4b614da64bd6e58a2d8)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_27fd151326cea54e91d634942ac8c754.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_03c02cf39634ba7aaff19e9cdec3f5de_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_03c02cf39634ba7aaff19e9cdec3f5de_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_03c02cf39634ba7aaff19e9cdec3f5de = L.geoJson(null, {\n",
" onEachFeature: geo_json_03c02cf39634ba7aaff19e9cdec3f5de_onEachFeature,\n",
" \n",
" style: geo_json_03c02cf39634ba7aaff19e9cdec3f5de_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_03c02cf39634ba7aaff19e9cdec3f5de_add (data) {\n",
" geo_json_03c02cf39634ba7aaff19e9cdec3f5de\n",
" .addData(data);\n",
" }\n",
" geo_json_03c02cf39634ba7aaff19e9cdec3f5de_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.476882953784321, 53.78687418851567], [-2.4768814466255025, 53.786873921277184], [-2.4768798778670384, 53.78687384392809], [-2.4768779340309672, 53.78687401794036], [-2.4768327367029794, 53.786881732465964], [-2.476816736645272, 53.78685194315911], [-2.4768657000786414, 53.786841597232964], [-2.476928478819449, 53.786860578294736], [-2.4769126444893295, 53.7868815142885], [-2.476882953784321, 53.78687418851567]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_03c02cf39634ba7aaff19e9cdec3f5de.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4eac80db437dfb13b948cd5ca9e1dbf0 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_98ad316bb556668ddbdf580e19dcfd0a = $(`&lt;div id=&quot;html_98ad316bb556668ddbdf580e19dcfd0a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 21&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 21.0 sqm&lt;br&gt;Intersecting area: 21.3 sqm&lt;/div&gt;`)[0];\n",
" popup_4eac80db437dfb13b948cd5ca9e1dbf0.setContent(html_98ad316bb556668ddbdf580e19dcfd0a);\n",
" \n",
" \n",
"\n",
" geo_json_03c02cf39634ba7aaff19e9cdec3f5de.bindPopup(popup_4eac80db437dfb13b948cd5ca9e1dbf0)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_03c02cf39634ba7aaff19e9cdec3f5de.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_aecc5cd839d09f705f1783af638188cd_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_aecc5cd839d09f705f1783af638188cd_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_aecc5cd839d09f705f1783af638188cd = L.geoJson(null, {\n",
" onEachFeature: geo_json_aecc5cd839d09f705f1783af638188cd_onEachFeature,\n",
" \n",
" style: geo_json_aecc5cd839d09f705f1783af638188cd_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_aecc5cd839d09f705f1783af638188cd_add (data) {\n",
" geo_json_aecc5cd839d09f705f1783af638188cd\n",
" .addData(data);\n",
" }\n",
" geo_json_aecc5cd839d09f705f1783af638188cd_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4776750165583423, 53.78691664155607], [-2.477674505374147, 53.786918004383125], [-2.477671084201299, 53.78695045055844], [-2.477606514775091, 53.78694075360103], [-2.477619068818077, 53.78691060074007], [-2.4776192717028778, 53.78690922116276], [-2.477618890004718, 53.786908088392444], [-2.4776178105493614, 53.78690685952833], [-2.4776164608554914, 53.786906025421615], [-2.4775745276454706, 53.78688602330194], [-2.477588633020279, 53.78685548227358], [-2.477608959118698, 53.78683863853011], [-2.4777033656104583, 53.78684917829123], [-2.4777045189229447, 53.78689496339285], [-2.477676207996218, 53.78691543689982], [-2.4776750165583423, 53.78691664155607]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_aecc5cd839d09f705f1783af638188cd.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_692191ec79a224eb9e2c0b8793c07255 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2c2bdc067c45b16e33f4cdc10530f46a = $(`&lt;div id=&quot;html_2c2bdc067c45b16e33f4cdc10530f46a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 22&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 70.0 sqm&lt;br&gt;Intersecting area: 70.2 sqm&lt;/div&gt;`)[0];\n",
" popup_692191ec79a224eb9e2c0b8793c07255.setContent(html_2c2bdc067c45b16e33f4cdc10530f46a);\n",
" \n",
" \n",
"\n",
" geo_json_aecc5cd839d09f705f1783af638188cd.bindPopup(popup_692191ec79a224eb9e2c0b8793c07255)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_aecc5cd839d09f705f1783af638188cd.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_71864a4c90a49ee15eb800279422e32f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_71864a4c90a49ee15eb800279422e32f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_71864a4c90a49ee15eb800279422e32f = L.geoJson(null, {\n",
" onEachFeature: geo_json_71864a4c90a49ee15eb800279422e32f_onEachFeature,\n",
" \n",
" style: geo_json_71864a4c90a49ee15eb800279422e32f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_71864a4c90a49ee15eb800279422e32f_add (data) {\n",
" geo_json_71864a4c90a49ee15eb800279422e32f\n",
" .addData(data);\n",
" }\n",
" geo_json_71864a4c90a49ee15eb800279422e32f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477150391013882, 53.786969440207116], [-2.477149621223801, 53.78693331933542], [-2.477170011961998, 53.78691252515603], [-2.477246968802537, 53.786930182286994], [-2.477248584616004, 53.786978779720464], [-2.4771813646097653, 53.78698815048276], [-2.477150391013882, 53.786969440207116]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_71864a4c90a49ee15eb800279422e32f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_f2dcd0f2411ea3958a0d8b6b4d48567e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_af6df2a21afbb5a3091397e8d5b408a9 = $(`&lt;div id=&quot;html_af6df2a21afbb5a3091397e8d5b408a9&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 23&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 43.0 sqm&lt;br&gt;Intersecting area: 43.2 sqm&lt;/div&gt;`)[0];\n",
" popup_f2dcd0f2411ea3958a0d8b6b4d48567e.setContent(html_af6df2a21afbb5a3091397e8d5b408a9);\n",
" \n",
" \n",
"\n",
" geo_json_71864a4c90a49ee15eb800279422e32f.bindPopup(popup_f2dcd0f2411ea3958a0d8b6b4d48567e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_71864a4c90a49ee15eb800279422e32f.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_447b754dd32fd431cf856198ffa4fd4e_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_447b754dd32fd431cf856198ffa4fd4e_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_447b754dd32fd431cf856198ffa4fd4e = L.geoJson(null, {\n",
" onEachFeature: geo_json_447b754dd32fd431cf856198ffa4fd4e_onEachFeature,\n",
" \n",
" style: geo_json_447b754dd32fd431cf856198ffa4fd4e_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_447b754dd32fd431cf856198ffa4fd4e_add (data) {\n",
" geo_json_447b754dd32fd431cf856198ffa4fd4e\n",
" .addData(data);\n",
" }\n",
" geo_json_447b754dd32fd431cf856198ffa4fd4e_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.476330778520693, 53.7867747356008], [-2.476363869257377, 53.78675370323492], [-2.4763821428427177, 53.78675633061555], [-2.4763777407647445, 53.78678494364321], [-2.476330778520693, 53.7867747356008]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_447b754dd32fd431cf856198ffa4fd4e.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_136a87aba5d5a9e74d596f39c545a71e = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_8ac9573c35a3aa0be6b347a5539b467c = $(`&lt;div id=&quot;html_8ac9573c35a3aa0be6b347a5539b467c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 24&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 7.0 sqm&lt;br&gt;Intersecting area: 6.8 sqm&lt;/div&gt;`)[0];\n",
" popup_136a87aba5d5a9e74d596f39c545a71e.setContent(html_8ac9573c35a3aa0be6b347a5539b467c);\n",
" \n",
" \n",
"\n",
" geo_json_447b754dd32fd431cf856198ffa4fd4e.bindPopup(popup_136a87aba5d5a9e74d596f39c545a71e)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_447b754dd32fd431cf856198ffa4fd4e.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_ff147b85392d3550c3a3c6c12db528fe_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ff147b85392d3550c3a3c6c12db528fe_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ff147b85392d3550c3a3c6c12db528fe = L.geoJson(null, {\n",
" onEachFeature: geo_json_ff147b85392d3550c3a3c6c12db528fe_onEachFeature,\n",
" \n",
" style: geo_json_ff147b85392d3550c3a3c6c12db528fe_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ff147b85392d3550c3a3c6c12db528fe_add (data) {\n",
" geo_json_ff147b85392d3550c3a3c6c12db528fe\n",
" .addData(data);\n",
" }\n",
" geo_json_ff147b85392d3550c3a3c6c12db528fe_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.476606234340188, 53.78705125490278], [-2.476655178605512, 53.7870407994821], [-2.4766662409598306, 53.78706387458597], [-2.4766233890230187, 53.787071778339985], [-2.476606234340188, 53.78705125490278]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ff147b85392d3550c3a3c6c12db528fe.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_5605d531e3ed699911fe8aa34f56c08f = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_c9522a52288328cadd364fc45ab6b42c = $(`&lt;div id=&quot;html_c9522a52288328cadd364fc45ab6b42c&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 25&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 8.0 sqm&lt;br&gt;Intersecting area: 8.3 sqm&lt;/div&gt;`)[0];\n",
" popup_5605d531e3ed699911fe8aa34f56c08f.setContent(html_c9522a52288328cadd364fc45ab6b42c);\n",
" \n",
" \n",
"\n",
" geo_json_ff147b85392d3550c3a3c6c12db528fe.bindPopup(popup_5605d531e3ed699911fe8aa34f56c08f)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ff147b85392d3550c3a3c6c12db528fe.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a = L.geoJson(null, {\n",
" onEachFeature: geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a_onEachFeature,\n",
" \n",
" style: geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a_add (data) {\n",
" geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a\n",
" .addData(data);\n",
" }\n",
" geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477728851234238, 53.78712855791702], [-2.477759788827249, 53.78709960537517], [-2.4777799387493618, 53.7870991700198], [-2.477797100231794, 53.78715615425079], [-2.4777467047916613, 53.78716564790873], [-2.477728851234238, 53.78712855791702]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_ce8fe0e04d41f0e012fde49a65497f10 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_10a7e992f6b8da27e0a0f94b56733c68 = $(`&lt;div id=&quot;html_10a7e992f6b8da27e0a0f94b56733c68&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 26&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 22.0 sqm&lt;br&gt;Intersecting area: 22.1 sqm&lt;/div&gt;`)[0];\n",
" popup_ce8fe0e04d41f0e012fde49a65497f10.setContent(html_10a7e992f6b8da27e0a0f94b56733c68);\n",
" \n",
" \n",
"\n",
" geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a.bindPopup(popup_ce8fe0e04d41f0e012fde49a65497f10)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_3d5ecbaa6fd69ea521c7f69d085aba5a.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_7bfeb69e214d5193e57ff3257131fcb2_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_7bfeb69e214d5193e57ff3257131fcb2_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_7bfeb69e214d5193e57ff3257131fcb2 = L.geoJson(null, {\n",
" onEachFeature: geo_json_7bfeb69e214d5193e57ff3257131fcb2_onEachFeature,\n",
" \n",
" style: geo_json_7bfeb69e214d5193e57ff3257131fcb2_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_7bfeb69e214d5193e57ff3257131fcb2_add (data) {\n",
" geo_json_7bfeb69e214d5193e57ff3257131fcb2\n",
" .addData(data);\n",
" }\n",
" geo_json_7bfeb69e214d5193e57ff3257131fcb2_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477049333026739, 53.78717790003217], [-2.4770459750636133, 53.78715819178473], [-2.4770640448570838, 53.787129073129755], [-2.4771142362162126, 53.787139028949284], [-2.477097002445538, 53.78717801407576], [-2.477049333026739, 53.78717790003217]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_7bfeb69e214d5193e57ff3257131fcb2.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_4159fa1c3cc1cb0f2a295b381903bb18 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_2ddfa4734e3baa2163c968454da462fc = $(`&lt;div id=&quot;html_2ddfa4734e3baa2163c968454da462fc&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 27&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 18.0 sqm&lt;br&gt;Intersecting area: 18.0 sqm&lt;/div&gt;`)[0];\n",
" popup_4159fa1c3cc1cb0f2a295b381903bb18.setContent(html_2ddfa4734e3baa2163c968454da462fc);\n",
" \n",
" \n",
"\n",
" geo_json_7bfeb69e214d5193e57ff3257131fcb2.bindPopup(popup_4159fa1c3cc1cb0f2a295b381903bb18)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_7bfeb69e214d5193e57ff3257131fcb2.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_d5364dfe013880be8aa29fd47ff56419_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_d5364dfe013880be8aa29fd47ff56419_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_d5364dfe013880be8aa29fd47ff56419 = L.geoJson(null, {\n",
" onEachFeature: geo_json_d5364dfe013880be8aa29fd47ff56419_onEachFeature,\n",
" \n",
" style: geo_json_d5364dfe013880be8aa29fd47ff56419_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_d5364dfe013880be8aa29fd47ff56419_add (data) {\n",
" geo_json_d5364dfe013880be8aa29fd47ff56419\n",
" .addData(data);\n",
" }\n",
" geo_json_d5364dfe013880be8aa29fd47ff56419_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477584644967408, 53.7873557658077], [-2.477549010487404, 53.78734433566537], [-2.4775486630159262, 53.78729999622736], [-2.4775678816485844, 53.78729707132908], [-2.4776182137703535, 53.787308966899865], [-2.4776180013424107, 53.787336486509], [-2.477584644967408, 53.7873557658077]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_d5364dfe013880be8aa29fd47ff56419.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_e9c46f08e7a38ee278a733ac1ed68e4a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_aac1982805c366022c8f7fa1b21758d8 = $(`&lt;div id=&quot;html_aac1982805c366022c8f7fa1b21758d8&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 28&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 24.0 sqm&lt;br&gt;Intersecting area: 23.5 sqm&lt;/div&gt;`)[0];\n",
" popup_e9c46f08e7a38ee278a733ac1ed68e4a.setContent(html_aac1982805c366022c8f7fa1b21758d8);\n",
" \n",
" \n",
"\n",
" geo_json_d5364dfe013880be8aa29fd47ff56419.bindPopup(popup_e9c46f08e7a38ee278a733ac1ed68e4a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_d5364dfe013880be8aa29fd47ff56419.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_6f510199c13b8772614138c91f989f7d_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_6f510199c13b8772614138c91f989f7d_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_6f510199c13b8772614138c91f989f7d = L.geoJson(null, {\n",
" onEachFeature: geo_json_6f510199c13b8772614138c91f989f7d_onEachFeature,\n",
" \n",
" style: geo_json_6f510199c13b8772614138c91f989f7d_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_6f510199c13b8772614138c91f989f7d_add (data) {\n",
" geo_json_6f510199c13b8772614138c91f989f7d\n",
" .addData(data);\n",
" }\n",
" geo_json_6f510199c13b8772614138c91f989f7d_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4774485131511716, 53.78764373751764], [-2.477445545118044, 53.787596913431734], [-2.4774490184556583, 53.787585606993886], [-2.4774834173291853, 53.78758605777203], [-2.4775281707097627, 53.78764354509599], [-2.4774960478260084, 53.78765305302433], [-2.4774485131511716, 53.78764373751764]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_6f510199c13b8772614138c91f989f7d.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_9d01bb8ea8ed731d028638f9742fc23a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_fe1f2ffd079e0f96f9ca1ebdd07b3da2 = $(`&lt;div id=&quot;html_fe1f2ffd079e0f96f9ca1ebdd07b3da2&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 29&lt;/b&gt;&lt;br&gt;Type: Lone Tree&lt;br&gt;Full TOW area: 28.0 sqm&lt;br&gt;Intersecting area: 27.6 sqm&lt;/div&gt;`)[0];\n",
" popup_9d01bb8ea8ed731d028638f9742fc23a.setContent(html_fe1f2ffd079e0f96f9ca1ebdd07b3da2);\n",
" \n",
" \n",
"\n",
" geo_json_6f510199c13b8772614138c91f989f7d.bindPopup(popup_9d01bb8ea8ed731d028638f9742fc23a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_6f510199c13b8772614138c91f989f7d.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_39fc8b2efeb3b063a01b8c39637ce030_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_39fc8b2efeb3b063a01b8c39637ce030_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_39fc8b2efeb3b063a01b8c39637ce030 = L.geoJson(null, {\n",
" onEachFeature: geo_json_39fc8b2efeb3b063a01b8c39637ce030_onEachFeature,\n",
" \n",
" style: geo_json_39fc8b2efeb3b063a01b8c39637ce030_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_39fc8b2efeb3b063a01b8c39637ce030_add (data) {\n",
" geo_json_39fc8b2efeb3b063a01b8c39637ce030\n",
" .addData(data);\n",
" }\n",
" geo_json_39fc8b2efeb3b063a01b8c39637ce030_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4769991218048797, 53.78625920585605], [-2.4769642616456458, 53.78627084032848], [-2.476944266894671, 53.786263085922705], [-2.476975768677274, 53.78625425818033], [-2.476998955796753, 53.78624926804863], [-2.4769991218048797, 53.78625920585605]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_39fc8b2efeb3b063a01b8c39637ce030.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_a273c1dbb86eecd8e8f56b5e25658409 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_f3ab5f46d665b55595fbcc9e7f7af003 = $(`&lt;div id=&quot;html_f3ab5f46d665b55595fbcc9e7f7af003&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 30&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 350.0 sqm&lt;br&gt;Intersecting area: 4.0 sqm&lt;/div&gt;`)[0];\n",
" popup_a273c1dbb86eecd8e8f56b5e25658409.setContent(html_f3ab5f46d665b55595fbcc9e7f7af003);\n",
" \n",
" \n",
"\n",
" geo_json_39fc8b2efeb3b063a01b8c39637ce030.bindPopup(popup_a273c1dbb86eecd8e8f56b5e25658409)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_39fc8b2efeb3b063a01b8c39637ce030.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_e059e683289a0f58217c449891f307f7_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e059e683289a0f58217c449891f307f7_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e059e683289a0f58217c449891f307f7 = L.geoJson(null, {\n",
" onEachFeature: geo_json_e059e683289a0f58217c449891f307f7_onEachFeature,\n",
" \n",
" style: geo_json_e059e683289a0f58217c449891f307f7_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e059e683289a0f58217c449891f307f7_add (data) {\n",
" geo_json_e059e683289a0f58217c449891f307f7\n",
" .addData(data);\n",
" }\n",
" geo_json_e059e683289a0f58217c449891f307f7_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477749968907825, 53.78623772311278], [-2.477756743084307, 53.78622841010828], [-2.477778337792848, 53.786231226350296], [-2.477828443558969, 53.78624080079667], [-2.4778141619456044, 53.78624951571052], [-2.477749968907825, 53.78623772311278]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e059e683289a0f58217c449891f307f7.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_0a917a9451da1a6892729c1712ff5c9c = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d6ac021ca33668fe2165d204ab5c282a = $(`&lt;div id=&quot;html_d6ac021ca33668fe2165d204ab5c282a&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 31&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 84.0 sqm&lt;br&gt;Intersecting area: 5.7 sqm&lt;/div&gt;`)[0];\n",
" popup_0a917a9451da1a6892729c1712ff5c9c.setContent(html_d6ac021ca33668fe2165d204ab5c282a);\n",
" \n",
" \n",
"\n",
" geo_json_e059e683289a0f58217c449891f307f7.bindPopup(popup_0a917a9451da1a6892729c1712ff5c9c)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e059e683289a0f58217c449891f307f7.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_908afd965e7ac5282cb2681501a62e66_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_908afd965e7ac5282cb2681501a62e66_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_908afd965e7ac5282cb2681501a62e66 = L.geoJson(null, {\n",
" onEachFeature: geo_json_908afd965e7ac5282cb2681501a62e66_onEachFeature,\n",
" \n",
" style: geo_json_908afd965e7ac5282cb2681501a62e66_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_908afd965e7ac5282cb2681501a62e66_add (data) {\n",
" geo_json_908afd965e7ac5282cb2681501a62e66\n",
" .addData(data);\n",
" }\n",
" geo_json_908afd965e7ac5282cb2681501a62e66_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-2.476447685178816, 53.78697414212243], [-2.476446395411865, 53.78697537861538], [-2.4764458268374008, 53.78697703827134], [-2.4764452239986583, 53.787009013913384], [-2.476412256290216, 53.787028193371356], [-2.4763555068212715, 53.78702852039805], [-2.47632993993165, 53.787002461620304], [-2.476299070103933, 53.78696242920132], [-2.4762855748128016, 53.78693912764358], [-2.4762846539870433, 53.78693300729296], [-2.4762843444934566, 53.78693208185494], [-2.4762837154006982, 53.78693121431155], [-2.4762825238677637, 53.786930270803765], [-2.4762809598781637, 53.786929542695404], [-2.47627978532783, 53.78692913125808], [-2.4762749606165544, 53.78692080069041], [-2.476257842665027, 53.78687797531511], [-2.4762478803926515, 53.78683436377988], [-2.476245280429608, 53.786792186811695], [-2.4762693511882157, 53.78677278034037], [-2.476308107708313, 53.786780395604545], [-2.4763372715052947, 53.78680592894317], [-2.476338310335377, 53.78680665734226], [-2.476339584282972, 53.786807239199625], [-2.4763414202200935, 53.786807722649], [-2.476397151016399, 53.78681741587031], [-2.47641323017871, 53.78684898905072], [-2.476414051359152, 53.78685006525334], [-2.4764150327202445, 53.786850810955016], [-2.4764172989999493, 53.786851767264075], [-2.4764199946701426, 53.78685217539546], [-2.476457193049696, 53.78685247422717], [-2.476490110949865, 53.78687255931615], [-2.476490857469635, 53.786944698157654], [-2.476447685178816, 53.78697414212243]]], [[[-2.4763998740833757, 53.787113488098214], [-2.476431838716794, 53.78714118179665], [-2.4764184290463187, 53.787180958754305], [-2.476418296432928, 53.78718211424768], [-2.4764185526784113, 53.787183028213775], [-2.476419514128536, 53.78718429350733], [-2.4764210815634136, 53.78718532449785], [-2.4764632899986725, 53.78720566028107], [-2.476443308084191, 53.78726175873204], [-2.47641493796672, 53.787260779615906], [-2.4764105816632034, 53.787250990500645], [-2.476409466732697, 53.78723829598988], [-2.476409092156564, 53.78723711914193], [-2.476408208733603, 53.78723604229098], [-2.476406875005356, 53.787235142491], [-2.4764055467702524, 53.78723459320828], [-2.4764029007125496, 53.78723373050907], [-2.476402356912384, 53.787232508526145], [-2.4763904171153324, 53.787187844914726], [-2.476386117533833, 53.787142696859654], [-2.476388448274646, 53.787111583514815], [-2.4763998740833757, 53.787113488098214]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_908afd965e7ac5282cb2681501a62e66.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_23ca77eb4e7d571f676441cbc0caccdf = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6bdb4843d390d159904e18442615ae89 = $(`&lt;div id=&quot;html_6bdb4843d390d159904e18442615ae89&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 32&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 548.0 sqm&lt;br&gt;Intersecting area: 339.3 sqm&lt;/div&gt;`)[0];\n",
" popup_23ca77eb4e7d571f676441cbc0caccdf.setContent(html_6bdb4843d390d159904e18442615ae89);\n",
" \n",
" \n",
"\n",
" geo_json_908afd965e7ac5282cb2681501a62e66.bindPopup(popup_23ca77eb4e7d571f676441cbc0caccdf)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_908afd965e7ac5282cb2681501a62e66.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_b719f74c39ca69ea5060ddeb5590cc67_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_b719f74c39ca69ea5060ddeb5590cc67_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_b719f74c39ca69ea5060ddeb5590cc67 = L.geoJson(null, {\n",
" onEachFeature: geo_json_b719f74c39ca69ea5060ddeb5590cc67_onEachFeature,\n",
" \n",
" style: geo_json_b719f74c39ca69ea5060ddeb5590cc67_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_b719f74c39ca69ea5060ddeb5590cc67_add (data) {\n",
" geo_json_b719f74c39ca69ea5060ddeb5590cc67\n",
" .addData(data);\n",
" }\n",
" geo_json_b719f74c39ca69ea5060ddeb5590cc67_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.47772496435728, 53.78787648198709], [-2.477692025587597, 53.787834784619825], [-2.4776909778201275, 53.78783380909927], [-2.4776895451897505, 53.787833024756914], [-2.477687451147768, 53.78783240663275], [-2.477685140123343, 53.787832194736964], [-2.477618326051011, 53.78783225338986], [-2.4775540074708418, 53.78780654766364], [-2.4775513558264213, 53.78780587963016], [-2.4775497108841438, 53.787805779226915], [-2.4775231987661415, 53.78780589115268], [-2.4775208511770277, 53.78780620070366], [-2.477518784590438, 53.78780692978195], [-2.477517667652152, 53.787807613731104], [-2.4775168192696593, 53.78780842244257], [-2.4774968151669383, 53.787832944283366], [-2.4774887698047765, 53.7878329612862], [-2.477483242722922, 53.78783094754171], [-2.477477200311539, 53.78783017728882], [-2.4774065265326706, 53.78781677804101], [-2.4773716506902965, 53.78780785883102], [-2.477356551796229, 53.787749603925604], [-2.477402803523888, 53.78772092843646], [-2.477453459151252, 53.78772037701635], [-2.4774855806697658, 53.78774467681336], [-2.4774867201405377, 53.78774530862717], [-2.4774880521718226, 53.78774578867501], [-2.4774895218877657, 53.78774609650484], [-2.4774910669227137, 53.78774622067764], [-2.477493756838475, 53.787745982562726], [-2.477581358932824, 53.787728296442246], [-2.47758278362447, 53.78772784765615], [-2.477603516816593, 53.78771954275445], [-2.4776357840068575, 53.7877284732357], [-2.4776842830290846, 53.78777160871226], [-2.477685546555068, 53.78777247102385], [-2.4778048352282727, 53.78781837933364], [-2.4778063025649844, 53.78785666084108], [-2.4777751648839814, 53.78787593584127], [-2.47772496435728, 53.78787648198709]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_b719f74c39ca69ea5060ddeb5590cc67.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_d72862dc99ea4c31d417ebd540806231 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_aacab687b97f13011618f84ff7be5733 = $(`&lt;div id=&quot;html_aacab687b97f13011618f84ff7be5733&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 33&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 275.0 sqm&lt;br&gt;Intersecting area: 268.3 sqm&lt;/div&gt;`)[0];\n",
" popup_d72862dc99ea4c31d417ebd540806231.setContent(html_aacab687b97f13011618f84ff7be5733);\n",
" \n",
" \n",
"\n",
" geo_json_b719f74c39ca69ea5060ddeb5590cc67.bindPopup(popup_d72862dc99ea4c31d417ebd540806231)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_b719f74c39ca69ea5060ddeb5590cc67.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_e936b19b5b423483871761bf2252083f_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_e936b19b5b423483871761bf2252083f_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_e936b19b5b423483871761bf2252083f = L.geoJson(null, {\n",
" onEachFeature: geo_json_e936b19b5b423483871761bf2252083f_onEachFeature,\n",
" \n",
" style: geo_json_e936b19b5b423483871761bf2252083f_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_e936b19b5b423483871761bf2252083f_add (data) {\n",
" geo_json_e936b19b5b423483871761bf2252083f\n",
" .addData(data);\n",
" }\n",
" geo_json_e936b19b5b423483871761bf2252083f_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4780147751263835, 53.78790647550494], [-2.478107849804354, 53.78791540150768], [-2.478111768082805, 53.78792239043015], [-2.4779521119691705, 53.78792239043108], [-2.4780147751263835, 53.78790647550494]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_e936b19b5b423483871761bf2252083f.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_10088aafdd2023d0c5920eb874b77449 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_828716613e3207178296b2f7e3c0368b = $(`&lt;div id=&quot;html_828716613e3207178296b2f7e3c0368b&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 34&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 798.0 sqm&lt;br&gt;Intersecting area: 11.6 sqm&lt;/div&gt;`)[0];\n",
" popup_10088aafdd2023d0c5920eb874b77449.setContent(html_828716613e3207178296b2f7e3c0368b);\n",
" \n",
" \n",
"\n",
" geo_json_e936b19b5b423483871761bf2252083f.bindPopup(popup_10088aafdd2023d0c5920eb874b77449)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_e936b19b5b423483871761bf2252083f.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_5987f6d2e1c7ad1a6b66837039c03c04_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_5987f6d2e1c7ad1a6b66837039c03c04_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_5987f6d2e1c7ad1a6b66837039c03c04 = L.geoJson(null, {\n",
" onEachFeature: geo_json_5987f6d2e1c7ad1a6b66837039c03c04_onEachFeature,\n",
" \n",
" style: geo_json_5987f6d2e1c7ad1a6b66837039c03c04_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_5987f6d2e1c7ad1a6b66837039c03c04_add (data) {\n",
" geo_json_5987f6d2e1c7ad1a6b66837039c03c04\n",
" .addData(data);\n",
" }\n",
" geo_json_5987f6d2e1c7ad1a6b66837039c03c04_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477989608036734, 53.78639307280136], [-2.4779884029526777, 53.78639400966718], [-2.477987648880123, 53.786395100233264], [-2.4779874011122014, 53.7863962687711], [-2.477988599866106, 53.78651595627402], [-2.4779315607076513, 53.78653655609701], [-2.4779300570924434, 53.78653726765866], [-2.4779289063766905, 53.786538180940624], [-2.4779280188696546, 53.78653968368944], [-2.4779137597457503, 53.786592712618436], [-2.47791396721418, 53.786603750034], [-2.477914390381131, 53.786604658839885], [-2.4779151238718273, 53.78660549450043], [-2.4779170512235247, 53.786606675935225], [-2.4779195664721243, 53.786607367875234], [-2.47792233313603, 53.78660747907935], [-2.4779572325518013, 53.786603966687096], [-2.4780050861241194, 53.78663260685947], [-2.4780047829409466, 53.786660932162064], [-2.477963125359509, 53.78668024378146], [-2.4779613946456522, 53.78668153956967], [-2.477960571742144, 53.786683118460495], [-2.4779605582448676, 53.786684066757324], [-2.477975938352718, 53.78677765747693], [-2.477957306786247, 53.786788406004106], [-2.4778748258302334, 53.78678883017811], [-2.477872104971511, 53.78678914392453], [-2.477870695347804, 53.786789580075165], [-2.4778043410916037, 53.786815654752616], [-2.4777553903230305, 53.78679598087418], [-2.4777391621978624, 53.786705589667314], [-2.4777854772465813, 53.786667787284365], [-2.4778256161661467, 53.78665813856377], [-2.477827303607797, 53.78665757457361], [-2.4778289286219115, 53.78665659378972], [-2.4778299771290238, 53.78665536723531], [-2.477857782174774, 53.78660483871472], [-2.477858145393347, 53.78660367870431], [-2.477857986321469, 53.7866025028015], [-2.4778573164883158, 53.78660139185133], [-2.4778564423660767, 53.78660060168822], [-2.477855308624876, 53.78659993749687], [-2.4778539641448454, 53.78659942784041], [-2.4777852388221273, 53.78658165829299], [-2.4777900681126956, 53.78654985633981], [-2.477789887992152, 53.786548698495636], [-2.4777890218039804, 53.786547404070845], [-2.47778808896261, 53.78654665548685], [-2.4777865884597823, 53.78654590557433], [-2.47769334528788, 53.78651039689091], [-2.4776912454377853, 53.786491099791284], [-2.477727132956389, 53.786487863954534], [-2.4777456536098943, 53.786503950676114], [-2.4777469938959213, 53.786504759652445], [-2.477748286536775, 53.78650524884185], [-2.477836081343183, 53.786522238621934], [-2.4778384067774772, 53.78652238933685], [-2.4778403290388025, 53.78652218842845], [-2.477842099318719, 53.786521703207335], [-2.4778436041787613, 53.786520967375374], [-2.477844547439226, 53.78652022929092], [-2.47790194066483, 53.78646415848978], [-2.477902926202583, 53.78646260052143], [-2.4779030067572334, 53.78646140928413], [-2.4778870952464005, 53.78636096996189], [-2.4778863740664163, 53.78635961384344], [-2.4778849752190104, 53.78635845995883], [-2.4778830366001046, 53.786357621911655], [-2.477880753442766, 53.78635718431037], [-2.477737404819612, 53.78634855291794], [-2.477690044941418, 53.78632097305849], [-2.477688920478222, 53.786301761053316], [-2.477722835862979, 53.78628086433766], [-2.4778142092142597, 53.78628037515252], [-2.477877611542952, 53.78631365684332], [-2.477879660794416, 53.7863143470464], [-2.477881573194214, 53.78631461445655], [-2.4778839263938606, 53.78631453856156], [-2.47788612756579, 53.78631403993415], [-2.47788740387071, 53.78631349376579], [-2.477888686977489, 53.786312611414395], [-2.477915094204387, 53.78628880907424], [-2.477915829806032, 53.786287962163925], [-2.4779162473485714, 53.78628704191821], [-2.4779161475551077, 53.78625974497778], [-2.4779895477338343, 53.78627609647889], [-2.4780006084887147, 53.786294682397184], [-2.4780017595706147, 53.7862959370345], [-2.478002875373696, 53.78629662556677], [-2.4780042094906762, 53.78629715952937], [-2.478006890935554, 53.78629765306442], [-2.4780617450958617, 53.786299687581945], [-2.4780777298922603, 53.78636263556339], [-2.4779911828989816, 53.78639235376314], [-2.477989608036734, 53.78639307280136]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_5987f6d2e1c7ad1a6b66837039c03c04.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_686ef7912ada942fe159e999117cda63 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_d3d9eb2764bccd4cc5ba3c9f481bccad = $(`&lt;div id=&quot;html_d3d9eb2764bccd4cc5ba3c9f481bccad&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 35&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 714.0 sqm&lt;br&gt;Intersecting area: 692.5 sqm&lt;/div&gt;`)[0];\n",
" popup_686ef7912ada942fe159e999117cda63.setContent(html_d3d9eb2764bccd4cc5ba3c9f481bccad);\n",
" \n",
" \n",
"\n",
" geo_json_5987f6d2e1c7ad1a6b66837039c03c04.bindPopup(popup_686ef7912ada942fe159e999117cda63)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_5987f6d2e1c7ad1a6b66837039c03c04.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_ab78caa6bd957c97bdd78554a05e1cfc_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ab78caa6bd957c97bdd78554a05e1cfc_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ab78caa6bd957c97bdd78554a05e1cfc = L.geoJson(null, {\n",
" onEachFeature: geo_json_ab78caa6bd957c97bdd78554a05e1cfc_onEachFeature,\n",
" \n",
" style: geo_json_ab78caa6bd957c97bdd78554a05e1cfc_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_ab78caa6bd957c97bdd78554a05e1cfc_add (data) {\n",
" geo_json_ab78caa6bd957c97bdd78554a05e1cfc\n",
" .addData(data);\n",
" }\n",
" geo_json_ab78caa6bd957c97bdd78554a05e1cfc_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4768468721294856, 53.786586103678715], [-2.4768271666109336, 53.78656562097861], [-2.4768471587626912, 53.78654487967157], [-2.476982713531255, 53.78654436992822], [-2.47700208950871, 53.78655587034418], [-2.4769820192380703, 53.78658563690388], [-2.4768468721294856, 53.786586103678715]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_ab78caa6bd957c97bdd78554a05e1cfc.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_3a2eb59440cd6552ecf03af4b6edec68 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_4cf967f4cc995bed2b11102f3132bcbe = $(`&lt;div id=&quot;html_4cf967f4cc995bed2b11102f3132bcbe&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 36&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 47.0 sqm&lt;br&gt;Intersecting area: 46.9 sqm&lt;/div&gt;`)[0];\n",
" popup_3a2eb59440cd6552ecf03af4b6edec68.setContent(html_4cf967f4cc995bed2b11102f3132bcbe);\n",
" \n",
" \n",
"\n",
" geo_json_ab78caa6bd957c97bdd78554a05e1cfc.bindPopup(popup_3a2eb59440cd6552ecf03af4b6edec68)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_ab78caa6bd957c97bdd78554a05e1cfc.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_904211e775f77774e97d72509c39a0de_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_904211e775f77774e97d72509c39a0de_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_904211e775f77774e97d72509c39a0de = L.geoJson(null, {\n",
" onEachFeature: geo_json_904211e775f77774e97d72509c39a0de_onEachFeature,\n",
" \n",
" style: geo_json_904211e775f77774e97d72509c39a0de_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_904211e775f77774e97d72509c39a0de_add (data) {\n",
" geo_json_904211e775f77774e97d72509c39a0de\n",
" .addData(data);\n",
" }\n",
" geo_json_904211e775f77774e97d72509c39a0de_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4781133645811626, 53.787397901556325], [-2.4781111308101216, 53.7873840652511], [-2.4781104127499667, 53.78738271900488], [-2.4781090260573144, 53.78738156957037], [-2.478106746248473, 53.78738063042627], [-2.478065555127334, 53.787369620771045], [-2.4780660068800704, 53.78735089053987], [-2.478084956350774, 53.7873488555506], [-2.4781325862907004, 53.787349751305364], [-2.4781348234162337, 53.78736361545915], [-2.478135687615615, 53.787365132795976], [-2.4781371069951312, 53.78736622007934], [-2.4781393678999226, 53.78736709818213], [-2.478179811708073, 53.78737725782506], [-2.4781790611312284, 53.787397333863744], [-2.4781133645811626, 53.787397901556325]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_904211e775f77774e97d72509c39a0de.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_cd6670b8e7695c977135903b7143ce88 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_e49aaf752746b0903b7e30f3eae78877 = $(`&lt;div id=&quot;html_e49aaf752746b0903b7e30f3eae78877&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 37&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 25.0 sqm&lt;br&gt;Intersecting area: 25.4 sqm&lt;/div&gt;`)[0];\n",
" popup_cd6670b8e7695c977135903b7143ce88.setContent(html_e49aaf752746b0903b7e30f3eae78877);\n",
" \n",
" \n",
"\n",
" geo_json_904211e775f77774e97d72509c39a0de.bindPopup(popup_cd6670b8e7695c977135903b7143ce88)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_904211e775f77774e97d72509c39a0de.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_cab2369f9be13625d7a40803bea190c1_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_cab2369f9be13625d7a40803bea190c1_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_cab2369f9be13625d7a40803bea190c1 = L.geoJson(null, {\n",
" onEachFeature: geo_json_cab2369f9be13625d7a40803bea190c1_onEachFeature,\n",
" \n",
" style: geo_json_cab2369f9be13625d7a40803bea190c1_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_cab2369f9be13625d7a40803bea190c1_add (data) {\n",
" geo_json_cab2369f9be13625d7a40803bea190c1\n",
" .addData(data);\n",
" }\n",
" geo_json_cab2369f9be13625d7a40803bea190c1_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.477379572182077, 53.78755513724962], [-2.4773789777319584, 53.787556253238016], [-2.477378865410919, 53.78755718844496], [-2.4773791881607057, 53.787558343025644], [-2.4773926112461053, 53.787580348066605], [-2.4773597148752633, 53.78759952929911], [-2.477295924692274, 53.78759063529726], [-2.477231689388413, 53.787555905947826], [-2.477172905775358, 53.78752729011224], [-2.477189688900477, 53.78750582360454], [-2.4772683856508237, 53.787514071382965], [-2.477302018280808, 53.787530720861895], [-2.4773033767467867, 53.78753125743105], [-2.4773048955329395, 53.787531610004784], [-2.477306507660615, 53.78753176177505], [-2.477405384074421, 53.7875346845578], [-2.477380388750799, 53.787554334057354], [-2.477379572182077, 53.78755513724962]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_cab2369f9be13625d7a40803bea190c1.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_6621256b8e116383c1f992413ba64a7a = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_6b10f09a18206afa940085463d487c2e = $(`&lt;div id=&quot;html_6b10f09a18206afa940085463d487c2e&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 38&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 82.0 sqm&lt;br&gt;Intersecting area: 82.0 sqm&lt;/div&gt;`)[0];\n",
" popup_6621256b8e116383c1f992413ba64a7a.setContent(html_6b10f09a18206afa940085463d487c2e);\n",
" \n",
" \n",
"\n",
" geo_json_cab2369f9be13625d7a40803bea190c1.bindPopup(popup_6621256b8e116383c1f992413ba64a7a)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_cab2369f9be13625d7a40803bea190c1.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" function geo_json_0929167242509c64e234a1c21b133575_styler(feature) {\n",
" switch(feature.id) {\n",
" default:\n",
" return {&quot;color&quot;: &quot;#14532d&quot;, &quot;fillColor&quot;: &quot;#16a34a&quot;, &quot;fillOpacity&quot;: 0.58, &quot;weight&quot;: 2};\n",
" }\n",
" }\n",
"\n",
" function geo_json_0929167242509c64e234a1c21b133575_onEachFeature(feature, layer) {\n",
"\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_0929167242509c64e234a1c21b133575 = L.geoJson(null, {\n",
" onEachFeature: geo_json_0929167242509c64e234a1c21b133575_onEachFeature,\n",
" \n",
" style: geo_json_0929167242509c64e234a1c21b133575_styler,\n",
" ...{\n",
"}\n",
" });\n",
"\n",
" function geo_json_0929167242509c64e234a1c21b133575_add (data) {\n",
" geo_json_0929167242509c64e234a1c21b133575\n",
" .addData(data);\n",
" }\n",
" geo_json_0929167242509c64e234a1c21b133575_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-2.4780182633689893, 53.78774235750833], [-2.478017905835425, 53.78774375118622], [-2.478018289207825, 53.78777745759592], [-2.4780184652749195, 53.78777839165325], [-2.478018967193985, 53.78777928396116], [-2.478019770241671, 53.787780095077075], [-2.4780211443752567, 53.78778093986921], [-2.478063784598442, 53.7878010855146], [-2.4780491198375776, 53.78786464378989], [-2.4779365290078457, 53.78788440996995], [-2.4779042581396817, 53.78786489433588], [-2.4779180700026124, 53.78779852442215], [-2.4779181004499033, 53.78779759763286], [-2.4779175463047642, 53.78779625073198], [-2.4779165710938145, 53.78779524885755], [-2.4778880002348433, 53.7877752870391], [-2.477888116213223, 53.78773823328027], [-2.4779741064076193, 53.78772697168], [-2.4779766974578337, 53.78772631510593], [-2.4779787043522368, 53.78772514314441], [-2.4780714043891923, 53.78764592921086], [-2.4781059623032435, 53.78764647895058], [-2.478115469416158, 53.787670049074684], [-2.478019571969437, 53.787740910604285], [-2.4780182633689893, 53.78774235750833]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
"\n",
" \n",
" \n",
" geo_json_0929167242509c64e234a1c21b133575.bindTooltip(\n",
" `&lt;div&gt;\n",
" counted intersection area\n",
" &lt;/div&gt;`,\n",
" {\n",
" &quot;sticky&quot;: true,\n",
"}\n",
" );\n",
" \n",
" \n",
" var popup_437396f43d4e278eb7caf1d6d21216f4 = L.popup({\n",
" &quot;maxWidth&quot;: 300,\n",
"});\n",
"\n",
" \n",
" \n",
" var html_5a82d6caaabb91f2545d2d00fc425595 = $(`&lt;div id=&quot;html_5a82d6caaabb91f2545d2d00fc425595&quot; style=&quot;width: 100.0%; height: 100.0%;&quot;&gt;&lt;b&gt;TOW polygon 39&lt;/b&gt;&lt;br&gt;Type: Group of Trees&lt;br&gt;Full TOW area: 184.0 sqm&lt;br&gt;Intersecting area: 184.2 sqm&lt;/div&gt;`)[0];\n",
" popup_437396f43d4e278eb7caf1d6d21216f4.setContent(html_5a82d6caaabb91f2545d2d00fc425595);\n",
" \n",
" \n",
"\n",
" geo_json_0929167242509c64e234a1c21b133575.bindPopup(popup_437396f43d4e278eb7caf1d6d21216f4)\n",
" ;\n",
"\n",
" \n",
" \n",
" \n",
" geo_json_0929167242509c64e234a1c21b133575.addTo(feature_group_c094e6972de2ee37e3a5124bae5be648);\n",
" \n",
" \n",
" feature_group_c094e6972de2ee37e3a5124bae5be648.addTo(map_76253cc6ae48304226a3719f9ccd084b);\n",
" \n",
" \n",
" var layer_control_09547046c5e8e5494c21292082d415e4_layers = {\n",
" base_layers : {\n",
" &quot;cartodbpositron&quot; : tile_layer_02206ace0bf1204210266c89aff8033e,\n",
" },\n",
" overlays : {\n",
" &quot;expanded postcode boundary (+50m)&quot; : geo_json_f9c881a1fb02189a51300b8582d73270,\n",
" &quot;original postcode boundary&quot; : geo_json_7e29f0307fcca316b419bf2aeccc93dd,\n",
" &quot;foliage boundary&quot; : feature_group_bfd5f8445ce8ed1c69d883fd2bab31c3,\n",
" &quot;intersection area&quot; : feature_group_c094e6972de2ee37e3a5124bae5be648,\n",
" },\n",
" };\n",
" let layer_control_09547046c5e8e5494c21292082d415e4 = L.control.layers(\n",
" layer_control_09547046c5e8e5494c21292082d415e4_layers.base_layers,\n",
" layer_control_09547046c5e8e5494c21292082d415e4_layers.overlays,\n",
" {\n",
" &quot;position&quot;: &quot;topright&quot;,\n",
" &quot;collapsed&quot;: true,\n",
" &quot;autoZIndex&quot;: true,\n",
"}\n",
" ).addTo(map_76253cc6ae48304226a3719f9ccd084b);\n",
"\n",
" \n",
"&lt;/script&gt;\n",
"&lt;/html&gt;\" title=\"BB1 9JJ polygon intersection map\"></iframe>\n",
" </section>\n",
" </div></main>\n",
" </body>\n",
" </html>\n",
" "
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"with redirect_stdout(io.StringIO()):\n",
" dataset_path = _tow_dataset_path(TOW_ZIP, EXTRACT_DIR, force_extract=False, use_vsizip=False)\n",
" postcode_points = _postcode_points(ARCGIS, max_postcodes=None)\n",
"layer_names = _layers(dataset_path, selected_layers=None)\n",
"\n",
"existing_districts = {path.stem for path in POSTCODE_BOUNDARY_UNITS.glob(\"*.geojson\")}\n",
"candidates = (\n",
" pl.scan_parquet(POSTCODE_TREE_DENSITY)\n",
" .filter(pl.col(count_col) > 0)\n",
" .with_columns(pl.col(\"postcode\").str.split(\" \").list.first().alias(\"district\"))\n",
" .filter(pl.col(\"district\").is_in(existing_districts))\n",
" .select(\"postcode\")\n",
" .collect()\n",
" .sample(n=CANDIDATE_SAMPLE_SIZE, seed=RANDOM_SEED, shuffle=True)\n",
" .join(postcode_points, on=\"postcode\", how=\"inner\")\n",
")\n",
"\n",
"cards = []\n",
"summaries = []\n",
"for row in candidates.to_dicts():\n",
" card, summary = build_postcode_card(dataset_path, layer_names, row[\"postcode\"])\n",
" if summary[\"intersecting_area_sqm\"] <= 0:\n",
" continue\n",
" cards.append(card)\n",
" summaries.append(summary)\n",
" if len(cards) == N_POSTCODES:\n",
" break\n",
"\n",
"if len(cards) < N_POSTCODES:\n",
" raise RuntimeError(f\"Only found {len(cards)} postcodes with intersecting TOW area\")\n",
"\n",
"html = side_by_side_document(cards)\n",
"OUTPUT_HTML.write_text(html)\n",
"display(pl.DataFrame(summaries))\n",
"HTML(html)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.13"
}
},
"nbformat": 4,
"nbformat_minor": 5
}